I'm hacking a quick and dirty python script to generate some reports as static html files.
What would be a good module to easily build static html files outside the context of a web application?
My goals are simplicity (the HTML will not be very complex) and ease of use (I don't want to write a lot of code just to output some html tags).
I found two alternatives on my first goolge search:
- markup.py - http://markup.sourceforge.net/
- HTML.py - http://www.decalage.info/en/python/html
Also, I feel that using a templating engine would be over-kill, but if you differ please say it and why.
Any other recommendation?