Skip to content

Commit

Permalink
add experimental to argparse help
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixthrush committed Oct 21, 2024
1 parent 83c3bbc commit d20ae51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ usage: aniworld [-h] [--slug SLUG] [--link LINK] [--query QUERY]
[--provider {Vidoza,Streamtape,VOE,Doodstream}] [--aniskip]
[--keep-watching] [--anime4k {High,Low,Remove}]
[--syncplay-password SYNCPLAY_PASSWORD [SYNCPLAY_PASSWORD ...]]
[--only-direct-link] [--only-command] [--proxy PROXY] [--debug]
[--version] [--uninstall]
[--only-direct-link] [--only-command] [--proxy PROXY] [--use-playwright]
[--debug] [--version] [--update {mpv,yt-dlp,syncplay,all}] [--uninstall]
Parse optional command line arguments.
Expand Down Expand Up @@ -273,11 +273,12 @@ options:
--only-command Output command
--proxy PROXY Set HTTP Proxy - E.g. http://0.0.0.0:8080
--use-playwright Bypass fetching with a headless browser using Playwright instead
(EXPERIMENTAL!!!)
--debug Enable debug mode
--version Print version info
--update {mpv,yt-dlp,syncplay,all}
Update mpv, yt-dlp, syncplay, or all.
--uninstall Self uninstall
--uninstall Self uninstalls
```

---
Expand Down
2 changes: 1 addition & 1 deletion src/aniworld/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def parse_arguments():
)
parser.add_argument(
'--use-playwright', action='store_true',
help='Bypass fetching with a headless browser using Playwright instead'
help='Bypass fetching with a headless browser using Playwright instead (EXPERIMENTAL!!!)'
)
parser.add_argument(
'--debug', action='store_true',
Expand Down

0 comments on commit d20ae51

Please sign in to comment.