Skip to content

Cover Art

CoverArt(subsonic, id)

Bases: Model

Object that holds all the info of a cover art.

Attributes:

Name Type Description
id str

The ID of the cover art.

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

    self.id: str = id