mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-27 05:03:41 -08:00
14 lines
284 B
Python
14 lines
284 B
Python
from .base_model import BaseScreenModel
|
|
from anixstream.libs.anilist import AniList
|
|
|
|
class AnimeScreenModel(BaseScreenModel):
|
|
"""the Anime screen model
|
|
"""
|
|
data = {}
|
|
anime_id = 0
|
|
|
|
def get_anime_data(self,id:int):
|
|
return AniList.get_anime(id)
|
|
|
|
|