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.2.1.tar.gz
(4.5 kB
view details)
Built Distribution
File details
Details for the file opyration-0.2.1.tar.gz
.
File metadata
- Download URL: opyration-0.2.1.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.11.3 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26c89dbcd6b3b08aec668386220476b954d5dd3a2cf55e24112048c9d0503a2e |
|
MD5 | 85c9b2d3f2e7433d436543d009e9a2fc |
|
BLAKE2b-256 | eaa82571a5321710140f3dcd9eb8d4fefaa63fa46cfffed1f70fce4c02148a1b |
File details
Details for the file opyration-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: opyration-0.2.1-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.11.3 Darwin/23.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4181f78c1e714366655c24c154bfce943303fcf604003bf43eb1802dc7c4bff5 |
|
MD5 | f33e22575a1487abffd04f6013177072 |
|
BLAKE2b-256 | aef160e8c6d0c60c58a9b80a3267d95eaa5c3279db665e52d487eac3667eeeec |