#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
certs.py
~~~~~~~~
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
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())
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| __pycache__ | Folder | 0755 |
|
|
| packages | Folder | 0755 |
|
|
| __init__.py | File | 1.81 KB | 0644 |
|
| adapters.py | File | 14.27 KB | 0644 |
|
| api.py | File | 4.24 KB | 0644 |
|
| auth.py | File | 5.98 KB | 0644 |
|
| cacert.pem | File | 301.21 KB | 0644 |
|
| certs.py | File | 544 B | 0644 |
|
| compat.py | File | 2.5 KB | 0644 |
|
| cookies.py | File | 16.29 KB | 0644 |
|
| exceptions.py | File | 1.83 KB | 0644 |
|
| hooks.py | File | 820 B | 0644 |
|
| models.py | File | 25.82 KB | 0644 |
|
| sessions.py | File | 21.77 KB | 0644 |
|
| status_codes.py | File | 3.06 KB | 0644 |
|
| structures.py | File | 3.46 KB | 0644 |
|
| utils.py | File | 19.5 KB | 0644 |
|