Pep8 formating.
This commit is contained in:
parent
391439ef9e
commit
fb3c57f7cd
153
adl.py
153
adl.py
@ -1,18 +1,26 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import os, subprocess, sys, argparse, signal
|
||||
import os
|
||||
import subprocess
|
||||
import sys
|
||||
import argparse
|
||||
import signal
|
||||
|
||||
# required files
|
||||
CURRENT_DIR = os.getcwd()
|
||||
VERSION = "1.0"
|
||||
|
||||
if sys.platform == "win32":
|
||||
CONFIG_FILE_PATH = os.path.join('C:\\', 'Users', str(os.getlogin()), 'Documents', 'Adl', 'config.json')
|
||||
DEFAULT_DOWNLOAD_LOCATION = os.path.join('C:\\', 'Users', str(os.getlogin()), 'Videos', 'Anime')
|
||||
CONFIG_FILE_PATH = os.path.join('C:\\', 'Users', str(
|
||||
os.getlogin()), 'Documents', 'Adl', 'config.json')
|
||||
DEFAULT_DOWNLOAD_LOCATION = os.path.join(
|
||||
'C:\\', 'Users', str(os.getlogin()), 'Videos', 'Anime')
|
||||
CLEAR = 'cls'
|
||||
else:
|
||||
CONFIG_FILE_PATH = os.path.join('/home', str(os.getlogin()), '.config', 'adl', 'config.json')
|
||||
DEFAULT_DOWNLOAD_LOCATION = os.path.join('/home', str(os.getlogin()), 'Videos', 'Anime')
|
||||
CONFIG_FILE_PATH = os.path.join(
|
||||
'/home', str(os.getlogin()), '.config', 'adl', 'config.json')
|
||||
DEFAULT_DOWNLOAD_LOCATION = os.path.join(
|
||||
'/home', str(os.getlogin()), 'Videos', 'Anime')
|
||||
CLEAR = 'clear'
|
||||
|
||||
PROBLEMATIC_TITLES = ['Komi-san wa, Komyushou desu ',
|
||||
@ -20,46 +28,65 @@ PROBLEMATIC_TITLES = ['Komi-san wa, Komyushou desu ',
|
||||
GOOD_TITLES = ['Komi-san wa, Komyushou desu.',
|
||||
'SK∞']
|
||||
|
||||
|
||||
|
||||
# exit function
|
||||
def exit_adl():
|
||||
sys.exit()
|
||||
|
||||
#
|
||||
|
||||
def interupt_command(signum, frame):
|
||||
exit_adl()
|
||||
|
||||
|
||||
|
||||
# colored print
|
||||
def color_print(text):
|
||||
print(f"\033[0;36m{text } \033[0m")
|
||||
|
||||
|
||||
|
||||
# colored watch primpt
|
||||
def watch_prompt(title, episode, msg):
|
||||
print(f"Now {msg} \033[0;34m{title}\033[0m, episode \033[0;34m{str(episode)} \033[0m")
|
||||
print(
|
||||
f"Now {msg} \033[0;34m{title}\033[0m, episode \033[0;34m{str(episode)} \033[0m")
|
||||
|
||||
|
||||
|
||||
# colored input
|
||||
def color_prommpt(text):
|
||||
return input(f"\033[0;34m{text}\033[0m")
|
||||
|
||||
|
||||
|
||||
# retrieve new list
|
||||
def retrieve_list(account):
|
||||
color_print(f"Running trackma retrieve for account {account}...")
|
||||
subprocess.run(["trackma", "-a", account, "retrieve"])
|
||||
subprocess.run(CLEAR)
|
||||
|
||||
|
||||
|
||||
# retrieve updated list
|
||||
def retrieve_list_update(account):
|
||||
color_print(f"Running trackma retrieve for account {account} to get the updated list...")
|
||||
color_print(
|
||||
f"Running trackma retrieve for account {account} to get the updated list...")
|
||||
subprocess.run(["trackma", "-a", account, "retrieve"])
|
||||
subprocess.run(CLEAR)
|
||||
|
||||
|
||||
|
||||
# load list
|
||||
def load_list(account):
|
||||
alist = subprocess.run(["trackma", "-a", account, "list"], stdout=subprocess.PIPE).stdout.decode('utf-8').splitlines()
|
||||
alist = subprocess.run(["trackma", "-a", account, "list"],
|
||||
stdout=subprocess.PIPE).stdout.decode('utf-8').splitlines()
|
||||
alist.pop(0)
|
||||
alist = alist[: len(alist) - 3]
|
||||
alist = "\n".join(alist)
|
||||
return alist
|
||||
|
||||
|
||||
|
||||
# exit prompt
|
||||
def exit_ask():
|
||||
while True:
|
||||
@ -70,14 +97,19 @@ def exit_ask():
|
||||
elif choice == "Y" or choice == "y" or choice == "":
|
||||
return
|
||||
|
||||
|
||||
|
||||
# check for problematic title
|
||||
def check_title(title):
|
||||
for problem in PROBLEMATIC_TITLES:
|
||||
if problem == title:
|
||||
title = GOOD_TITLES[PROBLEMATIC_TITLES.index(problem)].encode('utf-8')
|
||||
title = GOOD_TITLES[PROBLEMATIC_TITLES.index(
|
||||
problem)].encode('utf-8')
|
||||
title = title.decode('utf-8')
|
||||
return title
|
||||
|
||||
|
||||
|
||||
# get chosen anime info
|
||||
def get_info(choice):
|
||||
# get index
|
||||
@ -99,6 +131,8 @@ def get_info(choice):
|
||||
|
||||
return index, title, episode, score
|
||||
|
||||
|
||||
|
||||
# watch animes
|
||||
def watch(title, episode, download, provider, download_location):
|
||||
cmd = ['animdl']
|
||||
@ -122,6 +156,8 @@ def watch(title, episode, download, provider, download_location):
|
||||
if download:
|
||||
os.chdir(CURRENT_DIR)
|
||||
|
||||
|
||||
|
||||
# next episode
|
||||
def next_episode(title, episode, msg, download, provider, download_location):
|
||||
if not download:
|
||||
@ -143,16 +179,22 @@ def next_episode(title,episode, msg, download, provider, download_location):
|
||||
watch_prompt(title, str(episode), msg)
|
||||
watch(title, str(episode), download, provider, download_location)
|
||||
|
||||
|
||||
|
||||
# all from last watched
|
||||
def all_from_last(title, episode, msg, download, provider, download_location):
|
||||
watch_prompt(title, f"{str(episode)} all left episodes", msg)
|
||||
watch(title, f'{str(episode + 1)}:', download, provider, download_location)
|
||||
|
||||
|
||||
|
||||
# all episode
|
||||
def all_episodes(title, msg, download, provider, download_location):
|
||||
watch_prompt(title, "all", msg)
|
||||
watch(title, '1:', download, provider, download_location)
|
||||
|
||||
|
||||
|
||||
# watch from custom range
|
||||
def custom_episode_range(title, msg, download, provider, download_location):
|
||||
begginig = color_prommpt("Beggining of interval?: ")
|
||||
@ -160,33 +202,45 @@ def custom_episode_range(title, msg, download, provider, download_location):
|
||||
watch_prompt(title, f"{begginig} to {end}", msg)
|
||||
watch(title, f"{begginig}:{end}", download, provider, download_location)
|
||||
|
||||
|
||||
|
||||
# add to last watched m
|
||||
def next_plus_n(title, episode, action, msg, download, provider, download_location):
|
||||
watch_prompt(title, str(episode + int(action)), msg)
|
||||
watch(title, str(episode + int(action)), download, provider, download_location)
|
||||
watch(title, str(episode + int(action)),
|
||||
download, provider, download_location)
|
||||
|
||||
|
||||
|
||||
# rewatch current episode
|
||||
def rewatch_episode(title, episode, msg, download, provider, download_location):
|
||||
watch_prompt(title, str(episode), msg)
|
||||
watch(title, str(episode), download, provider, download_location)
|
||||
|
||||
|
||||
|
||||
# watch custom episode
|
||||
def custom_episode(title, msg, download, provider, download_location):
|
||||
episode = color_prommpt("Enter custom episode: ")
|
||||
watch_prompt(title, episode, msg)
|
||||
watch(title, episode, download, provider, download_location)
|
||||
|
||||
|
||||
|
||||
# update title
|
||||
def update_title(index, title, episode, account):
|
||||
color_print(f"Current episode for {title} is {str(episode)}")
|
||||
custom = color_prommpt("Enter updated episode number: ")
|
||||
if custom != "":
|
||||
subprocess.run(['trackma', '-a', account, 'update', str(index), custom])
|
||||
subprocess.run(['trackma', '-a', account,
|
||||
'update', str(index), custom])
|
||||
subprocess.run(['trackma', '-a', account, 'send'])
|
||||
retrieve_list_update(account)
|
||||
else:
|
||||
color_print("Skipping updating...")
|
||||
|
||||
|
||||
|
||||
# update score
|
||||
def update_score(index, title, score, account):
|
||||
color_print(f"Current score for {title} is {score}")
|
||||
@ -198,6 +252,8 @@ def update_score(index, title, score, account):
|
||||
else:
|
||||
color_print("Skipping updating...")
|
||||
|
||||
|
||||
|
||||
# update question
|
||||
def update_question(index, title, episode, score, account):
|
||||
while True:
|
||||
@ -210,6 +266,8 @@ def update_question(index, title, episode, score, account):
|
||||
update_score(index, title, score, account)
|
||||
break
|
||||
|
||||
|
||||
|
||||
# ask if you wanna continus watching
|
||||
def wanna_continu_watch(download):
|
||||
while True:
|
||||
@ -222,11 +280,14 @@ def wanna_continu_watch(download):
|
||||
elif yn == "n" or yn == "N":
|
||||
return False
|
||||
|
||||
|
||||
|
||||
# ask if you wanna update title meta after watch
|
||||
def wanna_update_title_after_watch(index, title, episode, score, download, account):
|
||||
if not download:
|
||||
while True:
|
||||
yn = color_prommpt("Wanna update episode number or update score of watched anime? [N/e/s]: ")
|
||||
yn = color_prommpt(
|
||||
"Wanna update episode number or update score of watched anime? [N/e/s]: ")
|
||||
if yn == "E" or yn == "e":
|
||||
update_title(index, title, episode, account)
|
||||
break
|
||||
@ -236,6 +297,8 @@ def wanna_update_title_after_watch(index, title, episode, score, download, accou
|
||||
elif yn == "N" or yn == "n" or yn == "":
|
||||
break
|
||||
|
||||
|
||||
|
||||
# choose what to do with episode
|
||||
def choose_episode():
|
||||
subprocess.run(CLEAR)
|
||||
@ -251,6 +314,7 @@ def choose_episode():
|
||||
color_print(" S - Skip. Choose another show.")
|
||||
return color_prommpt("Your choice? [N/l/a/i/0-9/r/c/u/s]: ")
|
||||
|
||||
|
||||
def choose_episode_specific_show():
|
||||
subprocess.run(CLEAR)
|
||||
color_print("Enter lowercase or uppercase to issue command:")
|
||||
@ -260,6 +324,7 @@ def choose_episode_specific_show():
|
||||
color_print(" S - Skip. Exit adl.")
|
||||
return color_prommpt("Your choice? [A/i/c/s]: ")
|
||||
|
||||
|
||||
def argument_and_config_parser():
|
||||
# config
|
||||
config = {}
|
||||
@ -332,7 +397,8 @@ def argument_and_config_parser():
|
||||
if args['account']:
|
||||
account = str(int(args["account"]) - 1) # take the account from input
|
||||
elif ConfigExists and 'account' in config and config["account"]:
|
||||
account = str(int(config["account"]) - 1) # take the account from config
|
||||
# take the account from config
|
||||
account = str(int(config["account"]) - 1)
|
||||
else:
|
||||
account = "0" # default account
|
||||
|
||||
@ -344,7 +410,6 @@ def argument_and_config_parser():
|
||||
download = False # specify whether to download or not
|
||||
msg = "watching" # msg for the watch prompt
|
||||
|
||||
|
||||
if not download and args["download_location"]:
|
||||
color_print("You need to be downloading to use this option!")
|
||||
exit_adl()
|
||||
@ -353,9 +418,9 @@ def argument_and_config_parser():
|
||||
else:
|
||||
download_location = DEFAULT_DOWNLOAD_LOCATION
|
||||
|
||||
|
||||
return (provider, show, episode, account, download, msg, download_location)
|
||||
|
||||
|
||||
def specific_show_loop(show, msg, download, provider, download_location):
|
||||
while True:
|
||||
# choose what to do with the choosen anime
|
||||
@ -365,7 +430,8 @@ def specific_show_loop(show, msg, download, provider, download_location):
|
||||
exit_adl()
|
||||
# custom range of episodes
|
||||
elif action == "i" or action == "I":
|
||||
custom_episode_range(show, msg, download, provider, download_location)
|
||||
custom_episode_range(show, msg, download,
|
||||
provider, download_location)
|
||||
if wanna_continu_watch(download):
|
||||
continue
|
||||
else:
|
||||
@ -381,6 +447,7 @@ def specific_show_loop(show, msg, download, provider, download_location):
|
||||
elif action == "s" or action == "S":
|
||||
exit_adl()
|
||||
|
||||
|
||||
def main_loop(retrieve, account, msg, download, provider, download_location):
|
||||
# main loop
|
||||
while True:
|
||||
@ -393,7 +460,8 @@ def main_loop(retrieve, account, msg, download,provider, download_location):
|
||||
alist = load_list(account)
|
||||
|
||||
# get choice from fzf
|
||||
choice = subprocess.run(["fzf", "--ansi", "--unicode", "--reverse", "--prompt", "Choose anime to watch: "], input=alist, stdout=subprocess.PIPE, encoding='utf-8').stdout
|
||||
choice = subprocess.run(["fzf", "--ansi", "--unicode", "--reverse", "--prompt",
|
||||
"Choose anime to watch: "], input=alist, stdout=subprocess.PIPE, encoding='utf-8').stdout
|
||||
|
||||
if choice:
|
||||
# get needed info
|
||||
@ -405,56 +473,70 @@ def main_loop(retrieve, account, msg, download,provider, download_location):
|
||||
action = choose_episode()
|
||||
# watch next episode
|
||||
if action == "n" or action == "N" or action == "":
|
||||
next_episode(title, episode, msg, download,provider, download_location)
|
||||
wanna_update_title_after_watch(index, title, episode, score, download, account)
|
||||
next_episode(title, episode, msg, download,
|
||||
provider, download_location)
|
||||
wanna_update_title_after_watch(
|
||||
index, title, episode, score, download, account)
|
||||
exit_ask()
|
||||
break
|
||||
# watch all left episodes
|
||||
elif action == "l" or action == "L":
|
||||
all_from_last(title, episode, msg, download,provider, download_location)
|
||||
wanna_update_title_after_watch(index, title, episode, score, download, account)
|
||||
all_from_last(title, episode, msg, download,
|
||||
provider, download_location)
|
||||
wanna_update_title_after_watch(
|
||||
index, title, episode, score, download, account)
|
||||
exit_ask()
|
||||
break
|
||||
# watch every episode available
|
||||
elif action == "a" or action == "A":
|
||||
all_episodes(title, msg, download,provider, download_location)
|
||||
wanna_update_title_after_watch(index, title, episode, score, download, account)
|
||||
all_episodes(title, msg, download,
|
||||
provider, download_location)
|
||||
wanna_update_title_after_watch(
|
||||
index, title, episode, score, download, account)
|
||||
exit_ask()
|
||||
break
|
||||
# custom range of episodes
|
||||
elif action == "i" or action == "I":
|
||||
custom_episode_range(title, msg, download,provider, download_location)
|
||||
custom_episode_range(
|
||||
title, msg, download, provider, download_location)
|
||||
if wanna_continu_watch(download):
|
||||
continue
|
||||
else:
|
||||
wanna_update_title_after_watch(index, title, episode, score, download, account)
|
||||
wanna_update_title_after_watch(
|
||||
index, title, episode, score, download, account)
|
||||
exit_ask()
|
||||
break
|
||||
# something?
|
||||
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, action, msg, download,provider, download_location)
|
||||
next_plus_n(title, episode, action, msg,
|
||||
download, provider, download_location)
|
||||
if wanna_continu_watch(download):
|
||||
continue
|
||||
else:
|
||||
wanna_update_title_after_watch(index, title, episode, score, download, account)
|
||||
wanna_update_title_after_watch(
|
||||
index, title, episode, score, download, account)
|
||||
exit_ask()
|
||||
break
|
||||
# rewatch current episode
|
||||
elif action == "r" or action == "R":
|
||||
rewatch_episode(title, episode, msg, download,provider, download_location)
|
||||
rewatch_episode(title, episode, msg, download,
|
||||
provider, download_location)
|
||||
if wanna_continu_watch(download):
|
||||
continue
|
||||
else:
|
||||
wanna_update_title_after_watch(index, title, episode, score, download, account)
|
||||
wanna_update_title_after_watch(
|
||||
index, title, episode, score, download, account)
|
||||
exit_ask()
|
||||
break
|
||||
# watch custom episode
|
||||
elif action == "c" or action == "C":
|
||||
custom_episode(title, msg, download,provider, download_location)
|
||||
custom_episode(title, msg, download,
|
||||
provider, download_location)
|
||||
if wanna_continu_watch(download):
|
||||
continue
|
||||
else:
|
||||
wanna_update_title_after_watch(index, title, episode, score, download, account)
|
||||
wanna_update_title_after_watch(
|
||||
index, title, episode, score, download, account)
|
||||
exit_ask()
|
||||
break
|
||||
# update anime meta
|
||||
@ -478,7 +560,8 @@ def main():
|
||||
os.environ['COLUMNS'] = '120'
|
||||
os.environ['PYTHONIOENCODING'] = 'utf-8'
|
||||
# get argument and config parameters
|
||||
(provider, show, episode, account, download, msg, download_location) = argument_and_config_parser()
|
||||
(provider, show, episode, account, download, msg,
|
||||
download_location) = argument_and_config_parser()
|
||||
|
||||
# retrieve the trackma list on run
|
||||
retrieve = True
|
||||
@ -491,9 +574,11 @@ def main():
|
||||
specific_show_loop(show, msg, download, provider, download_location)
|
||||
else:
|
||||
# main loop that connets with your list with trackma
|
||||
main_loop(retrieve, account, msg, download,provider, download_location)
|
||||
main_loop(retrieve, account, msg, download,
|
||||
provider, download_location)
|
||||
exit_adl()
|
||||
|
||||
|
||||
# run only if runned directly
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
Loading…
Reference in New Issue
Block a user