-
-
Notifications
You must be signed in to change notification settings - Fork 13.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ignored-providers argument to gui
- Loading branch information
Showing
3 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
from argparse import ArgumentParser | ||
|
||
from ..cookies import browsers | ||
from .. import Provider | ||
|
||
def gui_parser(): | ||
parser = ArgumentParser(description="Run the GUI") | ||
parser.add_argument("--host", type=str, default="0.0.0.0", help="hostname") | ||
parser.add_argument("--port", "-p", type=int, default=8080, help="port") | ||
parser.add_argument("--debug", "-d", "-debug", action="store_true", help="debug mode") | ||
parser.add_argument("--ignore-cookie-files", action="store_true", help="Don't read .har and cookie files.") | ||
parser.add_argument("--ignored-providers", nargs="+", choices=[provider.__name__ for provider in Provider.__providers__ if provider.working], | ||
default=[], help="List of providers to ignore when processing request. (incompatible with --reload and --workers)") | ||
parser.add_argument("--cookie-browsers", nargs="+", choices=[browser.__name__ for browser in browsers], | ||
default=[], help="List of browsers to access or retrieve cookies from.") | ||
return parser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters