Slide 18
Slide 18 text
import epub
book = epub.open('lemons_grenades.epub', 'w')
filename = u'secret/lemons_grenade_spec1.xhtml'
item = epub.opf.ManifestItem('Id001', 'spec1.xhtml'
'application/xhtml+xml')
book.add_item(filename, item)
book.opf.metadata.add_title('Lemons grenades', 'en')
Book.opf.metadata.add_creator('Cave Johnson',
file_as='Johnson Cave')
book.close()
Exemple