From 92b48a8f139fe0741775f6be36c4bcc0313f659d Mon Sep 17 00:00:00 2001 From: Lars Noack Date: Wed, 23 Nov 2022 08:37:56 +0100 Subject: [PATCH] improved copyright --- README.md | 12 ++++++------ src/music_kraken/__init__.py | 5 ----- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index f8f51c9..c3b7f06 100644 --- a/README.md +++ b/README.md @@ -24,14 +24,14 @@ music-kraken **What to download:** After that it prompts you for a search. Here are a couple examples how you can search: ``` -> #a Psychonaut 4 -searches for the artist "Psychonaut 4" +> #a +searches for the artist -> #a Crystal F #r das Leben dannach -searches for the release (album) "das Leben dannach" by the artist "Crystal F" +> #a #r +searches for the release (album) by the artist -> #r Death Pierce Me #t sterile nails and thunderbowels -searches for the track "sterile nails and thunderbowels" from the release "Death Pierce Me" +> #r Me #t +searches for the track from the release ``` After searching with this syntax it prompts you with multiple results. You can either choose one of those by inputing its id `int` or you can search for a new query. diff --git a/src/music_kraken/__init__.py b/src/music_kraken/__init__.py index 0bb0d0c..2b04c80 100644 --- a/src/music_kraken/__init__.py +++ b/src/music_kraken/__init__.py @@ -6,21 +6,16 @@ from .utils.shared import ( MUSIC_DIR, NOT_A_GENRE ) - from .metadata import ( metadata_search, metadata_fetch ) - from .target import set_target - from .audio_source import ( fetch_source, fetch_audio ) - from .lyrics import lyrics -from .database.database import Database logging.getLogger("musicbrainzngs").setLevel(logging.WARNING)