Skip to content

🎵 A Python package which returns song_path after matching given query with all existing songs in music_dir

License

Notifications You must be signed in to change notification settings

prdpx7/musicquery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

musicquery

A Python package which returns song_path after matching given query with all existing songs in music_dir

Build Status MITlicensed PyPI version

Installation

pip install musicquery

Usage

>>> from musicquery import MusicQuery
>>> obj = MusicQuery(music_dir='~/Music', artist='weeknd')
>>> # when there are more than one song in `all_song_path_list` then it will select a random `song_path`
>>> obj.__dict__
  {'all_song_path_list': [
          '/home/prdpx7/Music/05 Rockin_.mp3',
          '/home/prdpx7/Music/15 Nothing Without You.mp3',
          '/home/prdpx7/Music/08 Stargirl Interlude (feat. Lana De.mp3',
          '/home/prdpx7/Music/07 True Colors.mp3',
          '/home/prdpx7/Music/13 Attention.mp3',
          '/home/prdpx7/Music/18 I Feel It Coming (feat. Daft Punk.mp3',
          .........
          ],
    'artist': u'The Weeknd',
    'error': None,
    'genre': u'R&B/Soul',
    'music_dir': '/home/prdpx7/Music/',
    'song_path': '/home/prdpx7/Music/03 False Alarm.mp3',
    'status': 'ok',
    'title': u'False Alarm'
    }
>>> obj = MusicQuery(music_dir='~/Music/', title='Fire')
>>> obj.__dict__
  {'all_song_path_list': [
          '/home/prdpx7/Music/Loyd Banks - On Fire.mp3',
          '/home/prdpx7/Music/Lil Wayne - Fireman.mp3',
          '/home/prdpx7/Music/22 P!NK - Just Like Fire (From Alice.m4a',
          '/home/prdpx7/Music/03-eminem-on_fire.mp3'
          ],
     'artist': u'Lil Wayne',
     'error': None,
     'genre': 'Rap',
     'music_dir': '/home/prdpx7/Music/',
     'song_path': '/home/prdpx7/Music/Lil Wayne - Fireman.mp3',
     'status': 'ok',
     'title': u'Fireman'
  }

Demo

GithubSnap

About

🎵 A Python package which returns song_path after matching given query with all existing songs in music_dir

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages