started refactoring of the song object to be indipendent from the database
This commit is contained in:
parent
5598af5cee
commit
8b9e62cc8a
@ -13,6 +13,27 @@ from .target import Target
|
|||||||
|
|
||||||
class Song:
|
class Song:
|
||||||
def __init__(self, json_response: dict) -> None:
|
def __init__(self, json_response: dict) -> None:
|
||||||
|
"""
|
||||||
|
id: is not NECESARRILY the musicbrainz id, but is DISTINCT for every song
|
||||||
|
mb_id: is the musicbrainz_id
|
||||||
|
target: Each Song can have exactly one target which can be either full or empty
|
||||||
|
lyrics: There can be multiple lyrics. Each Lyrics object can me added to multiple lyrics
|
||||||
|
"""
|
||||||
|
# attributes
|
||||||
|
self.id: str | None = None
|
||||||
|
self.mb_id: str | None = None
|
||||||
|
self.title: str | None = None
|
||||||
|
self.isrc: str | None = None
|
||||||
|
self.length: int | None = None
|
||||||
|
|
||||||
|
self.metadata: Metadata = Metadata()
|
||||||
|
# joins
|
||||||
|
self.artists: List[Artist] = []
|
||||||
|
self.lyrics: LyricsContainer = LyricsContainer(parent=self)
|
||||||
|
|
||||||
|
self.sources: List[Source] = []
|
||||||
|
self.target: Target = Target()
|
||||||
|
|
||||||
self.json_data = json_response
|
self.json_data = json_response
|
||||||
|
|
||||||
# initialize the data
|
# initialize the data
|
||||||
|
Loading…
Reference in New Issue
Block a user