Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

certs.py 465B

123456789101112131415161718
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. """
  4. requests.certs
  5. ~~~~~~~~~~~~~~
  6. This module returns the preferred default CA certificate bundle. There is
  7. only one — the one from the certifi package.
  8. If you are packaging Requests, e.g., for a Linux distribution or a managed
  9. environment, you can change the definition of where() to return a separately
  10. packaged CA bundle.
  11. """
  12. from pip._vendor.certifi import where
  13. if __name__ == '__main__':
  14. print(where())