A simple python command line utility using the Vagalume API to search and show songs lyrics.
Via pip
$ pip install pygalume
Clone this project and install via setup.py
$ git clone git@github.com:dunderlabs/pygalume.git
$ cd pygalume/
$ python setup.py install
Here you can see pygalume in action. How to get a lyric from your favorite artist?
Pygalume works offline for those lyrics you had already searched for.
Note: if the artist's name or music have more than one word, wrap it with double quotes.
$ pygalume -a Sia -m "Bird set free"
How to print lyrics side by side?
$ pygalume -a Sia -m "Bird set free" -p
How to get the discography?
$ pygalume -a Sia -d
How to get songs name from an album?
$ pygalume -a Sia --al "This Is Acting"
How to list all songs in cache?
$ pygalume --lc # or
$ pygalume --list-cache
How to clear all songs in cache?
$ pygalume --cc # or
$ pygalume --clear-cache
Running unit tests:
$ python setup.py test