Add lib
This commit is contained in:
44
lib/ShazamIO/shazamio/factory_misc.py
Normal file
44
lib/ShazamIO/shazamio/factory_misc.py
Normal file
@@ -0,0 +1,44 @@
|
||||
from dataclass_factory import Factory
|
||||
|
||||
from shazamio.factory import FactorySchemas
|
||||
from shazamio.schemas.artists import ArtistInfo
|
||||
from shazamio.schemas.artists import ArtistV3
|
||||
from shazamio.schemas.attributes import ArtistAttribute
|
||||
from shazamio.schemas.models import (
|
||||
SongSection,
|
||||
VideoSection,
|
||||
RelatedSection,
|
||||
LyricsSection,
|
||||
BeaconDataLyricsSection,
|
||||
ArtistSection,
|
||||
MatchModel,
|
||||
)
|
||||
from shazamio.schemas.models import TrackInfo
|
||||
from shazamio.schemas.models import YoutubeData
|
||||
from shazamio.schemas.models import ResponseTrack
|
||||
|
||||
|
||||
FACTORY_TRACK = Factory(
|
||||
schemas={
|
||||
TrackInfo: FactorySchemas.FACTORY_TRACK_SCHEMA,
|
||||
SongSection: FactorySchemas.FACTORY_SONG_SECTION_SCHEMA,
|
||||
VideoSection: FactorySchemas.FACTORY_VIDEO_SECTION_SCHEMA,
|
||||
LyricsSection: FactorySchemas.FACTORY_LYRICS_SECTION,
|
||||
BeaconDataLyricsSection: FactorySchemas.FACTORY_BEACON_DATA_LYRICS_SECTION,
|
||||
ArtistSection: FactorySchemas.FACTORY_ARTIST_SECTION,
|
||||
MatchModel: FactorySchemas.FACTORY_MATCH,
|
||||
RelatedSection: FactorySchemas.FACTORY_RELATED_SECTION_SCHEMA,
|
||||
YoutubeData: FactorySchemas.FACTORY_YOUTUBE_TRACK_SCHEMA,
|
||||
ResponseTrack: FactorySchemas.FACTORY_RESPONSE_TRACK_SCHEMA,
|
||||
},
|
||||
debug_path=True,
|
||||
)
|
||||
|
||||
FACTORY_ARTIST = Factory(
|
||||
schemas={
|
||||
ArtistAttribute: FactorySchemas.FACTORY_ATTRIBUTES_ARTIST,
|
||||
ArtistV3: FactorySchemas.FACTORY_ARTIST_V2,
|
||||
ArtistInfo: FactorySchemas.FACTORY_ARTIST_SCHEMA,
|
||||
},
|
||||
debug_path=True,
|
||||
)
|
||||
Reference in New Issue
Block a user