X7ROOT File Manager
Current Path:
/opt/alt/python34/lib/python3.4/site-packages/pip/_vendor/requests
opt
/
alt
/
python34
/
lib
/
python3.4
/
site-packages
/
pip
/
_vendor
/
requests
/
ðŸ“
..
📄
__init__.py
(1.81 KB)
ðŸ“
__pycache__
📄
adapters.py
(14.27 KB)
📄
api.py
(4.24 KB)
📄
auth.py
(5.98 KB)
📄
cacert.pem
(301.21 KB)
📄
certs.py
(544 B)
📄
compat.py
(2.5 KB)
📄
cookies.py
(16.29 KB)
📄
exceptions.py
(1.83 KB)
📄
hooks.py
(820 B)
📄
models.py
(25.82 KB)
ðŸ“
packages
📄
sessions.py
(21.77 KB)
📄
status_codes.py
(3.06 KB)
📄
structures.py
(3.46 KB)
📄
utils.py
(19.5 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. """ import os.path def where(): """Return the preferred certificate bundle.""" # vendored bundle inside Requests return os.path.join(os.path.dirname(__file__), 'cacert.pem') if __name__ == '__main__': print(where())
Upload File
Create Folder