qobuz-dl/main.py

142 lines
4.0 KiB
Python
Raw Normal View History

2020-08-10 04:47:51 +02:00
import argparse
2020-08-13 06:43:52 +02:00
import itertools
2020-10-17 18:52:35 +02:00
import json
2020-08-10 04:47:51 +02:00
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:15:07 +01:00
from qo_utils import qopy
2020-10-17 18:52:35 +02:00
from qo_utils import downloader
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(
"-i", action="store_true", help="run Qo-Dl-curses on URL input mode"
)
parser.add_argument(
"-q", metavar="int", default=6, help="quality (5, 6, 7, 27) (default: 6)"
)
parser.add_argument(
"-l",
metavar="int",
default=10,
help="limit of search results by type (default: 10)",
)
parser.add_argument(
"-d",
metavar="PATH",
default="Qobuz Downloads",
help="custom directory for downloads",
)
2020-08-10 04:47:51 +02:00
return parser.parse_args()
def getSession():
2020-10-17 18:52:35 +02:00
print("Logging...")
with open("config.json") as f:
2020-08-10 04:47:51 +02:00
config = json.load(f)
2020-10-17 18:52:35 +02:00
return qopy.Client(config["email"], config["password"])
2020-08-10 04:47:51 +02:00
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:
if type_[al[1]]:
downloader.iterateIDs(Qz, id_[al[1]], path, quality, True)
2020-08-13 06:43:52 +02:00
else:
2020-08-13 08:08:03 +02:00
downloader.iterateIDs(Qz, id_[al[1]], path, quality, False)
2020-08-10 04:47:51 +02:00
def fromUrl(Qz, path, link, quality):
2020-10-17 18:52:35 +02:00
if "/track/" in link:
2020-08-10 04:47:51 +02:00
id = get_id(link)
downloader.iterateIDs(Qz, id, path, quality, False)
else:
id = get_id(link)
downloader.iterateIDs(Qz, id, path, quality, True)
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 inputMode(Qz, path, quality):
while True:
try:
link = input("\nAlbum/track URL: [Ctrl + c to quit]\n- ")
fromUrl(Qz, path, link, quality)
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-08-10 04:47:51 +02:00
Qz = getSession()
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:
inputMode(Qz, directory, arguments.q)
if __name__ == "__main__":
sys.exit(main())