Skip to main content

A useful simple to use tool to turn your sql query into a beautiful report html table

Project description

This is easy to use tool for generating html table from sql query.

the packes contains only one function named "generateFromSql" with 8 arguments :

  • session : SQLAlchemy session
  • title : the title of the report that will be shown on top of table
  • sqltext : the sql query
  • footerCols : a list of columns name that you want to have Sum of values on footer . Example : ['amount','price']
  • direction (default = "ltr") : indicates direction of the report page. "ltr"- Left to Right , "rtl" - Right to Left
  • font (default = "Tahoma") : font of title and table contents
  • totalText (default = "Total") : title of footer row that will be the put below the first column.
  • rowIndex (default = False) : indicates whether the table should have index column or not.

usage :

from flask_sqlalchemy_report import Reporter

@app.route('/listOfPersons', methods=['GET']) def listOfPersons():

return Reporter.sqlPrinter(db.session, "Employee List","SELECT FirstName as 'First Name', LastName as 'Last Name', phone as 'Phone Number', salary as 'Salary' FROM persons", ['Salary'], "rtl", "Arial", "Total Salary", True)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flask_sqlalchemy_report-0.1.7.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

flask_sqlalchemy_report-0.1.7-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page