qobuz-dl/main.py

128 lines
3.6 KiB
Python
Raw Normal View History

2020-08-10 04:47:51 +02:00
import argparse
import os
2020-10-17 18:52:35 +02:00
import re
2020-08-10 04:47:51 +02:00
import sys
2020-10-17 18:52:35 +02:00
from pick import pick
2020-11-03 00:48:48 +01:00
import config
from qo_utils import downloader, qopy
2020-10-17 18:52:35 +02:00
from qo_utils.search import Search
2020-08-10 04:47:51 +02:00
def getArgs():
2020-10-17 18:52:35 +02:00
parser = argparse.ArgumentParser(prog="python3 main.py")
parser.add_argument("-a", action="store_true", help="enable albums-only search")
parser.add_argument(
2020-11-03 00:48:48 +01:00
"-i",
metavar="Album/track URL",
help="run Qobuz-Dl on URL input mode (download by url)",
2020-10-17 18:52:35 +02:00
)
parser.add_argument(
2020-11-03 00:48:48 +01:00
"-q",
metavar="int",
default=config.default_quality,
help="quality for url input mode (5, 6, 7, 27) (default: 6)",
2020-10-17 18:52:35 +02:00
)
parser.add_argument(
"-l",
metavar="int",
2020-11-03 00:48:48 +01:00
default=config.default_limit,
2020-10-17 18:52:35 +02:00
help="limit of search results by type (default: 10)",
)
parser.add_argument(
"-d",
metavar="PATH",
2020-11-03 00:48:48 +01:00
default=config.default_folder,
help="custom directory for downloads (default: '{}')".format(
config.default_folder
),
2020-10-17 18:52:35 +02:00
)
2020-08-10 04:47:51 +02:00
return parser.parse_args()
def musicDir(dir):
fix = os.path.normpath(dir)
if not os.path.isdir(fix):
os.mkdir(fix)
return fix
def get_id(url):
2020-10-17 18:52:35 +02:00
return re.match(
r"https?://(?:w{0,3}|play|open)\.qobuz\.com/(?:(?"
":album|track)/|[a-z]{2}-[a-z]{2}/album/-?\w+(?:-\w+)"
"*-?/|user/library/favorites/)(\w+)",
url,
).group(1)
2020-08-10 04:47:51 +02:00
2020-08-13 06:43:52 +02:00
def searchSelected(Qz, path, albums, ids, types, quality):
2020-10-17 18:52:35 +02:00
q = ["5", "6", "7", "27"]
2020-08-13 06:43:52 +02:00
quality = q[quality[1]]
for alb, id_, type_ in zip(albums, ids, types):
2020-08-13 08:08:03 +02:00
for al in alb:
2020-11-03 00:48:48 +01:00
downloader.iterateIDs(
Qz, id_[al[1]], path, quality, True if type_[al[1]] else False
)
2020-08-10 04:47:51 +02:00
def fromUrl(Qz, path, link, quality):
2020-11-03 00:48:48 +01:00
id = get_id(link)
downloader.iterateIDs(
Qz, id, path, str(quality), False if "/track/" in link else True
)
2020-08-10 04:47:51 +02:00
def interactive(Qz, path, limit, tracks=True):
while True:
2020-08-13 06:43:52 +02:00
Albums, Types, IDs = [], [], []
2020-08-10 04:47:51 +02:00
try:
2020-08-13 06:43:52 +02:00
while True:
query = input("\nEnter your search: [Ctrl + c to quit]\n- ")
2020-10-17 18:52:35 +02:00
print("Searching...")
2020-08-13 06:43:52 +02:00
start = Search(Qz, query, limit)
start.getResults(tracks)
Types.append(start.Types)
IDs.append(start.IDs)
2020-10-17 18:52:35 +02:00
title = (
"Select [space] the item(s) you want to download "
"(one or more)\nPress Ctrl + c to quit\n"
)
Selected = pick(
start.Total, title, multiselect=True, min_selection_count=1
)
2020-08-13 06:43:52 +02:00
Albums.append(Selected)
2020-10-17 18:52:35 +02:00
y_n = pick(
["Yes", "No"],
"Items were added to queue to be downloaded. Keep searching?",
)
if y_n[0][0] == "N":
2020-08-13 06:43:52 +02:00
break
2020-10-17 18:52:35 +02:00
desc = (
"Select [intro] the quality (the quality will be automat"
"ically\ndowngraded if the selected is not found)"
)
Qualits = ["320", "Lossless", "Hi-res =< 96kHz", "Hi-Res > 96 kHz"]
2020-08-13 06:43:52 +02:00
quality = pick(Qualits, desc)
searchSelected(Qz, path, Albums, IDs, Types, quality)
2020-08-10 04:47:51 +02:00
except KeyboardInterrupt:
2020-10-17 18:52:35 +02:00
sys.exit("\nBye")
2020-08-10 04:47:51 +02:00
def main():
arguments = getArgs()
2020-10-17 18:52:35 +02:00
directory = musicDir(arguments.d) + "/"
2020-11-03 00:48:48 +01:00
Qz = qopy.Client(config.email, config.password)
2020-08-10 04:47:51 +02:00
if not arguments.i:
2020-10-17 18:52:35 +02:00
interactive(Qz, directory, arguments.l, not arguments.a)
2020-08-10 04:47:51 +02:00
else:
2020-11-03 00:48:48 +01:00
fromUrl(Qz, directory, arguments.i, arguments.q)
2020-08-10 04:47:51 +02:00
if __name__ == "__main__":
sys.exit(main())