music-kraken-core/music_kraken/objects/__init__.py

28 lines
494 B
Python
Raw Normal View History

2023-12-19 21:11:46 +00:00
from typing_extensions import TypeVar
2023-05-23 11:59:24 +00:00
from .option import Options
2023-01-09 13:56:15 +00:00
2023-05-24 08:12:03 +00:00
from .metadata import Metadata, Mapping as ID3Mapping, ID3Timestamp
2023-01-17 17:07:06 +00:00
2024-05-14 13:18:17 +00:00
from .source import Source, SourceType
2022-12-07 14:51:38 +00:00
2023-05-24 08:12:03 +00:00
from .song import (
Song,
Album,
Artist,
Target,
Lyrics,
Label
)
2023-03-13 13:39:46 +00:00
2023-05-24 08:12:03 +00:00
from .formatted_text import FormattedText
from .collection import Collection
2023-06-19 12:32:32 +00:00
from .country import Country
from .contact import Contact
2023-12-19 21:11:46 +00:00
2023-12-29 14:43:33 +00:00
from .parents import OuterProxy
2024-04-10 16:18:52 +00:00
from .artwork import Artwork
DatabaseObject = OuterProxy