What is a good PDF report generator tool for python? - Stack Overflow most recent 30 from stackoverflow.com2009-11-09T02:58:21Zhttp://stackoverflow.com/feeds/question/177799http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python16What is a good PDF report generator tool for python?jlouis2008-10-07T09:50:39Z2008-10-28T20:01:41Z
<p>What is a good tool for PDF report generation in Python? I've checked out ReportLab, but it seems to be awfully low-level for what I want to do. My current hunch is to call TeX on the command-line and let it produce the PDF, but if there is something that is easier to work with (and looks professional - We'll send this to customers) I'd very much like a prod in the right direction.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/177817#1778172Answer by TheCowSaysMoo for What is a good PDF report generator tool for python?TheCowSaysMoo2008-10-07T09:58:32Z2008-10-07T09:58:32Z<p>I use <a href="http://pypi.python.org/pypi/pisa/3.0.27" rel="nofollow">pisa</a> to generate PDF's from html files (which in turn get generated using xslt). It is very easy to use, but the official site is online last time i checked.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/177820#1778201Answer by mmaibaum for What is a good PDF report generator tool for python?mmaibaum2008-10-07T10:00:10Z2008-10-07T10:00:10Z<p>If you don't like ReportLab I would suggest generating HTML - there are dozens of ways to do this and converting to PDF for final output (html2pdf for example). </p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/177832#1778321Answer by akauppi for What is a good PDF report generator tool for python?akauppi2008-10-07T10:04:39Z2008-10-07T10:04:39Z<p>You can create PDFs easily (in my opinion) with just a Cairo binding.</p>
<p>Sure, it is low level: you don't have a GUI form editor and need to calculate coordinates by hand. But it also is extremely lightweight and direct; you have absolute control. Doing it via HTML does not give you that.</p>
<p>The outcome looks great and is very tiny file size wise.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/177962#1779626Answer by Toni Ruža for What is a good PDF report generator tool for python?Toni Ruža2008-10-07T11:04:13Z2008-10-07T11:04:13Z<p>I'm a big fan of <a href="http://appyframework.org/pod.html" rel="nofollow">pod</a>. Design your report templates in open office writer (or ms word + sun's odf plugin) and then combine it with your data in a simple and flexible way. Very abstract and of course just a few lines of code.</p>
<p>You can generate odt documents this way with no external dependencies, for pdf generation you need to have open office running in server mode.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/177972#1779721Answer by Onorio Catenacci for What is a good PDF report generator tool for python?Onorio Catenacci2008-10-07T11:07:22Z2008-10-07T11:07:22Z<p>You might also find <a href="http://stackoverflow.com/questions/126622/open-source-reporting-engines">this discussion</a> helpful. </p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/177976#1779762Answer by codeape for What is a good PDF report generator tool for python?codeape2008-10-07T11:08:41Z2008-10-07T11:08:41Z<p>Is it feasible to generate your report content as <a href="http://docutils.sourceforge.net/rst.html" rel="nofollow">reStructuredText</a>? If so, check out the <a href="http://code.google.com/p/rst2pdf/" rel="nofollow">rst2pdf</a> project.</p>
<p>Disclaimer: I have not used rst2pdf myself.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/178800#1788001Answer by technomalogical for What is a good PDF report generator tool for python?technomalogical2008-10-07T14:45:49Z2008-10-07T14:45:49Z<p>I would second mmaibaum's suggestion of generating HTML. It, along with CSS, will allow for much better positioning and layout. You can then use an HTML->PDF engine, such as <a href="http://princexml.com/" rel="nofollow">PrinceXML</a> (not free, but the output is amazing... actually there is a free version but it will put a PrinceXML logo on at least one of the pages) or an XML/XHTML->XSL-FO->PDF engine, such as <a href="http://www.re.be/css2xslfo/" rel="nofollow">CSSToXSLFO</a>. This second option offers a bit more flexability, but you'll still need to choose an XSL-FO processor to turn this intermediate output into a PDF. <a href="http://xmlgraphics.apache.org/fop/" rel="nofollow">Fop</a> from the Apache project is a free one, but I can't vouch for how good the output is.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/178833#1788331Answer by Sam Corder for What is a good PDF report generator tool for python?Sam Corder2008-10-07T14:55:29Z2008-10-07T14:55:29Z<p>I worked on a system years ago that used ReportLab. It really wasn't too bad. All of our reports were pretty much of the same style so I created a base class that handled most of the formatting. The only thing sub classes had to do was set some properties and hand the data over to the base class. It worked out pretty well. After I did the ground work another programmer was able to come behind me and bang out a couple dozen reports in a couple weeks with no prior Python experience. So if most of your reports fit one or two formats using ReportLab should just require some up front work and then the rest is drudgery.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/178858#1788582Answer by ConcernedOfTunbridgeWells for What is a good PDF report generator tool for python?ConcernedOfTunbridgeWells2008-10-07T14:59:27Z2008-10-07T14:59:27Z<p>The only reason not to use LaTeX in this layer is that the installation is large and unwieldy, particularly on Windows. You are not going to get a reporting engine without either having a formatting system or working in low level graphics primitives. </p>
<p>If you want a higher level formatting toolkit that's a bit more lightweight than LaTeX you might look at <a href="http://en.wikipedia.org/wiki/Lout" rel="nofollow">Lout</a>.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/182020#1820203Answer by Tony Meyer for What is a good PDF report generator tool for python?Tony Meyer2008-10-08T10:14:31Z2008-10-08T10:14:31Z<p>When you looked at ReportLab, did you check out the Platypus section? It's really very easy to use (Platypus is high-level, whereas pdfgen is fairly low-level). There's a good "Hello World" example in <a href="http://www.reportlab.org/devfaq.html#2.3.2" rel="nofollow">the developer's FAQ</a>.</p>
http://stackoverflow.com/questions/177799/what-is-a-good-pdf-report-generator-tool-for-python/244642#2446422Answer by Jouni K. Seppänen for What is a good PDF report generator tool for python?Jouni K. Seppänen2008-10-28T20:01:41Z2008-10-28T20:01:41Z<p>Take a look at <a href="http://sphinx.pocoo.org/" rel="nofollow">Sphinx</a>. A lot of Python projects are starting to use Sphinx, including Python itself. You type your documentation in reStructuredText, and get good-looking HTML and PDF output. Now that <a href="http://matplotlib.sourceforge.net" rel="nofollow">Matplotlib</a> is using Sphinx, it even has a TeX-like equation formatting engine; see <a href="http://new.scipy.org/proceedings/SciPy2008/paper_6/full_text.pdf" rel="nofollow">this pdf file</a> for some more information.</p>