Close #30; remove versions from requirements.txt

This commit is contained in:
vitiko98 2020-12-15 13:07:21 -04:00
parent ba9cdae386
commit bea77ba241
2 changed files with 11 additions and 7 deletions

View File

@ -79,9 +79,13 @@ def get_title(item_dict):
def get_extra(i, dirn, extra="cover.jpg"): def get_extra(i, dirn, extra="cover.jpg"):
extra_file = os.path.join(dirn, extra)
if os.path.isfile(extra_file):
print(extra.split(".")[0].title() + " already downloaded")
return
tqdm_download( tqdm_download(
i.replace("_600.", "_org."), i.replace("_600.", "_org."),
os.path.join(dirn, extra), extra_file,
"Downloading " + extra.split(".")[0], "Downloading " + extra.split(".")[0],
) )

View File

@ -1,6 +1,6 @@
pathvalidate==2.3.0 pathvalidate
requests==2.24.0 requests
mutagen==1.45.1 mutagen
tqdm==4.48.2 tqdm
pick==0.6.7 pick
beautifulsoup4==4.9.3 beautifulsoup4