Skip to main content

Web-framework independent CRUD tools for working with database via SQLAlchemy.

Project description

DB-First

Web-framework independent CRUD tools for working with database via SQLAlchemy.

Features

  • DBAL - database access layer.
  • CRUD methods for create, read, update and delete object from database.
  • Bulk methods for create, read, update and delete object from database.
  • Method of paginating data.
  • StatementMaker class for create query 'per-one-model'.
  • Marshmallow (https://github.com/marshmallow-code/marshmallow) schemas for serialization input data for pagination.
  • Marshmallow schemas for deserialization SQLAlchemy result object to dict.
  • Datetime with UTC timezone validation in BaseSchema.

Installation

Recommended using the latest version of Python. DB-First supports Python 3.12 and newer.

Install and update using pip:

$ pip install -U db_first

Examples

Full example

from db_first.base_model import ModelMixin
from db_first.dbal import SqlaDBAL
from db_first.dbal.exceptions import DBALObjectNotFoundException
from sqlalchemy import create_engine
from sqlalchemy.orm import declarative_base
from sqlalchemy.orm import Mapped
from sqlalchemy.orm import mapped_column
from sqlalchemy.orm import Session

engine = create_engine('sqlite://', echo=True, future=True)
session = Session(engine)
Base = declarative_base()


class Items(ModelMixin, Base):
    __tablename__ = 'items'
    data: Mapped[str] = mapped_column(comment='Data of item.')


Base.metadata.create_all(engine)


class ItemsDBAL(SqlaDBAL[Items]):
    """Items DBAL."""


if __name__ == '__main__':
    new_item = ItemsDBAL(session).create(data='data')
    print('=>', 'New item:', new_item)

    item = ItemsDBAL(session).read(id=new_item.id)
    print('=>', 'Item:', item)

    updated_item = ItemsDBAL(session).update(id=new_item.id, data='updated_data')
    print('=>', 'Updated item:', updated_item)

    ItemsDBAL(session).delete(id=new_item.id)
    try:
        ItemsDBAL(session).read(id=new_item.id)
    except DBALObjectNotFoundException:
        print('=>', 'Deleted item.')

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

db_first-5.2.1.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

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

db_first-5.2.1-py3-none-any.whl (11.3 kB view details)

Uploaded Python 3

File details

Details for the file db_first-5.2.1.tar.gz.

File metadata

  • Download URL: db_first-5.2.1.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for db_first-5.2.1.tar.gz
Algorithm Hash digest
SHA256 d885336d7b0a48fcf577f77993af69cb327f37a762438e6d048cd2e70d084add
MD5 bf3400f73f1057d83d78ff65e020b911
BLAKE2b-256 d20370e74935a954de1d9570914ae4724db0898406f005bd412e341af3cc670f

See more details on using hashes here.

File details

Details for the file db_first-5.2.1-py3-none-any.whl.

File metadata

  • Download URL: db_first-5.2.1-py3-none-any.whl
  • Upload date:
  • Size: 11.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for db_first-5.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 a7d32d445fd4a7257c9e7a66824e9ff784b64fa1c2497744ded75b07d3ab438a
MD5 e06a70ee0ada90d4d02123d826398f54
BLAKE2b-256 5e2a33b90e2460f944062c07a06f2d376e314c1e5e967e58bf24e499f984d99e

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