initial commit

This commit is contained in:
2025-04-24 18:40:03 +02:00
commit 88cc93fd50
19 changed files with 529 additions and 0 deletions

10
tests/test_manga.py Normal file
View File

@@ -0,0 +1,10 @@
import pytest
from anilistapi.schemas.manga import Manga
from anilistapi.api import AnilistAPI
def test_search_manga():
api = AnilistAPI()
manga = api.search_manga("Berserk")
assert manga[0].title.english == "Berserk"