search lyrics on musixmatch.com


Install
pip install LyricsPy==1.2.0

Documentation

LyricsPy
A library to search for music lyrics.

Installation:

LyricsPy can be installed using pip from PyPI or from GitHub

via PyPI using pip:

pip install -U lyricspy

via GitHub using pip+git:

pip install -U git+https://github.com/AmanoTeam/LyricsPy

Usage:

To use LyricsPY is easy, but let's see some examples:

First example:

import lyricspy

search = lyricspy.auto("Hello")[0]

# Print author name
print(search["autor"])

# Print music title
print(search["musica"])

# Print music lyrics
print(search["letra"])