Madhu Alagu wrote: > I am looking template based report tools for python.It has the ability > to deliver rich content onto the screen, to the printer or into PDF, > HTML, XLS, CSV and XML files.
As others have mentioned, I don't believe that all of the above is implemented in a single package. However, Python can most definitely deal with all of the above formats. For HTML templating I can highly recommend Clearsilver: http://www.clearsilver.net/ it's written in C with Python (and other language) wrappers, is very fast and is also extensible. For PDF: ReportLab - http://www.reportlab.org/downloads.html - http://www.ibm.com/developerworks/linux/library/l-sc6.html?loc=dwmain For XSLT: 4Suite, libxml - http://uche.ogbuji.net/tech/akara/nodes/2003-01-01/python-xslt For CSV and XML: csv module, libxml, lxml, ElemenTree modules -Jay -- http://mail.python.org/mailman/listinfo/python-list