/pyjasperstarter

Use the world's most popular open source reporting engine on your python project.

Primary LanguagePythonOtherNOASSERTION

Create amazing reports using JasperReports.

JasperStarter is an opensource command line launcher for JasperReports.

Usage

from jasperstarter import Jasper
from jasperstarter.query import DbapiAdapter

jasper = Jasper('Emproyees.jrxml')
adapter = DbapiAdapter(jasper)
data = adapter.run(self.conn)

file = employees.execute(data=data, format='pdf', compile=True)