/snap/core18/2999/usr/lib/python3/dist-packages/requests
NameSizeModeActions
__pycache__/-0755rm
adapters.py208360644editdlrm
api.py62370644editdlrm
auth.py97280644editdlrm
certs.py4530644editdlrm
compat.py15950644editdlrm
cookies.py182080644editdlrm
exceptions.py31030644editdlrm
help.py36160644editdlrm
hooks.py7670644editdlrm
models.py340030644editdlrm
packages.py5420644editdlrm
sessions.py285070644editdlrm
status_codes.py33230644editdlrm
structures.py30120644editdlrm
utils.py273810644editdlrm
_internal_utils.py10960644editdlrm
__init__.py35070644editdlrm
__version__.py4360644editdlrm
Edit: /snap/core18/2999/usr/lib/python3/dist-packages/requests/certs.py (453B)
#!/usr/bin/env python # -*- coding: utf-8 -*- """ 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())