Mercurial > repos > jpayne > bioproject_to_srr_2
view certifi/__main__.py @ 15:0a3943480712
planemo upload for repository https://toolrepo.galaxytrakr.org/view/jpayne/bioproject_to_srr_2/556cac4fb538
author | jpayne |
---|---|
date | Tue, 21 May 2024 01:05:30 -0400 |
parents | 5eb2d5e3bf22 |
children |
line wrap: on
line source
import argparse from 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())