mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 18:47:09 -07:00
Move common libs to libs/common
This commit is contained in:
parent
8dbb1a2451
commit
1f4bd41bcc
1612 changed files with 962 additions and 10 deletions
3
libs/common/certifi/__init__.py
Normal file
3
libs/common/certifi/__init__.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from .core import where
|
||||
|
||||
__version__ = "2018.11.29"
|
2
libs/common/certifi/__main__.py
Normal file
2
libs/common/certifi/__main__.py
Normal file
|
@ -0,0 +1,2 @@
|
|||
from certifi import where
|
||||
print(where())
|
4512
libs/common/certifi/cacert.pem
Normal file
4512
libs/common/certifi/cacert.pem
Normal file
File diff suppressed because it is too large
Load diff
20
libs/common/certifi/core.py
Normal file
20
libs/common/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