Skip to main content

Powerful yet simple Python ORM

Project description

https://raw.githubusercontent.com/zergos/quazydb/master/docs/source/images/logo_mini.png

Powerful yet simple 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(conninfo="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)

Documentation

https://quazydb.readthedocs.io/en/latest/

Project details


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

If you're not sure about the file name format, learn more about wheel file names.

quazydb-1.2.5-py3-none-any.whl (50.1 kB view details)

Uploaded Python 3

File details

Details for the file quazydb-1.2.5-py3-none-any.whl.

File metadata

  • Download URL: quazydb-1.2.5-py3-none-any.whl
  • Upload date:
  • Size: 50.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.0

File hashes

Hashes for quazydb-1.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 a2bfba8d94923c0c461e11f3f5611fd776aaedea800c5dd203089f903a1dbac0
MD5 0b527968878ef44bba0a43d644fcc588
BLAKE2b-256 035fdf83e0c1b53819ac7e6ccfbca9fbe0c6ffc65dc9a88f3fca5aadf413c135

See more details on using hashes here.

Supported by

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