Mercurial > repos > jpayne > bioproject_to_srr_2
annotate requests/certs.py @ 10:ccec96a537b7
planemo upload for repository https://toolrepo.galaxytrakr.org/view/jpayne/bioproject_to_srr_2/556cac4fb538
author | jpayne |
---|---|
date | Mon, 06 May 2024 00:12:39 -0400 |
parents | 5eb2d5e3bf22 |
children |
rev | line source |
---|---|
jpayne@7 | 1 #!/usr/bin/env python |
jpayne@7 | 2 |
jpayne@7 | 3 """ |
jpayne@7 | 4 requests.certs |
jpayne@7 | 5 ~~~~~~~~~~~~~~ |
jpayne@7 | 6 |
jpayne@7 | 7 This module returns the preferred default CA certificate bundle. There is |
jpayne@7 | 8 only one — the one from the certifi package. |
jpayne@7 | 9 |
jpayne@7 | 10 If you are packaging Requests, e.g., for a Linux distribution or a managed |
jpayne@7 | 11 environment, you can change the definition of where() to return a separately |
jpayne@7 | 12 packaged CA bundle. |
jpayne@7 | 13 """ |
jpayne@7 | 14 from certifi import where |
jpayne@7 | 15 |
jpayne@7 | 16 if __name__ == "__main__": |
jpayne@7 | 17 print(where()) |