added data fpr üages
This commit is contained in:
parent
35f3ed975f
commit
7ceb9bb5fe
0
src/donwload.py
Normal file
0
src/donwload.py
Normal file
0
src/music_kraken/pages/download_center/__init__.py
Normal file
0
src/music_kraken/pages/download_center/__init__.py
Normal file
14
src/music_kraken/pages/download_center/page_attributes.py
Normal file
14
src/music_kraken/pages/download_center/page_attributes.py
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
from typing import Set
|
||||||
|
|
||||||
|
from ..abstract import Page
|
||||||
|
from ..encyclopaedia_metallum import EncyclopaediaMetallum
|
||||||
|
from ..musify import Musify
|
||||||
|
|
||||||
|
ALL_PAGES: Set[Page] = {
|
||||||
|
EncyclopaediaMetallum,
|
||||||
|
Musify
|
||||||
|
}
|
||||||
|
|
||||||
|
AUDIO_PAGES: Set[Page] = {
|
||||||
|
Musify
|
||||||
|
}
|
9
src/music_kraken/pages/download_center/search.py
Normal file
9
src/music_kraken/pages/download_center/search.py
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
class Search:
|
||||||
|
def __init__(
|
||||||
|
query: str,
|
||||||
|
exclude_pages: set
|
||||||
|
) -> None:
|
||||||
|
pass
|
Loading…
Reference in New Issue
Block a user