OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot
/
4730
/
usr
/
lib
/
python3
/
dist-packages
/
pip
/
_vendor
/
requests
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/10/2025 09:51:14 PM
rwxr-xr-x
📄
__init__.py
5.05 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
__version__.py
435 bytes
10/18/2024 05:04:47 PM
rw-r--r--
📄
_internal_utils.py
1.46 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
adapters.py
19.24 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
api.py
6.3 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
auth.py
9.95 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
certs.py
575 bytes
10/18/2024 05:04:47 PM
rw-r--r--
📄
compat.py
1.26 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
cookies.py
18.13 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
exceptions.py
3.73 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
help.py
3.79 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
hooks.py
733 bytes
10/18/2024 05:04:47 PM
rw-r--r--
📄
models.py
34.46 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
packages.py
695 bytes
10/18/2024 05:04:47 PM
rw-r--r--
📄
sessions.py
29.66 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
status_codes.py
4.14 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
structures.py
2.84 KB
10/18/2024 05:04:47 PM
rw-r--r--
📄
utils.py
32.68 KB
10/18/2024 05:04:47 PM
rw-r--r--
Editing: certs.py
Close
#!/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())