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.3.tar.gz
(4.1 kB
view details)
Built Distribution
File details
Details for the file opyration-0.0.3.tar.gz
.
File metadata
- Download URL: opyration-0.0.3.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.11.3 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c7e37ddeeab9e8718c38d569f9c3ffecca63579fcc0f158613cd90d1271f722 |
|
MD5 | 1327bb725963ffd950930e14798a778c |
|
BLAKE2b-256 | 0c1a9d89c9b4703c3f359509195b3719a95a632522c3f5ab8a18616b6dffafb9 |
File details
Details for the file opyration-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: opyration-0.0.3-py3-none-any.whl
- Upload date:
- Size: 5.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.11.3 Darwin/23.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 746e94f881786fd90411fa1ee381e9aa4d1a89af4332d9390c8ad527a1a004f5 |
|
MD5 | dbf972f727eb375227696884f54311db |
|
BLAKE2b-256 | 6b268fdeb34cbd571b562f965a8ee1019b857a1b23bf6b4eeb0fd5ff300f76ae |