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