Execute SQL Statements as a series of pythonic functions.
Project description
Opyration
SQL and Python should be simple right? Sometimes code is better than extensive explanation - see snippets below:
from opyration import Operation
pool = ... # in production use an asyncpg|aiomysql Pool()
# example 1
op = Operation('customers', ...).select().where(location='California', age__gt=18)
await op.run()
# example 2
op = Operation('products', ...)
op.select()
op..where(username='; drop customers')
assert op.sql = 'SELECT * FROM products WHERE id = $1'
Installling
Install with pip
$ pip install opyration
More Examples
from opyration import Operation
op = Operation()
op.update(username='new username').where(id='1ea-455-bc0-88a')
# to run in sync mode use: op.runs()
await op.run() # async
Contributing
For guidance on how to make contributions to opyration, see the Contribution Guidelines
Links
- Documentation Go To Docs
- PyPi https://pypi.org/project/heaven
- Source Code Github
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
opyration-0.0.2.tar.gz
(4.0 kB
view details)
Built Distribution
File details
Details for the file opyration-0.0.2.tar.gz
.
File metadata
- Download URL: opyration-0.0.2.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.11.3 Darwin/23.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1a77dc12a8337cd37b89e861c9459f10101bce30b55d85af8143ebbe61349c1 |
|
MD5 | e0101e96acb207450b41059702f96bc1 |
|
BLAKE2b-256 | 303f844e6ea414fc96a99bf7804e1f62b94abe303e1d789b6c0eb41b4393ab54 |
File details
Details for the file opyration-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: opyration-0.0.2-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.11.3 Darwin/23.1.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2ca8c783c5cc8deac14565f5521fbb716618ab3687cab4da2733cee6f088563 |
|
MD5 | 0b1f629eab6b4edbc5ec14afa92975a3 |
|
BLAKE2b-256 | b1a8c8a4a0fd1be398ae67d41662c82868398e8c9ff57ad515f8fafb0e13e4a4 |