2015-02-13 01:26:44 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
"""
|
2016-08-31 10:23:38 +00:00
|
|
|
requests.certs
|
|
|
|
~~~~~~~~~~~~~~
|
2015-02-13 01:26:44 +00:00
|
|
|
|
2017-09-05 16:40:07 +00:00
|
|
|
This module returns the preferred default CA certificate bundle. There is
|
|
|
|
only one — the one from the certifi package.
|
2015-02-13 01:26:44 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
"""
|
2017-09-05 16:40:07 +00:00
|
|
|
from certifi import where
|
2015-02-13 01:26:44 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
print(where())
|