comparison requests/certs.py @ 7:5eb2d5e3bf22

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