PATH:
usr
/
local
/
jetapps
/
var
/
lib
/
aws
/
lib
/
python2.7
/
site-packages
/
pip
/
_vendor
/
requests
#!/usr/bin/env python # -*- coding: utf-8 -*- """ requests.certs ~~~~~~~~~~~~~~ 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 try: from certifi import where except ImportError: 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())
[-] structures.pyc
[edit]
[-] utils.pyc
[edit]
[-] hooks.pyc
[edit]
[-] exceptions.py
[edit]
[-] status_codes.pyc
[edit]
[-] cookies.pyc
[edit]
[+]
..
[-] adapters.pyc
[edit]
[-] auth.pyc
[edit]
[-] exceptions.pyc
[edit]
[-] cacert.pem
[edit]
[+]
packages
[-] __init__.pyc
[edit]
[-] api.pyc
[edit]
[-] auth.py
[edit]
[-] certs.pyc
[edit]
[-] structures.py
[edit]
[-] hooks.py
[edit]
[-] models.py
[edit]
[-] sessions.py
[edit]
[-] utils.py
[edit]
[-] cookies.py
[edit]
[-] compat.pyc
[edit]
[-] sessions.pyc
[edit]
[-] compat.py
[edit]
[-] certs.py
[edit]
[-] __init__.py
[edit]
[-] api.py
[edit]
[-] models.pyc
[edit]
[-] adapters.py
[edit]
[-] status_codes.py
[edit]