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 AuthorPage object containing a list of manga by the specified author.

  • Raises:

    • SourceWasNotDefined if no source has been set before calling this method.

    • NotImplementedError if 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