added data fpr üages

This commit is contained in:
Hellow2 2023-03-28 12:50:23 +02:00
parent 35f3ed975f
commit 7ceb9bb5fe
4 changed files with 23 additions and 0 deletions

0
src/donwload.py Normal file
View File

View 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
}

View File

@ -0,0 +1,9 @@
class Search:
def __init__(
query: str,
exclude_pages: set
) -> None:
pass