vote up 8 vote down star
1

Are there any packages that provide to following:

  1. Integration with python application with minimal dependencies (beyond existing depends we use such as wx and matplotlib)
  2. Visual design tool to make it easier for less technical users to design their own reports
  3. Able to work with MySQL and Oracle databases
  4. Cross platform (Linux and Windows), though this shouldn't be an issue for a python package

The following are pluses but not necessary:

  1. Web based software for serving reports, also scheduling delivery via multiple methods such as email
  2. Standards based, reports are not a proprietary binary file format
  3. Reports can be saved in multiple formats (pdf, html, etc)
flag

74% accept rate
Are you looking for something similar to Jasper Reports for python? jaspersoft.com – Ryan Sep 25 '08 at 4:56
Essentially yea, I'm looking for something like Jasper or Crystal reports that has components so that the report can be displayed in python applications – Mark Roddy Sep 25 '08 at 14:20

4 Answers

vote up 0 vote down

What platform does it need to run on? Windows?

Off the top of my head, reporting tools such as Crystal Reports (commercial), SQL Server Reporting Services (commercial), Jasper Reports (commercial, open source), Pentaho Reporting (commercial, open source) that do #2, #3 and pluses.

Depending on your python application, you may not need a python version of these reporting tools. You could package your python app as a com service or integrate using language bindings (JPython for instance).

link|flag
None of those integrate directly with Python which is a hard requirement. I edited to note the platform – Mark Roddy Sep 25 '08 at 14:17
vote up 1 vote down

To make working on more than one type of DB easy in python you should think about sqlalchemy. Write code once, and will work on several DB :)

link|flag
vote up 0 vote down

From your description it sounds like you're looking for Eclipse [BIRT] (http://www.eclipse.org/birt/phoenix/). It's not written in Python but could be easily integrated with your python application

link|flag
vote up 1 vote down

You might want to check out Dabo.

link|flag

Your Answer

Get an OpenID
or

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