added forced package imports
This commit is contained in:
parent
0e2ffdbbb1
commit
ef9022c6eb
943 changed files with 125530 additions and 16 deletions
3
lib/certifi/__init__.py
Normal file
3
lib/certifi/__init__.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from .core import where
|
||||
|
||||
__version__ = "2018.11.29"
|
2
lib/certifi/__main__.py
Normal file
2
lib/certifi/__main__.py
Normal file
|
@ -0,0 +1,2 @@
|
|||
from certifi import where
|
||||
print(where())
|
4512
lib/certifi/cacert.pem
Normal file
4512
lib/certifi/cacert.pem
Normal file
File diff suppressed because it is too large
Load diff
20
lib/certifi/core.py
Normal file
20
lib/certifi/core.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
certifi.py
|
||||
~~~~~~~~~~
|
||||
|
||||
This module returns the installation location of cacert.pem.
|
||||
"""
|
||||
import os
|
||||
|
||||
|
||||
def where():
|
||||
f = os.path.dirname(__file__)
|
||||
|
||||
return os.path.join(f, 'cacert.pem')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
print(where())
|
Loading…
Add table
Add a link
Reference in a new issue