SQL query templating shorthand
Project description
querypp
Deprecation Notice
querypp has been deprecated in favor of vanilla jinja2. After porting it to jinja2, I realized that none of querypp was actually necessary. Migrating docs here.
v0.0.3 is the last version that doesn't use jinja2, in case you want a more lightweight version.
querypp is a SQL query[1] templating system based on jinja2.
[1]: Although it is trivially adapted to other languages, as the only SQL-specific assumption is the line comment syntax.
Take an example:
-- :query users
SELECT *
FROM users
-- :qblock profiles
LEFT JOIN profiles USING (user_id)
-- :block login_history
LEFT JOIN login_history USING (profile_id)
-- :endqblock
-- :endqblock
-- :qblock user_id WHERE user_id = $1
-- :endquery
A Query template can be called:
- with no block names to return the query without any blocks
- with one or more block names to return the query with only those block names.
In this case, q('profiles', 'user_id')
would return the query with the login_history
JOIN removed.
Additionally, any jinja2 templating features,
such as variables and macro functions, can be used, using either the line syntax (e.g. -- :include 'foo.sql'
)
or the block syntax (e.g. {% if x == 1 %}
).
Usage
env = querypp.QueryEnvironment('sql/')
queries = env.get_template('queries.sql') # opens sql/queries.sql
db.execute(queries.users('login_history', 'user_id'), user_id)
Motivation
After moving all my SQL queries to separate files, I noticed that I was duplicating some of them except for one extra clause. I created this to allow me to deduplicate such queries.
License
Public domain, see COPYING
Project details
Release history Release notifications | RSS feed
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 querypp-0.1.2.tar.gz
.
File metadata
- Download URL: querypp-0.1.2.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 12e1d42e7a5616b9dd94fe2a8f0375c05d32c6b8dfa86fa935b6990b37984832 |
|
MD5 | 6aae75d1ac808f7096f589a13a6426fe |
|
BLAKE2b-256 | 04b027f30f3a8b774ff6c0dbbb8374ff41c2cd339f0f143762edf9422a71831b |
File details
Details for the file querypp-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: querypp-0.1.2-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2135587be928aa57a54244fcc354559f48b8f281fd6a33699a3e3b2286e5e11 |
|
MD5 | 6d3f8044834bada1316e7bbaf8471a8a |
|
BLAKE2b-256 | 823e437d5dd925675ff6f8ea88d7b2d48fb86abf2a5377a4609dd598e1730da5 |