Change example.com to https://example.com

Added schema to the how-to-use guide because the tool doesn't work without it
pull/53/head
Nomardt 2023-04-29 16:41:16 +01:00 committed by GitHub
parent 37f30f63bf
commit 7eaa107234
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ def requester(url, method, payload, proxy, headers=None, use_json=False, is_batc
def parse_args():
parser = argparse.ArgumentParser()
parser.add_argument('-u', action='store', dest='url', help="URL to query : example.com/graphql?query={}")
parser.add_argument('-u', action='store', dest='url', help="URL to query : https://example.com/graphql?query={}")
parser.add_argument('-v', action='store', dest='verbosity', help="Enable verbosity", nargs='?', const=True)
parser.add_argument('--method', action='store', dest='method',
help="HTTP Method to use interact with /graphql endpoint", nargs='?', const=True, default="GET")