summaryrefslogtreecommitdiff
path: root/e/lib/python3.11/site-packages/pip/_vendor/certifi/__main__.py
blob: 00376349e69ad8b9dbf401cddc34055951e4b02e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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())