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.1.5.tar.gz (3.6 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.1.5-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for context_async_sqlalchemy-2.1.5.tar.gz
Algorithm Hash digest
SHA256 287846206800918e5b73835c95f29b0a5edd2328f9d9d9b269e5b54b36bb1c51
MD5 e54975859c5e7119bc1d0d986f702514
BLAKE2b-256 bd73b13af8b1d52b907429b01d49e60554a7381e1e5ec6168cbce97f4506eef7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for context_async_sqlalchemy-2.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 fefea5163016514e76285bca313a15c30497fc683d111e6d8d21db0715169819
MD5 b86e97a501c715f224403f29c65566f0
BLAKE2b-256 58f7c4858bb476305ff650cf339fc5d52bc08a81f6a613b4eb86a4cce98578f8

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