Get
# Example to retrieve a specific manga by its ID with symbolic links to chapters
manga_id = "12345"
manga = enma.get(identifier=manga_id, with_symbolic_links=True)
if manga:
print(f"Manga Title: {manga.title.english}")
else:
print("Manga not found.")Last updated