should be ready for a new build :)

This commit is contained in:
Lars Noack
2022-11-23 09:20:28 +01:00
parent 76181e619f
commit 590fc65c4c
5 changed files with 24 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: music-kraken
Version: 1.1.0
Version: 1.1.3
Summary: An extensive music downloader crawling the internet. It gets its metadata from a couple metadata provider, and it scrapes the audiofiles.
Home-page: https://github.com/HeIIow2/music-downloader
Author: Hellow2
@@ -38,14 +38,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 <any artist>
searches for the artist <any artist>
> #a Crystal F #r das Leben dannach
searches for the release (album) "das Leben dannach" by the artist "Crystal F"
> #a <any artist> #r <any releas>
searches for the release (album) <any release> by the artist <any 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 <any release> Me #t <any track>
searches for the track <any track> from the release <any relaese>
```
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.

View File

@@ -16,21 +16,23 @@ src/music_kraken/audio_source/fetch_source.py
src/music_kraken/audio_source/sources/__init__.py
src/music_kraken/audio_source/sources/local_files.py
src/music_kraken/audio_source/sources/musify.py
src/music_kraken/audio_source/sources/source.py
src/music_kraken/audio_source/sources/youtube.py
src/music_kraken/database/database.py
src/music_kraken/database/song.py
src/music_kraken/database/temp_database.py
src/music_kraken/lyrics/__init__.py
src/music_kraken/lyrics/genius.py
src/music_kraken/lyrics/lyrics.py
src/music_kraken/metadata/__init__.py
src/music_kraken/metadata/metadata_fetch.py
src/music_kraken/metadata/metadata_search.py
src/music_kraken/scraping/__init__.py
src/music_kraken/scraping/phonetic_compares.py
src/music_kraken/tagging/__init__.py
src/music_kraken/tagging/song.py
src/music_kraken/target/__init__.py
src/music_kraken/target/set_target.py
src/music_kraken/utils/__init__.py
src/music_kraken/utils/database.py
src/music_kraken/utils/functions.py
src/music_kraken/utils/object_handeling.py
src/music_kraken/utils/phonetic_compares.py
src/music_kraken/utils/shared.py