openmedialibrary_platform/Shared/lib/python3.4/site-packages/requests/certs.py

19 lines
453 B
Python
Raw Normal View History

2013-10-11 17:28:32 +00:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
2019-01-13 08:01:53 +00:00
requests.certs
~~~~~~~~~~~~~~
2013-10-11 17:28:32 +00:00
2019-01-13 08:01:53 +00:00
This module returns the preferred default CA certificate bundle. There is
only one the one from the certifi package.
2013-10-11 17:28:32 +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.
"""
2019-01-13 08:01:53 +00:00
from certifi import where
2013-10-11 17:28:32 +00:00
if __name__ == '__main__':
print(where())