No project description provided
Project description
Sqlalchemy-service
This is a library that simplifies working with database CRUD queries and connection management.
Features
- A class to reduce the amount of code needed for database CRUD queries and connection management.
Installation
pip install sqlalchemy-servicepip install sqlalchemy-service[fastapi]for fastapi support(http exceptions and dependency injection)
Usage
- Need environment set: POSTGRES_HOST, POSTGRES_DB, POSTGRES_PASSWORD, POSTGRES_USER
from sqlalchemy_service import BaseService, Base, init_models
from sqlalchemy.orm import Mapped
from sqlalchemy.orm import mapped_column as column
from pydantic import BaseModel
import asyncio
class User(Base):
__tablename__ = "users"
id: Mapped[int] = column(primary_key=True)
name: Mapped[str]
class UserCreateSchema(BaseModel):
name: str
class UserUpdateSchema(BaseModel):
name: str | None = None
class UserService[Table: User, int](BaseService):
base_table = User
async def create(self, schema: UserCreateSchema) -> User:
return await self._create(schema)
async def list(self, page=None, count=None) -> list[User]:
return await self._get_list(page=page, count=count)
async def get(self, user_id: int) -> User:
"""Return user. If user not found, throws 404 HTTPException"""
return await self._get_one(id=user_id)
async def update(self, user_id: int, schema: UserUpdateSchema) -> User:
return await self._update(user_id, schema)
async def delete(self, user_id: int):
await self._delete(user_id)
async def main():
await init_models()
async with UserService() as service:
print(await service.create(UserCreateSchema(name="test")))
asyncio.run(main())
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sqlalchemy_service-0.2.9.tar.gz.
File metadata
- Download URL: sqlalchemy_service-0.2.9.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.13.1 Linux/6.12.10-200.fc41.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9af43f6a276867a81408a0aa86657ecc2bca3eceb9bbf9fb0ecfe80d63d7ff20
|
|
| MD5 |
0fb3df1507c64ffcacccdfa26e3f9fa3
|
|
| BLAKE2b-256 |
46ff5e39206953326dd8a6c706afd4b5395c4072f55b97db0d9389edd3a50d82
|
File details
Details for the file sqlalchemy_service-0.2.9-py3-none-any.whl.
File metadata
- Download URL: sqlalchemy_service-0.2.9-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.13.1 Linux/6.12.10-200.fc41.x86_64
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7d52c186bbb39f80320466d43489a1377037137d8081e00b8bdb9df29fe728a3
|
|
| MD5 |
38ed280cafa230d343a68cacb160acee
|
|
| BLAKE2b-256 |
dfd19270ad8fa42323110527e40bed60541d5f909d5db9c5aa068d810351a281
|