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

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

4 statements  

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())