Skip to main content

Minimal, explicit Repository & Unit-of-Work layer over SQLAlchemy 2.x

This project has been archived.

The maintainers of this project have marked this project as archived. No new releases are expected.

Project description

SARepo

Minimal, explicit Repository + Unit of Work layer on top of SQLAlchemy 2.x (sync & async). No magic method-names, just clean typed APIs, composable specs, pagination, and optional soft-delete.

Install (editable)

pip install -e .

Quick Start (sync)

from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker, Mapped, mapped_column
from sqlalchemy.orm import DeclarativeBase
from sqlalchemy import String

from SARepo.sa_repo import SARepository
from SARepo.base import PageRequest
from SARepo.specs import and_specs, ilike

class Base(DeclarativeBase): pass

class Request(Base):
    __tablename__ = "requests"
    id: Mapped[int] = mapped_column(primary_key=True, autoincrement=True)
    title: Mapped[str] = mapped_column(String(255))
    status: Mapped[str] = mapped_column(String(50))

engine = create_engine("sqlite+pysqlite:///:memory:", echo=False)
Base.metadata.create_all(engine)
SessionLocal = sessionmaker(bind=engine, expire_on_commit=False)

with SessionLocal() as session:
    repo = SARepository(Request, session)
    # create
    r = repo.add(Request(title="Hello", status="NEW"))
    session.commit()

    # search + paginate
    page = repo.page(PageRequest(0, 10), spec=ilike(Request.title, "%He%"))
    print(page.total, [i.title for i in page.items])

Async Quick Start

import asyncio
from sqlalchemy.ext.asyncio import create_async_engine, async_sessionmaker
from SARepo.sa_repo import SAAsyncRepository
from SARepo.base import PageRequest

async def main():
    engine = create_async_engine("sqlite+aiosqlite:///:memory:", echo=False)
    async with engine.begin() as conn:
        await conn.run_sync(Base.metadata.create_all)
    SessionLocal = async_sessionmaker(bind=engine, expire_on_commit=False)
    async with SessionLocal() as session:
        repo = SAAsyncRepository(Request, session)
        await repo.add(Request(title="Hello", status="NEW"))
        await session.commit()
        page = await repo.page(PageRequest(0, 10))
        print(page.total)

asyncio.run(main())

Features

  • SARepository and SAAsyncRepository (CRUD, page() with total count)
  • Composable specs (eq, ilike, and_specs, not_deleted)
  • Optional soft-delete if the entity has is_deleted: bool
  • Minimal Unit of Work helpers (sync & async)

License

MIT

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

sarepo-0.1.0.tar.gz (4.5 kB view details)

Uploaded Source

Built Distribution

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

sarepo-0.1.0-py3-none-any.whl (5.8 kB view details)

Uploaded Python 3

File details

Details for the file sarepo-0.1.0.tar.gz.

File metadata

  • Download URL: sarepo-0.1.0.tar.gz
  • Upload date:
  • Size: 4.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for sarepo-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c38f92ccb08a79cd3d7520fec6c9ad3a7d4b705e84024969cb365965f3c9612c
MD5 fb9038b1002172070e76760e2a56a13c
BLAKE2b-256 dd6f9a98e483adb6c0d3466f1459af0b37d42b9802586be864119cb40ada1c75

See more details on using hashes here.

File details

Details for the file sarepo-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: sarepo-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.7

File hashes

Hashes for sarepo-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0f399efb70a646e9305e93c445cca053712d4dbc1fe5500fd44c55a180cf8697
MD5 2df8126a4ee9ba3e278c2d37883d89eb
BLAKE2b-256 bca6a6da2b27dfa56b0ff17dfd46c766cfcc821d5161bd692705c9043580a988

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