Sign in
foss-eda-tools
/
third_party
/
shuttle
/
sky130
/
mpw-007
/
slot-030
/
268a65bf77514ce05b2b1415de0dd66b6df5a35e
/
.
/
venv
/
lib
/
python3.9
/
site-packages
/
pip
/
_vendor
/
certifi
/
__main__.py
blob: 00376349e69ad8b9dbf401cddc34055951e4b02e [
file
] [
log
] [
blame
]
import
argparse
from
pip
.
_vendor
.
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
())