Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/AmanoTeam/LyricsPy

Python library for searching lyrics on Musixmatch, Genius and letras.mus.br.
https://github.com/AmanoTeam/LyricsPy

genius lyrics lyrics-fetcher music musixmatch python python-library python3

Last synced: 4 months ago
JSON representation

Python library for searching lyrics on Musixmatch, Genius and letras.mus.br.

Lists

README

        


LyricsPy
A library to search for music lyrics.

## Installation

LyricsPy can be installed using pip from PyPI or from GitHub

#### via PyPI using pip

```bash
pip install -U lyricspy
```

#### via GitHub using pip+git

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

## Usage

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

### Musixmatch example

```python
from lyricspy import Musixmatch
from json import dump

search = Musixmatch("Musixmatch key").auto("Hello",lang="pt" , limit=1)

with open("lyrics.json", "w") as f:
dump(search, f)
```