jpayne@7: #!/usr/bin/env python jpayne@7: jpayne@7: """ jpayne@7: requests.certs jpayne@7: ~~~~~~~~~~~~~~ jpayne@7: jpayne@7: This module returns the preferred default CA certificate bundle. There is jpayne@7: only one — the one from the certifi package. jpayne@7: jpayne@7: If you are packaging Requests, e.g., for a Linux distribution or a managed jpayne@7: environment, you can change the definition of where() to return a separately jpayne@7: packaged CA bundle. jpayne@7: """ jpayne@7: from certifi import where jpayne@7: jpayne@7: if __name__ == "__main__": jpayne@7: print(where())