Aleksandar Erkalović
Aleksandar Erkalović
Can you explain this more? Pages which are inside of the EPUB file but are not listed in Table of Contents or you were thinking about something else?
What ebook reader or application you are using to read? I assume this might be connected more with app/reader than the library. I have no idea how is book created...
Correct, this is a bug. As I recall it correctly the issue was (in my project) that some things would end up multiple times in . They were parsed and...
Hey @andyroberts! No, it is being maintained and I use it in pretty big project myself. Will check these things over the weekend, my mind is at the moment occupied...
Well spotted but we can't really hard code English text inside. The option would be to do something like: ``` class EpubWriter(object): DEFAULT_OPTIONS = { 'nav_title': None, ... } epub.write_epub('test.epub',...
That version has not been released yet. You can install the master branch from the GitHub until it gets released: `pip install git+https://github.com/aerkalov/ebooklib`
Yes, something with encoding and Python 3. It has been fixed in the master branch in the repository, but "official" release has not been done and I did not uploaded...
@mark-saad is it downloading Ebooklib-0.15 or Ebooklib-0.16 for you? 0.16 should have this issue fixed because README file is not utf-8 anymore.
@mark-saad try "pip install --no-cache-dir ebooklib==0.16". Maybe pip has cached 0.15 version and does not want to download new one.
I will just copy paste what I answered on stackoverflow. The only proper way to do it with Ebooklib is to read EPUB file and construct new EPUB from scratch...