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.7.tar.gz (8.6 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.7-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: sarepo-0.1.7.tar.gz
  • Upload date:
  • Size: 8.6 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.7.tar.gz
Algorithm Hash digest
SHA256 153803e2fea278c2d5476c5ef8c2db3de9feb91159182146d00b02816e7744d4
MD5 c3d530d9432743177decc68f904953fe
BLAKE2b-256 cdcf39153b70d8a1722f2c33473d0329026b64da92e9852895211eb890780d7c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sarepo-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 8.1 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.7-py3-none-any.whl
Algorithm Hash digest
SHA256 df32a9ff8a142db1534b957f9a597631a25cea2e8bb83becc599657b4a915933
MD5 1efd36cbc947cce2d10ec699338c6a44
BLAKE2b-256 b43d7a293e754a007aa5d1623fada91dd594787a2fef6a4085b9410833c35d3e

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