mirror of
https://github.com/bvanroll/cicdTest.git
synced 2025-08-29 20:12:43 +00:00
build test
This commit is contained in:
3
venv/lib/python3.7/site-packages/certifi/__init__.py
Normal file
3
venv/lib/python3.7/site-packages/certifi/__init__.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from .core import where
|
||||
|
||||
__version__ = "2019.11.28"
|
2
venv/lib/python3.7/site-packages/certifi/__main__.py
Normal file
2
venv/lib/python3.7/site-packages/certifi/__main__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
from certifi import where
|
||||
print(where())
|
4602
venv/lib/python3.7/site-packages/certifi/cacert.pem
Normal file
4602
venv/lib/python3.7/site-packages/certifi/cacert.pem
Normal file
File diff suppressed because it is too large
Load Diff
15
venv/lib/python3.7/site-packages/certifi/core.py
Normal file
15
venv/lib/python3.7/site-packages/certifi/core.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# -*- 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')
|
Reference in New Issue
Block a user