comparison certifi/__main__.py @ 7:5eb2d5e3bf22

planemo upload for repository https://toolrepo.galaxytrakr.org/view/jpayne/bioproject_to_srr_2/556cac4fb538
author jpayne
date Sun, 05 May 2024 23:32:17 -0400
parents
children
comparison
equal deleted inserted replaced
6:b2745907b1eb 7:5eb2d5e3bf22
1 import argparse
2
3 from certifi import contents, where
4
5 parser = argparse.ArgumentParser()
6 parser.add_argument("-c", "--contents", action="store_true")
7 args = parser.parse_args()
8
9 if args.contents:
10 print(contents())
11 else:
12 print(where())