ebooklib icon indicating copy to clipboard operation
ebooklib copied to clipboard

Python E-book library for handling books in EPUB2/EPUB3 format -

Results 128 ebooklib issues
Sort by recently updated
recently updated
newest added

Hi, I am testing ebooklib on Python 3.7 on Windows with the given example from the github landing page. Reading the created epub file gives an error in Edge/Firefox and...

This can be reproduced on v0.17.1. For NAV document with the following content: (Per the EPUB spec, this seems to be allowed. http://www.idpf.org/epub/301/spec/epub-contentdocs.html#sec-xhtml-nav-def-model) ``` Section 1 Section 2 ... ```...

This can be reproduced on v0.17.1. When parsing the NAV, the current implementation assumes the `href` attribute always exists in the `a` element. ``` def _parse_nav(self, data, base_path, navtype='toc'): ......

Hi, First, I would like to thanks for this awesome lib. Here is a low priority small bug I experienced while playing with this lib. When I called epub.EpubHtml(title="something) WITHOUT...

By default, [`ZipFile`](https://docs.python.org/3/library/zipfile.html) writes files with a permission of `600` and directories with `775`. This PR changes the file permissions to `644`. A `600` file permission may cause issues with...

I am trying to read an ebook which has `` tag missing in content.opf file and as a result, `read_epub()` function fails. Is there a way to make it more...

I would say we are more than ready for 1.0. First commit was done 4 May 2013 and that is like 5 years by now. Ever since it was created...

enhancement

We are able to define language attribute on the book and each chapter but we should be able to define direction attribute also. Direction can be defined with CSS but...

enhancement

Hi there, I'm using the current stable release (0.16) so I'm not sure if this has changed since then, but at the moment it'll fail the validator, with at least...

Are page maps implemented? How can I access them? If not it could be a useful improvement.