Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History
97 lines (53 loc) · 1.56 KB

README.rst

File metadata and controls

97 lines (53 loc) · 1.56 KB

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

Development

Running unit tests:

$ python setup.py test