diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-09 13:32:01 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-09 13:32:01 -0300 |
commit | 63afe4145f410a844c647d4e3f1059f568175c1e (patch) | |
tree | 15da6a890c78d73370f44f9fd5d59badfbbe60e4 /game/python-extra/certifi | |
download | client-init.tar.gz client-init.tar.bz2 client-init.tar.xz client-init.zip |
Initial commit, forked from Spheresinit
Diffstat (limited to 'game/python-extra/certifi')
-rw-r--r-- | game/python-extra/certifi/__init__.py | 3 | ||||
-rw-r--r-- | game/python-extra/certifi/__init__.pyo | bin | 0 -> 259 bytes | |||
-rw-r--r-- | game/python-extra/certifi/__main__.py | 2 | ||||
-rw-r--r-- | game/python-extra/certifi/core.py | 15 | ||||
-rw-r--r-- | game/python-extra/certifi/core.pyo | bin | 0 -> 577 bytes |
5 files changed, 20 insertions, 0 deletions
diff --git a/game/python-extra/certifi/__init__.py b/game/python-extra/certifi/__init__.py new file mode 100644 index 0000000..8e358e4 --- /dev/null +++ b/game/python-extra/certifi/__init__.py @@ -0,0 +1,3 @@ +from .core import where + +__version__ = "2019.09.11" diff --git a/game/python-extra/certifi/__init__.pyo b/game/python-extra/certifi/__init__.pyo Binary files differnew file mode 100644 index 0000000..5a45d46 --- /dev/null +++ b/game/python-extra/certifi/__init__.pyo diff --git a/game/python-extra/certifi/__main__.py b/game/python-extra/certifi/__main__.py new file mode 100644 index 0000000..5f1da0d --- /dev/null +++ b/game/python-extra/certifi/__main__.py @@ -0,0 +1,2 @@ +from certifi import where +print(where()) diff --git a/game/python-extra/certifi/core.py b/game/python-extra/certifi/core.py new file mode 100644 index 0000000..7271acf --- /dev/null +++ b/game/python-extra/certifi/core.py @@ -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') diff --git a/game/python-extra/certifi/core.pyo b/game/python-extra/certifi/core.pyo Binary files differnew file mode 100644 index 0000000..431fc50 --- /dev/null +++ b/game/python-extra/certifi/core.pyo |