Author Page
# Example to fetch manga authored by a specific author
author_name = "Oda Eiichiro"
try:
author_page = enma.author_page(author=author_name, page=1)
for manga in author_page.results:
print(f"Manga Title: {manga.title}")
except NotImplementedError:
print("Error: author functionality not supported.")Last updated