nzbToMedia/libs/common/certifi/__main__.py
Labrys of Knossos 501be2c479 Update vendored requests to 2.25.1
Updates certifi to 2021.5.30
Updates chardet to 4.0.0
Updates idna to 2.10
Updates urllib3 to 1.26.13
2022-11-29 00:44:48 -05:00

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())