fully working!

This commit is contained in:
Kalam :p
2020-06-28 12:44:20 +01:00
parent bb6da691a7
commit 174683d2b4
128 changed files with 15017 additions and 4411 deletions

12
certifi/__main__.py Normal file
View File

@@ -0,0 +1,12 @@
import argparse
from certifi import contents, where
parser = argparse.ArgumentParser()
parser.add_argument("-c", "--contents", action="store_true")
args = parser.parse_args()
if args.contents:
print(contents())
else:
print(where())