Lines Matching refs:parser
669 parser = argparse.ArgumentParser(prog='scorecard', description="""
673 parser.add_argument("-v", "--verbose", action='count', default=1,
675 parser.add_argument("-j", "--json", action='store_true',
677 parser.add_argument("-H", "--handshakes", action='store_true',
679 parser.add_argument("-d", "--downloads", action='store_true',
681 parser.add_argument("--download", action='append', type=str,
683 parser.add_argument("--download-count", action='store', type=int,
685 parser.add_argument("--download-parallel", action='store', type=int,
687 parser.add_argument("-u", "--uploads", action='store_true',
689 parser.add_argument("--upload", action='append', type=str,
691 parser.add_argument("--upload-count", action='store', type=int,
693 parser.add_argument("-r", "--requests", action='store_true',
695 parser.add_argument("--request-count", action='store', type=int,
697 parser.add_argument("--httpd", action='store_true', default=False,
699 parser.add_argument("--caddy", action='store_true', default=False,
701 parser.add_argument("--curl-verbose", action='store_true',
703 parser.add_argument("protocol", default='h2', nargs='?',
705 parser.add_argument("--start-only", action='store_true', default=False,
707 parser.add_argument("--remote", action='store', type=str,
709 args = parser.parse_args()