Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1#!/usr/bin/env python 

2# -*- coding: utf-8 -*- 

3 

4""" 

5requests.certs 

6~~~~~~~~~~~~~~ 

7 

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

9only one — the one from the certifi package. 

10 

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

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

13packaged CA bundle. 

14""" 

15from certifi import where 

16 

17if __name__ == '__main__': 

18 print(where())