Files
CVExplorer/.venv/lib/python3.13/site-packages/certifi/__main__.py
T
Chest a5714116ac +full refactor
+feat: configuration, progress bar, OSV
2026-01-18 13:54:14 +03: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())