Got Http requests working.

This commit is contained in:
Karthik Pullela
2018-01-20 13:54:35 -08:00
parent 1080e968a4
commit f29c8aeb80
742 changed files with 93021 additions and 2 deletions
@@ -0,0 +1,18 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
requests.certs
~~~~~~~~~~~~~~
This module returns the preferred default CA certificate bundle. There is
only one — the one from the certifi package.
If you are packaging Requests, e.g., for a Linux distribution or a managed
environment, you can change the definition of where() to return a separately
packaged CA bundle.
"""
from certifi import where
if __name__ == '__main__':
print(where())