Sign in
gdch-oss
/
third_party
/
certifi
/
python-certifi
/
refs/tags/2024.08.30
/
.
/
certifi
/
__main__.py
blob: 8945b5da857f4a7dec2b84f1225f012f6098418c [
file
] [
log
] [
blame
]
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
())