$ pip3 install easyepub
from easyepub import EasyEpub
easy = EasyEpub("path-to-book/book.epub")
for meta in easy.meta:
print(meta)
easy.get_cover("path-to-directory/cover.png")
easy.get_content("path-to-directory")
$ pip3 install easyepub
from easyepub import EasyEpub
easy = EasyEpub("path-to-book/book.epub")
for meta in easy.meta:
print(meta)
easy.get_cover("path-to-directory/cover.png")
easy.get_content("path-to-directory")