Update certifi 2020.11.08

This commit is contained in:
JonnyWong16 2020-11-21 15:05:58 -08:00
commit b5e6861032
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
4 changed files with 318 additions and 259 deletions

View file

@ -1,2 +1,12 @@
from certifi import where
print(where())
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())