renamed app to anixstream

This commit is contained in:
Benex254
2024-08-05 09:46:54 +03:00
parent fd9b6ce73f
commit 4a5c82bd08
126 changed files with 47 additions and 57 deletions

View File

@@ -0,0 +1,13 @@
from Model.base_model import BaseScreenModel
from 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)