Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/requests/certs.py: 75%

4 statements  

« prev     ^ index     » next       coverage.py v7.3.2, created at 2023-12-08 06:45 +0000

1#!/usr/bin/env python 

2 

3""" 

4requests.certs 

5~~~~~~~~~~~~~~ 

6 

7This module returns the preferred default CA certificate bundle. There is 

8only one — the one from the certifi package. 

9 

10If you are packaging Requests, e.g., for a Linux distribution or a managed 

11environment, you can change the definition of where() to return a separately 

12packaged CA bundle. 

13""" 

14from certifi import where 

15 

16if __name__ == "__main__": 

17 print(where())