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.1.0.tar.gz
(4.4 kB
view details)
Built Distribution
File details
Details for the file opyration-0.1.0.tar.gz
.
File metadata
- Download URL: opyration-0.1.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.11.3 Darwin/23.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18927d6514a9e50b5bb0e9a74000f68ce3063da47db4994b3e2e00190db639c9 |
|
MD5 | c747a923ea2f9f40e654476136b5a946 |
|
BLAKE2b-256 | 6fe879dee2300045a596e8e634feb208dd5d2c7ded17f7adf1eb0b95d258cd47 |
File details
Details for the file opyration-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: opyration-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.11.3 Darwin/23.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 13ac4de88fe35be4774726e0cfe274c213693cd9d82a8befbe6d095225e603ea |
|
MD5 | 988dfe60c4c170d808955176574be4bb |
|
BLAKE2b-256 | fcd115e3014fd5a5da983d48d6ac7be5e004419a165786b3a42d674dd10776b2 |