This commit is contained in:
Ghost 2024-01-10 18:18:12 +01:00
commit d844c2e6dc
2 changed files with 12 additions and 1 deletions

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
bin
lib
lib64
*__pycache__
pyvenv.cfg
# Project specific
videos/
tmp/
Src/Util/file_list.txt

3
run.py
View File

@ -34,7 +34,8 @@ def main():
else:
console.print(f"[green]\nTv select: {db_title[index_select]['name']}")
download_tv(db_title[index_select]['id'], db_title[index_select]['name'].replace(" ", "+"), site_version, domain)
tv_download_behaviour = int(msg.ask(f"\n[blue]Do you want to download specific episodes or an entire season? (0-> Specific | 1 -> Entire season): ", choices=['0', '1']))
download_tv(db_title[index_select]['id'], db_title[index_select]['name'].replace(" ", "+"), site_version, domain, tv_download_behaviour)
console.print("\n[red]Done")