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