X7ROOT File Manager
Current Path:
/opt/alt/python313/lib/python3.13/site-packages/pip/_vendor/requests
opt
/
alt
/
python313
/
lib
/
python3.13
/
site-packages
/
pip
/
_vendor
/
requests
/
??
..
??
__init__.py
(5.05 KB)
??
__pycache__
??
__version__.py
(435 B)
??
_internal_utils.py
(1.46 KB)
??
adapters.py
(19.24 KB)
??
api.py
(6.3 KB)
??
auth.py
(9.95 KB)
??
certs.py
(575 B)
??
compat.py
(1.26 KB)
??
cookies.py
(18.13 KB)
??
exceptions.py
(3.73 KB)
??
help.py
(3.79 KB)
??
hooks.py
(733 B)
??
models.py
(34.46 KB)
??
packages.py
(695 B)
??
sessions.py
(29.66 KB)
??
status_codes.py
(4.14 KB)
??
structures.py
(2.84 KB)
??
utils.py
(32.68 KB)
Editing: certs.py
#!/usr/bin/env python """ requests.certs ~~~~~~~~~~~~~~ This module returns the preferred default CA certificate bundle. There is only one — the one from the certifi package. 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 if "_PIP_STANDALONE_CERT" not in os.environ: from pip._vendor.certifi import where else: def where(): return os.environ["_PIP_STANDALONE_CERT"] if __name__ == "__main__": print(where())
Upload File
Create Folder