Author Page
Fetches manga authored by a specific individual, useful for fans of particular authors.
Parameters:
author: Name or identifier of the author.page: Page number of results to retrieve.
Returns: An
AuthorPageobject containing a list of manga by the specified author.Raises:
SourceWasNotDefinedif no source has been set before calling this method.NotImplementedErrorif the current source does not support fetching an author's 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
Was this helpful?