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