vote up 4 vote down star
2

I have figured out how to extract the information I need from a PDF file using PDFMiner in Python, and now I need to write out a modified version of the document with only the information that's needed as an HTML file. The new version will be archived online to a repository, and a printed copy shipped with the unit.

What is the best way to write this document (a header, a logo, and a table with parameters and pass/fail limits) from Python?

HTMLGen?

Or is there a better, newer Python package?

I can write my own package to write HTML, but surely someone else has done this already.

flag

63% accept rate

7 Answers

vote up 6 vote down check

Jinja2 is nice too.

link|flag
Interestingly I prefer to use Jinja2 for templating, but I answered Genshi for this question. Why? because Genshi actually has HTML "generation" Jinja2 doesn't, it's just a (very very good) templating library. – Ali A Feb 7 at 11:56
vote up 4 vote down

Genshi is perfect for these things.

link|flag
vote up 1 vote down

Also Cheetah and Clearsilver... I bet if you looked around you could find hundreds of possibilities. Dynamic websites are a Very Big Thing these days and they all need some sort of templating system, so plenty have been developed. Try a Google search for something like "Python templating" to find more. (First hit: http://wiki.python.org/moin/Templating)

link|flag
vote up 1 vote down

In the past I've had a lot of luck with SimpleTAL (a stand-alone version of zope's Page Template Library)

Today, I'd use Django's templates (which can be used stand-alone) because I love some of the markups like {% ifchanged %} {% nospace %} {% firstof %} etc...

link|flag
I'm working on a project and decided to use Jinja for the templating instead of Django's templates just to try it out... All of the sweet predefined filters/tags are what I miss most. Although I have to admit that Jinja's lipsum() function is really handy. – Steve Losh Feb 6 at 20:56
vote up 1 vote down

Don't forget Mako.

link|flag
vote up 2 vote down

Mako = Blazing Fast. Can do a lot. You need to spend time on it.

Genshi = A better Kid. XML based. Sucks at generating non html/xml.

Jinja2 = Django Templates with some other beauties.

pyTenjin = Little know but you might like it.

link|flag
vote up 0 vote down

If the HTML you want to generate is exceedingly dynamic you might not be able to write an elegant template for it, so things like HTMLGen or pyhtmloo could be the way to go.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.