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
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
1#!/usr/bin/env python
3"""
4requests.certs
5~~~~~~~~~~~~~~
7This module returns the preferred default CA certificate bundle. There is
8only one — the one from the certifi package.
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
16if __name__ == "__main__":
17 print(where())