You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Clarify epub version support - specifically epub2 / version 2
* TODO notes in relation to title support
* implement title per chapter to ensure epub is valid - epubcheck ERROR(RSC-005)
* correct uuid support
* ensure correct unique id is declared ERROR(OPF-048) and ERROR(RSC-005)
* various missing html/xhml tag fixes ERROR(HTM-004
* ISO/ANSI dates (date only at the moment) ERROR(OPF-054)
* TODO note for dates, include timestamp
* use valid xml id/names for chapters ERROR(HTM-004)
* use consistent filenames for chapter that matches id
Allows EPUBCheck v5.1.0 to run clean with simple html chapter content.
Copy file name to clipboardExpand all lines: Readme.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Pypub #
2
2
3
-
Create epub's using python. Pypub is a python library to create epub files quickly without having to worry about the intricacies of the epub specification.
3
+
Create epub (version 2) files using python. Pypub is a python library to create epub files quickly without having to worry about the intricacies of the epub specification.
4
4
5
5
# Installation #
6
6
The current release of pypub is available through pip:
@@ -38,6 +38,9 @@ To use code from a source code checkout from git
def__init__(self, title, creator='', language='', rights='', publisher='', uid='', date=time.strftime("%Y-%m-%d")):# FIXME ISO date formated needed, include timestamp and TZ? For web server, check headers for last updated
c._replace_images_in_chapter(self.OEBPS_DIR)# FIXME if this is the correct place to do this, then title should also be injected too at this point (or at chapter creation time)
Copy file name to clipboardExpand all lines: setup.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,4 +16,6 @@
16
16
'requests==2.22.0',
17
17
],
18
18
description="Create epub's using python. Pypub is a python library to create epub files quickly without having to worry about the intricacies of the epub specification.",
0 commit comments