implemented direct download in the cli

This commit is contained in:
Hellow2 2023-03-30 12:43:43 +02:00
parent cc7eb41ac7
commit 3f47f46153
2 changed files with 10 additions and 2 deletions

View File

@ -29,4 +29,4 @@ def direct_download():
if __name__ == "__main__":
direct_download()
music_kraken.cli()

View File

@ -3,7 +3,7 @@ import gc
from typing import List
import musicbrainzngs
import logging
import os
import re
from . import (
objects,
@ -34,6 +34,8 @@ gc.set_threshold(allocs, gen1, gen2)
logging.getLogger("musicbrainzngs").setLevel(logging.WARNING)
musicbrainzngs.set_useragent("metadata receiver", "0.1", "https://github.com/HeIIow2/music-downloader")
URL_REGGEX = 'https?://(?:[-\w.]|(?:%[\da-fA-F]{2}))+'
def cli():
def next_search(search: pages.Search, query: str):
@ -50,6 +52,12 @@ def cli():
search.choose_index(int(parsed))
return
url = re.match(URL_REGGEX, query)
if url is not None:
if not search.search_url(url.string):
print("The given url couldn't be downloaded")
return
page = search.get_page_from_query(parsed)
if page is not None:
search.choose_page(page)