There are a lot of useful tools for python reporting.

My problem is simple, I want to make report from pytables data. I get these data by making some query and using numpy functions. Reporting tool must read these data and generate report (HTML, PDF) with charts, tables etc. Also must provide professional looking. Reports would be generated programmatically from python scripts. The size of datasets from pytables could be very large.

I'm looking for free and fast as possible tool or combination of tools for my problem? Which tool is most suitable for getting report as I described above. Thanks for advice

link|improve this question
2  
If you don't define "best", we can't really help. What criteria are you using for "best"? Fastest? Cheapest? Most compatible with Oracle? – S.Lott Feb 1 at 12:34
Free and fast is the main criteria – Nikola Stevanovic Feb 1 at 12:57
PLease update the question to clarify, precisely what you think is important. Please remove undefined terms like "best" and insert the criteria that are important to you. – S.Lott Feb 1 at 13:02
feedback

closed as not constructive by Wooble, Mikko Ohtamaa, larsmans, Gilles, Abizern Feb 1 at 14:42

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

I can think of two alternatives that may suit your needs:

  • ReportLab Toolkit is a python tool to generate PDF files. This will not help create HTML documents, but perhaps you can find a PDF to HTML converter for that?

  • LaTeX is a typesetting language (there's a nice windows package here). You'd need to learn basic LaTeX syntax and create some class that outputs latex code and runs the LaTeX binary when the document is complete. It can include tables and figures, and for the graphs you can use matplotlib. I've used this method several times. Again, it does not create HTML, but there are lots of tools for generating HTML from LaTeX code.

link|improve this answer
feedback

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