Opinionated utilities for working with SQLAlchemy
Project description
sqla-utils
Opinionated utilities for working with SQLAlchemy
Contents
Transaction Wrapper
FIXME
DBObjectBase
DBObjectBase
is a base class for mapped classes.
Example:
from datetime import datetime
from sqlalchemy import Column, DateTime, Integer, String
from sqla_utils import DBObjectBase, Transaction
class DBAppointment(DBObjectBase):
__tablename__ = "appointments"
id = Column(Integer, primary_key=True)
date = Column(DateTime, nullable=False)
description = Column(String(1000), nullable=False, default="")
Appointment items can then be queried like this:
from sqla_utils import begin_transaction
with begin_transaction() as t:
app123 = DBAppointment.fetch_by_id(t, 123)
great_apps = DBAppointment.fetch_all(t, DBAppointment.description.like("%great%"))
It is recommended to add custom query, creation, and update methods:
class DBAppointment(DBObjectBase):
...
@classmethod
def create(cls, t: Transaction, date: datetime, description: str) -> DBAppointment:
o = cls()
o.date = date
o.description = description
t.add(o)
return o
@classmethod
def fetch_all_after(cls, t: Transaction, date: datetime) -> List[DBAppointment]:
return cls.fetch_all(t, cls.start >= dates.start)
def update_description(self, t: Transaction, new_description: str) -> None:
self.description = new_description
t.changed(self)
Database Builder
FIXME
pytest Utilities
The sqla_utils.test
module contains a few utilities for working with pytest and SQLAlchemy.
FIXME
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
sqla_utils-0.3.3.tar.gz
(12.0 kB
view details)
Built Distribution
File details
Details for the file sqla_utils-0.3.3.tar.gz
.
File metadata
- Download URL: sqla_utils-0.3.3.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.9.2 Linux/5.10.0-20-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2af3499ded00d388cbd8f0f15f037b8c87f44215d34ad42f819f91fab8ce78f2 |
|
MD5 | 3a404980b18de1752df3292f8f431a58 |
|
BLAKE2b-256 | cd03be457ffb833f661e1caebd5cc37a14e68533a20640356b2dd3488d5b3adb |
File details
Details for the file sqla_utils-0.3.3-py3-none-any.whl
.
File metadata
- Download URL: sqla_utils-0.3.3-py3-none-any.whl
- Upload date:
- Size: 13.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.3.1 CPython/3.9.2 Linux/5.10.0-20-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e65c995733a570b753f7bc015035b7d380ccc22e34536fa742ce1141eada5042 |
|
MD5 | ab0b68df163690eebeff73067a8863aa |
|
BLAKE2b-256 | e105d1ea185cccdf4afb3e3dfb2a284da8506dab523d7daa0abcf85d5c8da7d8 |