Pygalume is a simple Python CLI to get lyrics


Keywords
pygalume, cli, lyrics, shell, vagalume, music, song
License
MIT
Install
pip install Pygalume==0.2.5

Documentation

Stories in Ready

pygalume

A simple python command line utility using the Vagalume API to search and show songs lyrics.

Usage

Installing

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

Usage example

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 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

Development

Running unit tests:

$ python setup test