--- /dev/null
+#!.venv/bin/python
+
+import json
+import os
+
+# clean up working-directory
+for filename in os.listdir("../docs/epub"):
+ if filename[:4] == "item": os.remove("../docs/epub/" + filename)
+
+# generate item pages
+with open("../items.json", "r") as f:
+ items = json.loads(f.read())
+
+for (i, item) in enumerate(items):
+ with open(f"../docs/epub/item{i}.html", "w") as f:
+ f.write(f"""
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
+ "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
+ <html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <title>{item['code']}</title>
+ </head>
+ <body>
+ <h1>{item['code']}</h1>
+ <h2>{item['subtext']}</h2>
+ <p><b>Description:</b> {item['description']}</p>
+ <table>
+ <tr>
+ <th>Rating</th>
+ <td>{item['rating']}</td>
+ </tr>
+ <tr>
+ <th>Starting price</th>
+ <td>{item['origionalPrice']}</td>
+ </tr>
+ <tr>
+ <th>In stock</th>
+ <td>{item['stockCount']}</td>
+ </tr>
+ </table>
+ <h3>Anchor notes:</h3>
+ <p>{item['notes']}</p>
+ </body>
+ </html>
+ """)
+
+# update manifest
+manifest_items = " ".join([
+ f"<item id='item{i}' href='item{i}.html' media-type='application/xhtml+xml' />"
+ for i in range(len(items))
+ ])
+toc_items = " ".join([
+ f"<itemref idref='item{i}' />"
+ for i in range(len(items))
+ ])
+
+with open("../docs/epub/content.opf", "w") as f:
+ f.write(f"""
+<?xml version="1.0"?>
+
+<package xmlns="http://www.idpf.org/2007/opf" unique-identifier="dcidid"
+ version="2.0">
+
+<metadata xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:dcterms="http://purl.org/dc/terms/"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xmlns:opf="http://www.idpf.org/2007/opf">
+
+ <dc:title>XMDV Teleshopping item manifest</dc:title>
+ <dc:language xsi:type="dcterms:RFC3066">en</dc:language>
+ <dc:identifier id="dcidid" opf:scheme="URI">
+ http://data.ozva.co.uk/shopping/docs/item_manifest.epub
+ </dc:identifier>
+ <dc:subject>Teleshopping, Manifest</dc:subject>
+ <dc:description>Describing all items to be sold during the XMDV Teleshopping performance</dc:description>
+ <dc:creator>William Greenwood</dc:creator>
+ <dc:publisher>Goodnight Publishing</dc:publisher>
+ <dc:date xsi:type="dcterms:W3CDTF">2024-12-28</dc:date>
+ <dc:rights>Creative Commons BY-SA 3.0 License.</dc:rights>
+</metadata>
+
+<manifest>
+ <item id="ncx" href="toc.ncx"
+ media-type="application/x-dtbncx+xml" />
+ <item id="css" href="stylesheet.css"
+ media-type="text/css" />
+ <item id="title" href="title_page.html"
+ media-type="application/xhtml+xml" />
+ <item id="intro" href="info_page.html"
+ media-type="application/xhtml+xml" />
+ {manifest_items}
+</manifest>
+
+<spine toc="ncx">
+ <itemref idref="title" />
+ <itemref idref="intro" />
+ {toc_items}
+</spine>
+
+</package>
+""")
+
+toc_items = " ".join([
+ f"""
+<navPoint id="navPoint-{i+3}" playOrder="{i+3}">
+ <navLabel>
+ <text>{i+1}: {item["code"]}</text>
+ </navLabel>
+ <content src="item{i}.html"/>
+</navPoint>
+ """
+ for (i, item) in enumerate(items)
+ ])
+
+with open("../docs/epub/toc.ncx", "w") as f:
+ f.write(f"""
+<?xml version="1.0"?>
+<!DOCTYPE ncx PUBLIC "-//NISO//DTD ncx 2005-1//EN"
+ "http://www.daisy.org/z3986/2005/ncx-2005-1.dtd">
+
+<ncx xmlns="http://www.daisy.org/z3986/2005/ncx/" version="2005-1">
+
+<head>
+ <meta name="dtb:uid" content="http://data.ozva.co.uk/shopping/docs/item_manifest.epub"/>
+ <meta name="dtb:depth" content="2"/>
+ <meta name="dtb:totalPageCount" content="0"/>
+ <meta name="dtb:maxPageNumber" content="0"/>
+</head>
+
+<docTitle>
+ <text>XMDV Teleshopping item manifest</text>
+</docTitle>
+
+<navMap>
+ <navPoint id="navPoint-1" playOrder="1">
+ <navLabel>
+ <text>Title Page</text>
+ </navLabel>
+ <content src="title_page.html"/>
+ </navPoint>
+ <navPoint id="navPoint-2" playOrder="2">
+ <navLabel>
+ <text>Information</text>
+ </navLabel>
+ <content src="info_page.html"/>
+ </navPoint>
+ {toc_items}
+</navMap>
+
+</ncx>
+""")
+
+os.system("""
+ zip -X0 ../docs/item_manifest.epub ../docs/epub/mimetype &&
+ zip -Xur9D ../docs/item_manifest.epub ../docs/epub/* &&
+ ebook-convert ../docs/item_manifest.epub ../docs/item_manifest.mobi
+ """)
+