1
0
Fork 0
mirror of https://github.com/PiBrewing/craftbeerpi4.git synced 2025-01-17 01:46:10 +01:00
craftbeerpi4-pione/venv3/lib/python3.7/site-packages/certifi/__main__.py
2021-03-03 23:49:41 +01:00

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