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 package 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.
  • headerRowColor (default = '#eeeeee') : the header (title) row background color.
  • evenRowColor (default = '#ffffff') : the even rows background color.
  • oddRowColor (default = '#ffffff') : the odd rows background color.

usage :

<<<<<<< HEAD

Installation

To install flask_sqlalchemy using pip type:

pip install flask-sqlalchemy-report

Usage :

=======

pip install flask-sqlalchemy-report

da9569e7d358dd7f72e42a48d3c494dd276877b0

from flask_sqlalchemy_report import Reporter 

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

<<<<<<< HEAD
  return Reporter.generateFromSql(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,'#ffeeee','#ffeeff','#ffffff')
=======
  return Reporter.generateFromSql(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)
>>>>>>> da9569e7d358dd7f72e42a48d3c494dd276877b0

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.2.1.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

flask_sqlalchemy_report-0.2.1-py3-none-any.whl (3.9 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