Paginate
Retrieves a specific page of manga listings, providing a way to navigate through manga entries in a paginated format.
Parameters:
page
: Page number of manga listings to retrieve.
Returns: A
Pagination
object containing the paginated list of manga thumbnails and pagination details.Raises:
SourceWasNotDefined
if no source has been set before calling this method.
# Example to retrieve a specific page of manga listings
page_number = 2
pagination = enma.paginate(page=page_number)
for manga in pagination.results:
print(f"Manga Title: {manga.title}")
Last updated
Was this helpful?