Aggiornamento certifi (Fix Mediaset)

This commit is contained in:
Alhaziel01
2022-09-28 18:59:53 +02:00
parent f6a10e1eda
commit 9109d6ec55
6 changed files with 1758 additions and 7681 deletions
+12 -2
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())