1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
from __future__ import annotations
import pprint
from pathlib import Path
from typing import TYPE_CHECKING
from sqlalchemy import create_engine
from advanced_alchemy.base import UUIDBase
from advanced_alchemy.config import SQLAlchemySyncConfig, SyncSessionConfig
from advanced_alchemy.filters import LimitOffset
from advanced_alchemy.repository import SQLAlchemySyncRepository
from advanced_alchemy.utils.fixtures import open_fixture
if TYPE_CHECKING:
from sqlalchemy.orm import Mapped
here = Path(__file__).parent
config = SQLAlchemySyncConfig(
engine_instance=create_engine("duckdb:///:memory:"), session_config=SyncSessionConfig(expire_on_commit=False)
)
class USState(UUIDBase):
# you can optionally override the generated table name by manually setting it.
__tablename__ = "us_state_lookup"
abbreviation: Mapped[str]
name: Mapped[str]
class USStateRepository(SQLAlchemySyncRepository[USState]):
"""US State repository."""
model_type = USState
def run_script() -> None:
"""Load data from a fixture."""
# Initializes the database.
with config.get_engine().begin() as conn:
USState.metadata.create_all(conn)
with config.get_session() as db_session:
# 1) Load the JSON data into the US States table.
repo = USStateRepository(session=db_session)
fixture = open_fixture(here, USStateRepository.model_type.__tablename__)
objs = repo.add_many([USStateRepository.model_type(**raw_obj) for raw_obj in fixture])
db_session.commit()
pprint.pp(f"Created {len(objs)} new objects.")
# 2) Select paginated data and total row count.
created_objs, total_objs = repo.list_and_count(LimitOffset(limit=10, offset=0))
pprint.pp(f"Selected {len(created_objs)} records out of a total of {total_objs}.")
# 3) Let's remove the batch of records selected.
deleted_objs = repo.delete_many([new_obj.id for new_obj in created_objs])
pprint.pp(f"Removed {len(deleted_objs)} records out of a total of {total_objs}.")
# 4) Let's count the remaining rows
remaining_count = repo.count()
pprint.pp(f"Found {remaining_count} remaining records after delete.")
if __name__ == "__main__":
run_script()
|