SQL + Jinja Templates Done Right™
Project description
Overview
SQL + Jinja Done Right™
This project is a thing wrapper around Jinja templates to help manage the generation of SQL.
In your project create a directory name sql/templates
to manage you SQL files:
.
└── sql
└── templates
├── foo.sql
└── bar.sql
An example foo.sql
might be:
SELECT '{{msg}}' as message
Then to access the SQL template use the following Python snippet:
from sqlninja import engine as sqlninja
query = sqlninja.render("foo.sql", msg="Hello World")
The resulting query
would be:
SELECT 'Hello World' as message
In bar.sql
lets try including foo.sql
:
SELECT * FROM ({% include 'foo.sql' %}) as t1
The rendered SQL would be:
SELECT * FROM (SELECT 'Hello World' as message) as t1
Command Line Interface
The Python interface makes sense at runtime, but for development the CLI is more convenient.
The library installs a CLI script: sql
$ sql --help
Usage: sql [OPTIONS] SRC
Options:
--template_path TEXT Base directory where SQL templates are located.
Defaults to `sql/templates`
--help Show this message and exit.
To see the resulting SQL we can try:
sql foo.sql msg='Hello World'
# => SELECT 'Hello World' as message
Installation
pip install sql-ninja
Or add to requirements.txt
sql-ninja
Or add to setup.py
setup(
install_requires=[
'sql-ninja',
]
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/ddrscott/sql-ninja
License
The gem is available as open source under the terms of the MIT License.
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
Built Distribution
File details
Details for the file sql-ninja-0.1.2.tar.gz
.
File metadata
- Download URL: sql-ninja-0.1.2.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0.post20200518 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09c9eba97ad04a6a2fc84de4e6a539f17077dc62ee471f7de723d7a229edbb4d |
|
MD5 | d92635c4311a0de64b13201cf73b9655 |
|
BLAKE2b-256 | 0f12daec5c8772ad0a89826867f64022e8ebbae2a4956bf17174b10b4185af5b |
File details
Details for the file sql_ninja-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: sql_ninja-0.1.2-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0.post20200518 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 035730aace6e793afc02e8a7907520bd60814fa7970de3083094fb69f6db28ee |
|
MD5 | 3214cb761853e6a5fbf891f92b31f900 |
|
BLAKE2b-256 | d978d533174dcdf7e31133a41c8fff1e0cbc13e456cd795b20315325d9f2156e |