This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
mochaserverpine64backup/lib/python3.6/site-packages/pip/_vendor/requests/certs.py

19 lines
465 B
Python
Raw Normal View History

2018-04-06 00:38:55 -05:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
requests.certs
~~~~~~~~~~~~~~
2018-04-06 00:58:02 -05:00
This module returns the preferred default CA certificate bundle. There is
only one the one from the certifi package.
2018-04-06 00:38:55 -05: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.
"""
2018-04-06 00:58:02 -05:00
from pip._vendor.certifi import where
2018-04-06 00:38:55 -05:00
if __name__ == '__main__':
print(where())