Hackfut Security File Manager
Current Path:
/opt/alt/python27/lib/python2.7/site-packages/requests
opt
/
alt
/
python27
/
lib
/
python2.7
/
site-packages
/
requests
/
📁
..
📄
__init__.py
(2.16 KB)
📄
__init__.pyc
(2.8 KB)
📄
__init__.pyo
(2.8 KB)
📄
adapters.py
(18.24 KB)
📄
adapters.pyc
(16.8 KB)
📄
adapters.pyo
(16.8 KB)
📄
api.py
(5.66 KB)
📄
api.pyc
(6.48 KB)
📄
api.pyo
(6.48 KB)
📄
auth.py
(7.89 KB)
📄
auth.pyc
(8.86 KB)
📄
auth.pyo
(8.86 KB)
📄
certs.py
(649 B)
📄
certs.pyc
(923 B)
📄
certs.pyo
(923 B)
📄
compat.py
(1.51 KB)
📄
compat.pyc
(1.67 KB)
📄
compat.pyo
(1.67 KB)
📄
cookies.py
(17.15 KB)
📄
cookies.pyc
(21.2 KB)
📄
cookies.pyo
(21.2 KB)
📄
exceptions.py
(2.71 KB)
📄
exceptions.pyc
(5.98 KB)
📄
exceptions.pyo
(5.98 KB)
📄
hooks.py
(767 B)
📄
hooks.pyc
(1.21 KB)
📄
hooks.pyo
(1.21 KB)
📄
models.py
(28.84 KB)
📄
models.pyc
(25.79 KB)
📄
models.pyo
(25.79 KB)
📁
packages
📄
sessions.py
(24.31 KB)
📄
sessions.pyc
(20.07 KB)
📄
sessions.pyo
(20.07 KB)
📄
status_codes.py
(3.24 KB)
📄
status_codes.pyc
(4.52 KB)
📄
status_codes.pyo
(4.52 KB)
📄
structures.py
(2.95 KB)
📄
structures.pyc
(5.32 KB)
📄
structures.pyo
(5.32 KB)
📄
utils.py
(21.71 KB)
📄
utils.pyc
(21.16 KB)
📄
utils.pyo
(21.16 KB)
Editing: certs.py
#!/usr/bin/env python # -*- coding: utf-8 -*- """ certs.py ~~~~~~~~ This module returns the preferred default CA certificate bundle. If you are packaging Requests, e.g., for a Linux distribution or a managed environment, you can change the definition of where() to return a separately packaged CA bundle. We return "/etc/pki/tls/certs/ca-bundle.crt" provided by the ca-certificates package. """ try: from certifi import where except ImportError: def where(): """ Don't use the certs bundled with requests, use ca-certificates. """ return "/etc/pki/tls/certs/ca-bundle.crt" if __name__ == '__main__': print(where())
Upload File
Create Folder