2024-04-06 17:25:11 +03:00
|
|
|
from argparse import ArgumentParser
|
|
|
|
|
|
|
|
def gui_parser():
|
|
|
|
parser = ArgumentParser(description="Run the GUI")
|
2024-11-19 19:25:40 +03:00
|
|
|
parser.add_argument("--host", type=str, default="0.0.0.0", help="hostname")
|
|
|
|
parser.add_argument_alias('-h', '--host')
|
|
|
|
parser.add_argument("--port", type=int, default=8080, help="port")
|
|
|
|
parser.add_argument_alias('-p', '--port')
|
|
|
|
parser.add_argument("--debug", action="store_true", help="debug mode")
|
|
|
|
parser.add_argument_alias('-d', '--debug')
|
|
|
|
parser.add_argument_alias('-debug', '--debug')
|
2024-04-21 23:39:00 +03:00
|
|
|
parser.add_argument("--ignore-cookie-files", action="store_true", help="Don't read .har and cookie files.")
|
2024-04-06 17:25:11 +03:00
|
|
|
return parser
|