Mercurial > repos > jpayne > bioproject_to_srr_2
annotate certifi/__main__.py @ 8:832f269deeb0
planemo upload for repository https://toolrepo.galaxytrakr.org/view/jpayne/bioproject_to_srr_2/556cac4fb538
author | jpayne |
---|---|
date | Sun, 05 May 2024 23:47:10 -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()) |