Skip to content

Lyrics

Lyrics(subsonic, artist, title, value)

Bases: Model

Object that holds all the info about the lyrics of a song.

Attributes:

Name Type Description
artist_name str

The name of the artist of the song.

song_title str

The title of the song.

lyrics str

The lyrics text of the song.

Source code in .venv/lib/python3.11/site-packages/knuckles/models/_lyrics.py
def __init__(
    self, subsonic: "Subsonic", artist: str, title: str, value: str
) -> None:
    super().__init__(subsonic)

    self.artist_name = artist
    self.song_title = title
    self.lyrics = value