Skip to main content

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

Project details


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.4.tar.gz (4.6 kB view details)

Uploaded Source

Built Distribution

opyration-0.1.4-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file opyration-0.1.4.tar.gz.

File metadata

  • Download URL: opyration-0.1.4.tar.gz
  • Upload date:
  • Size: 4.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.4.2 CPython/3.11.3 Darwin/23.4.0

File hashes

Hashes for opyration-0.1.4.tar.gz
Algorithm Hash digest
SHA256 6c6b55f1529683aa1486641a27a58ed2d2d2ab95755a725885fd47dcb0f0d192
MD5 6384291a25cfdf8510da34066faf6ef6
BLAKE2b-256 c715f8010ff88f8124e2c87d4759750e3eff96a1848ac6aab20e7deb000fed46

See more details on using hashes here.

File details

Details for the file opyration-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: opyration-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 5.8 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

Hashes for opyration-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 e91a4fa2de3ae189faa828f50401a338624f6044858a2c7354fd74aaac40d770
MD5 8ac7d87b9ffdc74095f3bfa2926d9793
BLAKE2b-256 a72186802364b607bbe67f8ca05a9c4dddefedebababa647d3c4f8457d246595

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page