jpayne@7: import argparse jpayne@7: jpayne@7: from certifi import contents, where jpayne@7: jpayne@7: parser = argparse.ArgumentParser() jpayne@7: parser.add_argument("-c", "--contents", action="store_true") jpayne@7: args = parser.parse_args() jpayne@7: jpayne@7: if args.contents: jpayne@7: print(contents()) jpayne@7: else: jpayne@7: print(where())