Add book scrobbling

This commit is contained in:
2023-02-19 22:19:01 -05:00
parent f4a444354d
commit 6ef8238442
16 changed files with 729 additions and 125 deletions

View File

@ -1,5 +1,5 @@
import re
import logging
import re
from scrobbles.musicbrainz import (
lookup_album_dict_from_mb,
@ -9,7 +9,7 @@ from scrobbles.musicbrainz import (
logger = logging.getLogger(__name__)
from music.models import Artist, Album, Track
from music.models import Album, Artist, Track
def get_or_create_artist(name: str, mbid: str = None) -> Artist: