added stuff

This commit is contained in:
Kalam :p
2020-06-27 18:11:11 +01:00
parent 08cb7bf8a6
commit 5b74ae641c
48 changed files with 9004 additions and 0 deletions

18
requests/certs.py Normal file
View File

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