Powerful yet simple Python ORM
Project description
Powerful yet simple asynchronous Python ORM
Let’s combine all modern ORMs with business essence into something intuitive and simple.
Example:
import random
from quazy import DBFactory, DBTable
class Product(DBTable):
name: str
price: float
description: str = None
if __name__ == "__main__":
db = DBFactory.postgres("postgresql://quazy:quazy@127.0.0.1/quazy")
db._debug_mode = True
db.use_module()
db.clear()
db.create()
for i in range(100):
db.insert(Product(name=f'Product #{i + 1}', price=random.randint(1, 1000) / 100))
q = Product.query().filter(lambda x: x.price >= 5)
print("Total amount:", q.fetch_count())
print("Average price:", q.fetch_avg("price"))
print("Products:")
for x in q:
print(x.name, "->", x.price)
Or code in async:
import asyncio
import random
from quazy import DBFactoryAsync, DBTable
class Product(DBTable):
name: str
price: float
description: str = None
async def main():
db = DBFactoryAsync.postgres("postgresql://quazy:quazy@127.0.0.1/quazy")
db._debug_mode = True
db.bind_module()
await db.clear()
await db.create()
for i in range(100):
await db.insert(Product(name=f'Product #{i + 1}', price=random.randint(1, 1000) / 100))
q = Product.query().filter(lambda x: x.price >= 5)
print("Total amount:", await q.fetch_count())
print("Average price:", await q.fetch_avg("price"))
print("Products:")
async for x in q:
print(x.name, "->", x.price)
if __name__ == "__main__":
asyncio.run(main())
Documentation
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
quazydb-1.3.4-py3-none-any.whl
(54.3 kB
view details)
File details
Details for the file quazydb-1.3.4-py3-none-any.whl.
File metadata
- Download URL: quazydb-1.3.4-py3-none-any.whl
- Upload date:
- Size: 54.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
17a13f34675817e497e9167ecebb9e3e8e7f5d28f4e5d441c4b768da347ec2b8
|
|
| MD5 |
8ea2c35f2f9d777424f476be0645f73b
|
|
| BLAKE2b-256 |
25d02d73e90d0b805ad3e75ba98995a8180a27fa1cee589ba75b06fd1e028f35
|