Skip to main content

A convenient way to configure and work with an async SQLAlchemy session through context in asynchronous applications

Project description

context-async-sqlalchemy

PyPI

No AI was used in the creation of this library.

DOCUMENTATION

Provides a super convenient way to work with SQLAlchemy in asynchronous applications. It handles the lifecycle management of the engine, sessions, and transactions.

The main goal is to provide quick and easy access to a session, without having to worry about opening or closing it when it’s not necessary.

Key features:

  • Extremely easy to use
  • Automatically manages the lifecycle of the engine, sessions, and transactions (autocommit / autorollback)
  • Does not interfere with manually opening or closing sessions and transactions when needed
  • Framework-agnostic - works with any web framework
  • Not a wrapper around SQLAlchemy
  • Convenient for testing
  • Runtime host switching
  • Supports multiple databases and multiple sessions per database
  • Provides tools for running concurrent SQL queries
  • Fully lazy initialization

What does usage look like?

from context_async_sqlalchemy import db_session
from sqlalchemy import insert

from database import connection  # your configured connection to the database
from models import ExampleTable  # just some model for example

async def some_func() -> None:
    # Created a session (no connection to the database yet)
    session = await db_session(connection)
    
    stmt = insert(ExampleTable).values(text="example_with_db_session")

    # On the first request, a connection and transaction were opened
    await session.execute(stmt)
    
    # If you call db_session again, it will return the same session
    # even in child coroutines.
    session = await db_session(connection)
    
    # The second request will use the same connection and the same transaction
    await session.execute(stmt)

    # The commit and closing of the session will occur automatically

How it works

Here is a very simplified diagram of how everything works:

basic schema.png

  1. Before executing your code, the middleware will prepare a container in which the sessions required by your code will be stored. The container is saved in contextvars
  2. Your code accesses the library to create new sessions and retrieve existing ones
  3. After your code, middleware will automatically commit or roll back open transactions. Closes open sessions and clears the context.

The library also provides the ability to commit, rollback, and close at any time, without waiting for the end of the request, without any problems.

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

context_async_sqlalchemy-2.0.3.tar.gz (3.4 MB view details)

Uploaded Source

Built Distribution

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

context_async_sqlalchemy-2.0.3-py3-none-any.whl (12.8 kB view details)

Uploaded Python 3

File details

Details for the file context_async_sqlalchemy-2.0.3.tar.gz.

File metadata

File hashes

Hashes for context_async_sqlalchemy-2.0.3.tar.gz
Algorithm Hash digest
SHA256 cb002289460b29bd3cd533c395a13969b61a419609a89f9cc442cf906fbdd6d9
MD5 de86cf7f585f909f40153d7c3d476fed
BLAKE2b-256 fc13aaa6739129748c98b8dbb214913a36a98532735f352d01abfdf7ea468dec

See more details on using hashes here.

File details

Details for the file context_async_sqlalchemy-2.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for context_async_sqlalchemy-2.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 9b15f5afa3de9f1f6d0d5311ff073d96ce63b3f9f9ba6f8a959400febf96af4e
MD5 61699adcad386daa172f4cd5d5474262
BLAKE2b-256 f4c469d2af02dccce7f2271cc7bf88d963e38ef789363219df8c564538bd9446

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