summaryrefslogtreecommitdiff
path: root/game/python-extra/certifi
diff options
context:
space:
mode:
Diffstat (limited to 'game/python-extra/certifi')
-rw-r--r--game/python-extra/certifi/__init__.py3
-rw-r--r--game/python-extra/certifi/__init__.pyobin0 -> 259 bytes
-rw-r--r--game/python-extra/certifi/__main__.py2
-rw-r--r--game/python-extra/certifi/core.py15
-rw-r--r--game/python-extra/certifi/core.pyobin0 -> 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
new file mode 100644
index 0000000..5a45d46
--- /dev/null
+++ b/game/python-extra/certifi/__init__.pyo
Binary files differ
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
new file mode 100644
index 0000000..431fc50
--- /dev/null
+++ b/game/python-extra/certifi/core.pyo
Binary files differ