mirror of https://github.com/Nezreka/SoulSync.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.2 KiB
106 lines
3.2 KiB
"""Metadata package public surface."""
|
|
|
|
from core.metadata.album_tracks import (
|
|
get_album_for_source,
|
|
get_album_tracks_for_source,
|
|
get_artist_album_tracks,
|
|
get_artist_albums_for_source,
|
|
resolve_album_reference,
|
|
)
|
|
from core.metadata.artist_image import get_artist_image_url
|
|
from core.metadata.artwork import is_internal_image_host, normalize_image_url
|
|
from core.metadata.cache import MetadataCache, get_metadata_cache
|
|
from core.metadata.completion import (
|
|
check_album_completion,
|
|
check_artist_discography_completion,
|
|
check_single_completion,
|
|
iter_artist_discography_completion_events,
|
|
)
|
|
from core.metadata.discography import (
|
|
get_artist_detail_discography,
|
|
get_artist_discography,
|
|
)
|
|
from core.metadata.lookup import MetadataLookupOptions
|
|
from core.metadata.registry import (
|
|
METADATA_SOURCE_PRIORITY,
|
|
clear_cached_metadata_client,
|
|
clear_cached_metadata_clients,
|
|
clear_cached_profile_spotify_client,
|
|
get_client_for_source,
|
|
get_deezer_client,
|
|
get_discogs_client,
|
|
get_hydrabase_client,
|
|
get_itunes_client,
|
|
get_musicbrainz_client,
|
|
get_primary_client,
|
|
get_primary_source,
|
|
get_spotify_client_for_profile,
|
|
get_registered_runtime_client,
|
|
get_source_priority,
|
|
get_spotify_client,
|
|
is_hydrabase_enabled,
|
|
register_profile_spotify_credentials_provider,
|
|
register_runtime_clients,
|
|
)
|
|
from core.metadata.status import (
|
|
METADATA_SOURCE_STATUS_TTL,
|
|
get_metadata_source_status,
|
|
get_spotify_status,
|
|
get_status_snapshot,
|
|
invalidate_metadata_status_caches,
|
|
)
|
|
from core.metadata.service import MetadataProvider, MetadataService, get_metadata_service
|
|
from core.metadata.similar_artists import (
|
|
get_musicmap_similar_artists,
|
|
iter_musicmap_similar_artist_events,
|
|
)
|
|
|
|
__all__ = [
|
|
"METADATA_SOURCE_PRIORITY",
|
|
"METADATA_SOURCE_STATUS_TTL",
|
|
"MetadataCache",
|
|
"MetadataLookupOptions",
|
|
"MetadataProvider",
|
|
"MetadataService",
|
|
"check_album_completion",
|
|
"check_artist_discography_completion",
|
|
"check_single_completion",
|
|
"clear_cached_metadata_client",
|
|
"clear_cached_metadata_clients",
|
|
"clear_cached_profile_spotify_client",
|
|
"get_album_for_source",
|
|
"get_album_tracks_for_source",
|
|
"get_artist_album_tracks",
|
|
"get_artist_albums_for_source",
|
|
"get_artist_detail_discography",
|
|
"get_artist_discography",
|
|
"get_artist_image_url",
|
|
"get_client_for_source",
|
|
"get_deezer_client",
|
|
"get_discogs_client",
|
|
"get_hydrabase_client",
|
|
"get_itunes_client",
|
|
"get_metadata_cache",
|
|
"get_metadata_source_status",
|
|
"get_metadata_service",
|
|
"get_musicbrainz_client",
|
|
"get_musicmap_similar_artists",
|
|
"get_primary_client",
|
|
"get_primary_source",
|
|
"get_spotify_client_for_profile",
|
|
"get_registered_runtime_client",
|
|
"get_spotify_client",
|
|
"get_spotify_status",
|
|
"get_source_priority",
|
|
"get_status_snapshot",
|
|
"iter_artist_discography_completion_events",
|
|
"iter_musicmap_similar_artist_events",
|
|
"is_hydrabase_enabled",
|
|
"is_internal_image_host",
|
|
"register_profile_spotify_credentials_provider",
|
|
"register_runtime_clients",
|
|
"normalize_image_url",
|
|
"resolve_album_reference",
|
|
"invalidate_metadata_status_caches",
|
|
]
|