Ebook library which can handle EPUB2/EPUB3 and Kindle format
Project description
about ebooklib.changyy
Please use ebooklib first - https://github.com/aerkalov/ebooklib:
$ pip install ebooklib
Here is https://github.com/changyy/ebooklib, used for preliminary testing of ebooklib. All experiments will contribute back to https://github.com/aerkalov/ebooklib.
Current tasks for the project include:
- 2023-12-17 -
In some HTML elements, attribute names need to be case-sensitive to take effect, for example, the viewBox attribute within the <svg> element.
About EbookLib
EbookLib is a Python library for managing EPUB2/EPUB3 and Kindle files. It's capable of reading and writing EPUB files programmatically (Kindle support is under development).
The API is designed to be as simple as possible, while at the same time making complex things possible too. It has support for covers, table of contents, spine, guide, metadata and etc.
EbookLib is used in Booktype <https://github.com/sourcefabric/Booktype/>
_ from Sourcefabric, as well as sprits-it! <https://github.com/the-happy-hippo/sprits-it>
, fanfiction2ebook <https://github.com/ltouroumov/fanfiction2ebook>
, viserlalune <https://github.com/vjousse/viserlalune>
_ and Telemeta <https://github.com/Parisson/Telemeta>
_.
Packages of EbookLib for GNU/Linux are available in Debian <https://packages.debian.org/python-ebooklib>
_ and Ubuntu <http://packages.ubuntu.com/python-ebooklib>
_.
Sphinx documentation is generated from the templates in the docs/ directory and made available at http://ebooklib.readthedocs.io
Usage
Reading
import ebooklib
from ebooklib import epub
book = epub.read_epub('test.epub')
for image in book.get_items_of_type(ebooklib.ITEM_IMAGE):
print(image)
Writing
from ebooklib import epub
book = epub.EpubBook()
# set metadata
book.set_identifier("id123456")
book.set_title("Sample book")
book.set_language("en")
book.add_author("Author Authorowski")
book.add_author(
"Danko Bananko",
file_as="Gospodin Danko Bananko",
role="ill",
uid="coauthor",
)
# create chapter
c1 = epub.EpubHtml(title="Intro", file_name="chap_01.xhtml", lang="hr")
c1.content = (
"<h1>Intro heading</h1>"
"<p>Zaba je skocila u baru.</p>"
'<p><img alt="[ebook logo]" src="static/ebooklib.gif"/><br/></p>'
)
# create image from the local image
image_content = open("ebooklib.gif", "rb").read()
img = epub.EpubImage(
uid="image_1",
file_name="static/ebooklib.gif",
media_type="image/gif",
content=image_content,
)
# add chapter
book.add_item(c1)
# add image
book.add_item(img)
# define Table Of Contents
book.toc = (
epub.Link("chap_01.xhtml", "Introduction", "intro"),
(epub.Section("Simple book"), (c1,)),
)
# add default NCX and Nav file
book.add_item(epub.EpubNcx())
book.add_item(epub.EpubNav())
# define CSS style
style = "BODY {color: white;}"
nav_css = epub.EpubItem(
uid="style_nav",
file_name="style/nav.css",
media_type="text/css",
content=style,
)
# add CSS file
book.add_item(nav_css)
# basic spine
book.spine = ["nav", c1]
# write to the file
epub.write_epub("test.epub", book, {})
License
EbookLib is licensed under the AGPL license <LICENSE.txt>
_.
Authors
Full list of authors is in AUTHORS.txt <AUTHORS.txt>
_ file.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for EbookLib.changyy-0.18.2023.1219.21.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9e7db3443f24b28194c089305edf863dd5dc73ef24d346029270370c208dc12 |
|
MD5 | 25c883937301597927d3f1a896ce406c |
|
BLAKE2b-256 | 55a84bc133717feaa7438dcbf24892613edec453271b16bcddaa88d461ede46e |
Hashes for EbookLib.changyy-0.18.2023.1219.21-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d568475ccc95cab2b7b10e9e1d641aba78dee8adb1a11498a72d2aa7a43b9dd2 |
|
MD5 | 35fe69d7b7563151badabccc5a3e8cbf |
|
BLAKE2b-256 | 96740dfc590547a3322b823c81deb6ea50db9ce5c9363544fcd434b7ed1d3cc9 |