enunm
This commit is contained in:
parent
54e24df0d1
commit
ea66618a54
@ -1,6 +1,7 @@
|
||||
import music_kraken
|
||||
from music_kraken import pages
|
||||
from music_kraken.objects import Song, Target, Source, SourcePages, Album
|
||||
from music_kraken.utils.enums.source import SourcePages
|
||||
from music_kraken.objects import Song, Target, Source, Album
|
||||
|
||||
|
||||
def search_pages():
|
||||
|
@ -16,8 +16,6 @@ ID3Mapping = metadata.Mapping
|
||||
ID3Timestamp = metadata.ID3Timestamp
|
||||
|
||||
Source = source.Source
|
||||
SourceTypes = source.SourceTypes
|
||||
SourcePages = source.SourcePages
|
||||
|
||||
Song = song.Song
|
||||
Artist = song.Artist
|
||||
|
@ -16,11 +16,11 @@ from ..objects import (
|
||||
Target,
|
||||
DatabaseObject,
|
||||
Options,
|
||||
SourcePages,
|
||||
Collection,
|
||||
Label,
|
||||
AlbumType
|
||||
)
|
||||
from ..utils.enums.source import SourcePages
|
||||
from ..audio import write_metadata_to_target, correct_codec
|
||||
from ..utils import shared
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
from typing import Tuple, Type, Dict
|
||||
|
||||
from ...objects import SourcePages
|
||||
from ...utils.enums.source import SourcePages
|
||||
from ..abstract import Page
|
||||
from ..encyclopaedia_metallum import EncyclopaediaMetallum
|
||||
from ..musify import Musify
|
||||
|
@ -8,11 +8,11 @@ from urllib.parse import urlparse
|
||||
from ..utils.shared import ENCYCLOPAEDIA_METALLUM_LOGGER, proxies
|
||||
from ..utils import string_processing
|
||||
from .abstract import Page
|
||||
from ..utils.enums.source import SourcePages
|
||||
from ..objects import (
|
||||
Lyrics,
|
||||
Artist,
|
||||
Source,
|
||||
SourcePages,
|
||||
Song,
|
||||
Album,
|
||||
ID3Timestamp,
|
||||
|
@ -9,10 +9,10 @@ import requests
|
||||
from bs4 import BeautifulSoup
|
||||
|
||||
from .abstract import Page
|
||||
from ..utils.enums.source import SourcePages
|
||||
from ..objects import (
|
||||
Artist,
|
||||
Source,
|
||||
SourcePages,
|
||||
Song,
|
||||
Album,
|
||||
ID3Timestamp,
|
||||
|
Loading…
Reference in New Issue
Block a user