File: create.py

package info (click to toggle)
python-ebooklib 0.20-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 708 kB
  • sloc: python: 2,541; makefile: 132; sh: 53
file content (91 lines) | stat: -rw-r--r-- 2,217 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# coding=utf-8  # noqa: UP009

from ebooklib import epub

if __name__ == "__main__":
    book = epub.EpubBook()

    # add metadata
    book.set_identifier("sample123456")
    book.set_title("Sample book")
    book.set_language("en")

    book.add_author("Aleksandar Erkalovic")

    # add cover image
    book.set_cover("image.jpg", open("cover.jpg", "rb").read())

    # intro chapter
    c1 = epub.EpubHtml(title="Introduction", file_name="intro.xhtml", lang="hr")
    c1.content = (
        """<html><head></head><body><h1>Introduction</h1>"""
        """<p>Introduction paragraph where i explain what is """
        """happening.</p></body></html>"""
    )

    # about chapter
    c2 = epub.EpubHtml(title="About this book", file_name="about.xhtml")
    c2.content = (
        """<h1>About this book</h1>"""
        """<p>Helou, this is my book! There are many books, but this one is mine.</p>"""
        """<p><img src="image.jpg" alt="Cover Image"/></p>"""
    )

    # add chapters to the book
    book.add_item(c1)
    book.add_item(c2)

    # create table of contents
    # - add manual link
    # - add section
    # - add auto created links to chapters

    book.toc = (epub.Link("intro.xhtml", "Introduction", "intro"), (epub.Section("Languages"), (c1, c2)))

    # add navigation files
    book.add_item(epub.EpubNcx())
    book.add_item(epub.EpubNav())

    # define css style
    style = """
@namespace epub "http://www.idpf.org/2007/ops";

body {
    font-family: Cambria, Liberation Serif, Bitstream Vera Serif, Georgia, Times, Times New Roman, serif;
}

h2 {
     text-align: left;
     text-transform: uppercase;
     font-weight: 200;
}

ol {
        list-style-type: none;
}

ol > li:first-child {
        margin-top: 0.3em;
}


nav[epub|type~='toc'] > ol > li > ol  {
    list-style-type:square;
}


nav[epub|type~='toc'] > ol > li > ol > li {
        margin-top: 0.3em;
}

"""

    # add css file
    nav_css = epub.EpubItem(uid="style_nav", file_name="style/nav.css", media_type="text/css", content=style)
    book.add_item(nav_css)

    # create spin, add cover page as first page
    book.spine = ["cover", "nav", c1, c2]

    # create epub file
    epub.write_epub("test.epub", book, {})