/snap/core24/1587/usr/lib/python3/dist-packages/requests
NameSizeModeActions
__pycache__/-0755rm
adapters.py195530644editdlrm
api.py64490644editdlrm
auth.py101870644editdlrm
certs.py4290644editdlrm
compat.py13800644editdlrm
cookies.py185600644editdlrm
exceptions.py38110644editdlrm
help.py38060644editdlrm
hooks.py7330644editdlrm
models.py352230644editdlrm
packages.py7770644editdlrm
sessions.py303730644editdlrm
status_codes.py42350644editdlrm
structures.py29120644editdlrm
utils.py331770644editdlrm
_internal_utils.py14950644editdlrm
__init__.py48570644editdlrm
__version__.py4350644editdlrm
Edit: /snap/core24/1587/usr/lib/python3/dist-packages/requests/certs.py (429B)
#!/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. """ from certifi import where if __name__ == "__main__": print(where())