Quick Start

Good to know: Some sources need a custom setting to make the website authentication before performing Enma operations.

Installing

# Install via pip
pip install --upgrade enma

Fetching Manga

To successfully fetch your first manga you must have the manga id, you can get this information accessing the source website or using enma to make a searching before the fetching.

from enma import Enma

enma = Enma()

enma.source_manager.set_source('manganato')
doujin = enma.get(identifier='manga-kb951984')

Last updated