Skip to content

Commit

Permalink
changes order of stream providers
Browse files Browse the repository at this point in the history
  • Loading branch information
speedyconzales committed Jul 26, 2024
1 parent f751454 commit e8edd77
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ headless and completely automated scraping of the following sites:
| `-s, --season` | **Default:** All seasons will be scraped but not the movies or specials. Choose the season number. -> Providing `0` as season number scrapes the respective movies or specials of that series |
| `-e, --episode` | **Default:** All episodes of the season will be scraped. Choose either one episode or a list of episodes separated by spaces. You can also specify a range of episodes e.g.: `-e 2 3 10-15 17` |
| `-t, --threads` | **Default:** 2. Specify the number of threads or concurrent downloads. Do not choose too high numbers as the server might block too frequent requests |
| `-p, --provider` | **Default:** Downloads will follow this priority: VOE > Vidoza > Doodstream > Streamtape. If the episode is not available on the hoster it will try the next. Specify the hoster/provider you want to download from |
| `-p, --provider` | **Default:** Downloads will follow this priority: Vidoza > VOE > Doodstream > Streamtape. If the episode is not available on the hoster it will try the next. Specify the hoster/provider you want to download from |
| `-a, --anime` | Declare this content as anime. Only useful for `bs.to` as it does not distinguish between series and anime on the site |
## Credits
Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def main():

os.makedirs(output_path, exist_ok=True)

providers = ["VOE", "Vidoza", "Doodstream", "Streamtape"] if not provider else provider
providers = ["Vidoza", "VOE", "Doodstream", "Streamtape"] if not provider else provider

for season in seasons:
season_path = f"{output_path}/Season {season:02}"
Expand Down

0 comments on commit e8edd77

Please sign in to comment.