Invoice Generator

from pathlib import Path html = r””” Invoice Generator

Invoice Generator

DescriptionQtyPriceTotal
Subtotal: 0.00
Grand Total: 0.00
“”” path = “/mnt/data/invoice-generator-tool.html” Path(path).write_text(html, encoding=”utf-8″) print(path)