mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -08:00
501be2c479
Updates certifi to 2021.5.30 Updates chardet to 4.0.0 Updates idna to 2.10 Updates urllib3 to 1.26.13
13 lines
243 B
Python
13 lines
243 B
Python
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())
|