from dataclasses import dataclass @dataclass class Song: mbid: str title: str artist: str tags: list[str] image_id: str youtube_id: str