Add first pass at AudioDB fetching

This commit is contained in:
2023-02-26 23:26:51 -05:00
parent 457afdc9ef
commit a0101bf1ae
6 changed files with 107 additions and 7 deletions

View File

@ -36,7 +36,7 @@ def get_or_create_artist(name: str, mbid: str = None) -> Artist:
logger.debug(
f"Created artist {artist.name} ({artist.musicbrainz_id}) "
)
# TODO Enrich artist with MB data
artist.fix_metadata()
return artist