Added continus watching posibility

This commit is contained in:
CronyAkatsuki 2021-06-28 15:10:52 +02:00
parent 05b66d54b9
commit 4686d27350

31
adl.py
View File

@ -1,4 +1,5 @@
import os, subprocess, sys import os, subprocess, sys
from symbol import continue_stmt
from iterfzf import iterfzf from iterfzf import iterfzf
from time import sleep from time import sleep
@ -140,6 +141,15 @@ def update_question(title, episode, score):
update_score(title, score) update_score(title, score)
break break
# ask if you wanna continus watching
def wanna_continu_watch():
while True:
yn = color_prommpt("Wanna continus watching?: ")
if yn == "y" or yn == "Y":
return True
elif yn == "n" or yn == "N":
return False
# choose what to do with episode # choose what to do with episode
def choose_episode(): def choose_episode():
os.system("cls") os.system("cls")
@ -169,13 +179,20 @@ while True:
episode = get_episode(full_choice) episode = get_episode(full_choice)
last_episode = get_all_episodes(full_choice) last_episode = get_all_episodes(full_choice)
score = get_score(full_choice) score = get_score(full_choice)
watching = True
while True: while True:
action = choose_episode() action = choose_episode(watching)
if action == "": if action == "":
next_episode(title, episode, player) next_episode(title, episode, player)
if wanna_continu_watch():
continue
else:
break break
elif action == "n" or action == "N": elif action == "n" or action == "N":
next_episode(title, episode, player) next_episode(title, episode, player)
if wanna_continu_watch():
continue
else:
break break
elif action == "l" or action == "L": elif action == "l" or action == "L":
all_from_last(title, episode,last_episode, player) all_from_last(title, episode,last_episode, player)
@ -185,15 +202,27 @@ while True:
break break
elif action == "i" or action == "I": elif action == "i" or action == "I":
custom_episode_range(title, player) custom_episode_range(title, player)
if wanna_continu_watch():
continue
else:
break break
elif action == "1" or action == "2" or action == "3" or action == "4" or action == "5" or action == "6" or action == "7" or action == "8" or action == "9": elif action == "1" or action == "2" or action == "3" or action == "4" or action == "5" or action == "6" or action == "7" or action == "8" or action == "9":
next_plus_n(title, episode, player, action) next_plus_n(title, episode, player, action)
if wanna_continu_watch():
continue
else:
break break
elif action == "r" or action == "R": elif action == "r" or action == "R":
rewatch_episode(title, episode, player) rewatch_episode(title, episode, player)
if wanna_continu_watch():
continue
else:
break break
elif action == "c" or action == "C": elif action == "c" or action == "C":
custom_episode(title, player) custom_episode(title, player)
if wanna_continu_watch():
continue
else:
break break
elif action == "u" or action == "U": elif action == "u" or action == "U":
update_question(title, episode, score) update_question(title, episode, score)