Hackfut Security File Manager
Current Path:
/usr/lib/python2.6/site-packages/requests
usr
/
lib
/
python2.6
/
site-packages
/
requests
/
📁
..
📄
__init__.py
(1.82 KB)
📄
__init__.pyc
(2.46 KB)
📄
__init__.pyo
(2.46 KB)
📄
adapters.py
(16.42 KB)
📄
adapters.pyc
(15.43 KB)
📄
adapters.pyo
(15.43 KB)
📄
api.py
(5.16 KB)
📄
api.pyc
(5.89 KB)
📄
api.pyo
(5.89 KB)
📄
auth.py
(6.55 KB)
📄
auth.pyc
(7.41 KB)
📄
auth.pyo
(7.41 KB)
📄
certs.py
(649 B)
📄
certs.pyc
(901 B)
📄
certs.pyo
(901 B)
📄
compat.py
(1.51 KB)
📄
compat.pyc
(1.66 KB)
📄
compat.pyo
(1.66 KB)
📄
cookies.py
(16.4 KB)
📄
cookies.pyc
(19.93 KB)
📄
cookies.pyo
(19.93 KB)
📄
exceptions.py
(2.46 KB)
📄
exceptions.pyc
(5.16 KB)
📄
exceptions.pyo
(5.16 KB)
📄
hooks.py
(820 B)
📄
hooks.pyc
(1.04 KB)
📄
hooks.pyo
(1.04 KB)
📄
models.py
(27.5 KB)
📄
models.pyc
(24.57 KB)
📄
models.pyo
(24.57 KB)
📁
packages
📄
sessions.py
(23.9 KB)
📄
sessions.pyc
(19.59 KB)
📄
sessions.pyo
(19.59 KB)
📄
status_codes.py
(3.13 KB)
📄
status_codes.pyc
(4.37 KB)
📄
status_codes.pyo
(4.37 KB)
📄
structures.py
(2.91 KB)
📄
structures.pyc
(5.03 KB)
📄
structures.pyo
(5.03 KB)
📄
utils.py
(20.83 KB)
📄
utils.pyc
(20.19 KB)
📄
utils.pyo
(20.19 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