annotate certifi/__main__.py @ 10:ccec96a537b7

planemo upload for repository https://toolrepo.galaxytrakr.org/view/jpayne/bioproject_to_srr_2/556cac4fb538
author jpayne
date Mon, 06 May 2024 00:12:39 -0400
parents 5eb2d5e3bf22
children
rev   line source
jpayne@7 1 import argparse
jpayne@7 2
jpayne@7 3 from certifi import contents, where
jpayne@7 4
jpayne@7 5 parser = argparse.ArgumentParser()
jpayne@7 6 parser.add_argument("-c", "--contents", action="store_true")
jpayne@7 7 args = parser.parse_args()
jpayne@7 8
jpayne@7 9 if args.contents:
jpayne@7 10 print(contents())
jpayne@7 11 else:
jpayne@7 12 print(where())