Update 2025-04-24_11:44:19
This commit is contained in:
12
venv/lib/python3.11/site-packages/certifi/__main__.py
Normal file
12
venv/lib/python3.11/site-packages/certifi/__main__.py
Normal file
@ -0,0 +1,12 @@
|
||||
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())
|
Reference in New Issue
Block a user