Skip to main content

Python Utilities & Basalam Micro-Services SDK

Project description

Backbone ORM

Backbone ORM is a lightweight, asynchronous Object-Relational Mapper (ORM) for Python, built on top of the PyPika SQL query builder. It provides a clean and efficient interface for interacting with PostgreSQL databases, leveraging type hints and asynchronous programming to enable scalable and maintainable database operations.

Features

  • Asynchronous Support: Built with asyncio to support non-blocking database operations.
  • Type-Hinted Models: Utilizes Python's type hints for defining models, enhancing code clarity and editor support.
  • PostgreSQL Integration: Specifically designed for PostgreSQL databases, with support for connection pooling and schema management.
  • Redis Integration: Includes support for Redis, allowing for caching and other in-memory data storage solutions.
  • Flexible Querying: Provides a flexible query builder and supports soft deletes and model relationships.

Requirements

  • python 3.10+
  • pypika 0.48+
  • pydantic 2.0+
  • basalam.backbone-redis-cache 0.0.11+

Installation & Upgrade

pip install basalam.backbone-orm --upgrade

Usage

Define Models

from basalam.backbone_orm import ModelAbstract

class UserModel(ModelAbstract):
    id: int
    name: str

Create Repositories

import typing
import aioredis
from basalam.backbone_orm import (
    T,
    DriverEnum,
    PostgresManager,
    ConnectionConfig,
    RepositoryAbstract,
)

postgres = PostgresManager(
    default=DriverEnum.POOL,
    config=ConnectionConfig(...)
)

redis = aioredis.Redis(...)


class UserRepo(RepositoryAbstract[UserModel]):

    @classmethod
    async def connection(cls) -> PostgresConnection:
        return await postgres.acquire()

    @classmethod
    def redis(cls) -> aioredis.Redis:
        return redis

    @classmethod
    def table_name(cls) -> str:
        return "users"

    @classmethod
    def model(cls) -> typing.Type[T]:
        return UserModel

    @classmethod
    def soft_deletes(cls) -> bool:
        return True

    @classmethod
    def default_relations(cls) -> typing.List[str]:
        return []

Perform Queries

user = await UserRepo.find_by_id(1)

Testing

# install pytest
pip install pytest

# run tests
python -m pytest

Changelog

  • 0.0.11: Build and push process now handled by GitLab CI
  • 0.0.13: fix - Correct return type of update_return method
  • 0.0.14: Add support for custom order enums
  • 0.0.15: Introduce has_relations in ModelAbstract
  • 1.0.0: Introduce QueryBuilder and Connection Manager
  • 1.0.9: Extend QueryBuilderAbstract from PyPika's PostgreSQLQueryBuilder
  • 2.0.0: Drop support for Pydantic v1 and ensure compatibility with Pydantic v2
  • 2.0.6: Add with_thrashed option to find_by_id method
  • 2.0.14: Fix dict method in ModelAbstract for Pydantic v2 compatibility

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

basalam_backbone_orm-2.2.3.tar.gz (20.9 kB view details)

Uploaded Source

Built Distribution

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

basalam_backbone_orm-2.2.3-py3-none-any.whl (24.2 kB view details)

Uploaded Python 3

File details

Details for the file basalam_backbone_orm-2.2.3.tar.gz.

File metadata

  • Download URL: basalam_backbone_orm-2.2.3.tar.gz
  • Upload date:
  • Size: 20.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.23

File hashes

Hashes for basalam_backbone_orm-2.2.3.tar.gz
Algorithm Hash digest
SHA256 7c9e0235c817b5761feecbd6ce76579aba91ea27771918ee63b4bbbc48c1eba4
MD5 d0edf6a868eb5074502d7ae6dd5dcc26
BLAKE2b-256 b3e6e256952346b993ae2750224e1d99be49ce26deb6c050e5ab20881b63c491

See more details on using hashes here.

File details

Details for the file basalam_backbone_orm-2.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for basalam_backbone_orm-2.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 ba29c9db4175000a058a94a7fa848a26c9bae4a01fe9bccc757a8e419c49dbbb
MD5 73155deae9991c31d1a095f858237705
BLAKE2b-256 9d2370c76082e32e268a0b6508a9a9ea90d40429f6259f910ce2a3394fe4c020

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