Metadata-Version: 2.1
Name: jinjasql2
Version: 0.1.11
Summary: Generate SQL Queries and Corresponding Bind Parameters using a Jinja2 Template
Home-page: https://github.com/pythonutilities/jinjasql
Download-URL: http://cloud.github.com/downloads/pythonutilities/jinjasql/jinjasql-0.1.11.tar.gz
Author: Sridhar, Thomas Cherian, Sripathi Krishnan
Author-email: crsridhar23@gmail.com
Maintainer: Sridhar, Thomas Cherian
Maintainer-email: crsridhar23@gmail.com
License: MIT
Keywords: Jinja2,SQL,Python,Template
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
License-File: LICENSE
Requires-Dist: Jinja2>=2.11.3


Generate SQL Queries using a Jinja Template, without worrying about SQL Injection

JinjaSQL automatically binds parameters that are inserted into the template.
After JinjaSQL evaluates the template, you get 1) Query with placeholders
for parameters, and 2) List of values that need to be bound to the query. 

JinjaSQL doesn't actually execute the query - it only prepares the 
query and the bind parameters. You can execute the query using any 
database engine / driver you are working with.

