Skip to main content

No project description provided

Project description

from sqlalchemy_service.base_db.db_configure import MySQLDBConfigurationfrom sqlalchemy.ext.asyncio import AsyncSessionfrom typing import AsyncGenerator

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-service[postresql]
  • pip install sqlalchemy-service[mysql]
  • pip install sqlalchemy-service[postgresql,fastapi] for fastapi support(http exceptions and dependency injection)

Usage

  • Need environment set: POSTGRES_HOST, POSTGRES_DATABASE, POSTGRES_PASSWORD, POSTGRES_USER
import asyncio
from random import randint

from pydantic import BaseModel
from sqlalchemy import ScalarResult
from sqlalchemy.orm import Mapped
from sqlalchemy.orm import mapped_column as column

from sqlalchemy_service import Base
from sqlalchemy_service import BaseService
from sqlalchemy_service.base_db.base import ServiceEngine
from sqlalchemy_service.base_db.db_configure import MySQLDBConfiguration


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


# You can manually set urls for engines, or use autodetect
engine_1 = ServiceEngine()
engine_2 = ServiceEngine(MySQLDBConfiguration().get_url())


class UserService[Table: User, int](BaseService):
    base_table = User
    engine = engine_1

    # Redefine BaseService.get_session to connect with 2 engines
    # Just don't rewrite it to connect with one engine
    async def get_session(self):
        if randint(0, 1):
            return engine_1
        return engine_2

    async def create(self, schema: UserCreateSchema) -> User:
        return await self._create(schema)

    async def list(self, page=None, count=None) -> ScalarResult[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 count(self) -> int:
        return await self._count()

    async def count_with_name_like(self, name: str) -> int:
        query = self._count_query()
        query = self._query_like_filter(query, name=name)
        return await self.session.scalar(query)


async def main():
    # Use alembic to create database schema
    async with UserService() as service:
        print(await service.create(UserCreateSchema(name="test")))


asyncio.run(main())

Updates

1.0.0:

  • custom engine style
  • more use-ready commands

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

sqlalchemy_service-1.0.0a4.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

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

sqlalchemy_service-1.0.0a4-py3-none-any.whl (11.5 kB view details)

Uploaded Python 3

File details

Details for the file sqlalchemy_service-1.0.0a4.tar.gz.

File metadata

  • Download URL: sqlalchemy_service-1.0.0a4.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.13.2 Linux/6.12.13-200.fc41.x86_64

File hashes

Hashes for sqlalchemy_service-1.0.0a4.tar.gz
Algorithm Hash digest
SHA256 99804172fc2c4a7789e5fba806312f59df5a3dedde4dad944907f8d79ebb643b
MD5 863f81133fae35b0ba32f0f103b937f4
BLAKE2b-256 a879b3e93820a290862e1be80905f93d6e40c8c78c8dbffa3a6d76879c50daa4

See more details on using hashes here.

File details

Details for the file sqlalchemy_service-1.0.0a4-py3-none-any.whl.

File metadata

  • Download URL: sqlalchemy_service-1.0.0a4-py3-none-any.whl
  • Upload date:
  • Size: 11.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.0.1 CPython/3.13.2 Linux/6.12.13-200.fc41.x86_64

File hashes

Hashes for sqlalchemy_service-1.0.0a4-py3-none-any.whl
Algorithm Hash digest
SHA256 7c0e9afcbbe097ad57a8224d5e5fd1900ef903bd5d71c90d65b850810102d03d
MD5 a5a851a53b784c97f1dfb3868e4d0979
BLAKE2b-256 d2e9d74f4e82fb010687e25fa63e7b00e2ed5281725d344c736ab02051e753ed

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