easyepub

Library for easier translating book pages in png.


Keywords
epub, html-to-image
License
MIT
Install
pip install easyepub==0.0.8

Documentation

EasyEpub

Library for easier translating book pages in png.

Installation:

Download library using pip
$ pip3 install easyepub

Usage example:

Import the library
from easyepub import EasyEpub

easy = EasyEpub("path-to-book/book.epub")
Retrieving book metadata
for meta in easy.meta:
    print(meta)
Retrieving book cover
easy.get_cover("path-to-directory/cover.png")
Retrieving book chapters
easy.get_content("path-to-directory")

🤝 Contributing

Feel free to contribute.