Searched refs:args_parser (Results 1 – 2 of 2) sorted by relevance
29 args_parser = argparse.ArgumentParser(description='Merge given CSV files into a single one.') variable30 args_parser.add_argument('--header', help='Comma separated field names; '32 args_parser.add_argument('--zip_input', help='Treat files as ZIP archives containing CSV files to m…34 args_parser.add_argument('--key_field', help='The name of the field by which the rows should be sor…38 args_parser.add_argument('--output', help='Output file for merged CSV.',40 args_parser.add_argument('files', nargs=argparse.REMAINDER)41 args = args_parser.parse_args()
23 args_parser = argparse.ArgumentParser(description='Verify that one set of hidden API flags is a sub… variable24 args_parser.add_argument('all', help='All the flags')25 args_parser.add_argument('subsets', nargs=argparse.REMAINDER, help='Subsets of the flags')26 args = args_parser.parse_args()