From 761e5282129a9f2788aa21336353f03cf31cf985 Mon Sep 17 00:00:00 2001 From: krylosov-aa Date: Thu, 22 Jan 2026 21:44:23 +0300 Subject: [PATCH] add context-async-sqlalchemy to Framework Integrations --- README.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.rst b/README.rst index f498867..c770b69 100644 --- a/README.rst +++ b/README.rst @@ -480,6 +480,13 @@ zope.sqlalchemy_ As such it seeks only to provide a data manager and makes no attempt to define a zopeish way to configure engines. +context-async-sqlalchemy_ + Provides a convenient way to work with sessions in asynchronous applications using context. + 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 worrying about opening or closing it when it’s not necessary. + + .. _Bottle: https://bottlepy.org/ .. _bottle-sqlalchemy: https://github.com/iurisilvio/bottle-sqlalchemy .. _filteralchemy: https://github.com/jmcarp/filteralchemy @@ -495,6 +502,7 @@ zope.sqlalchemy_ .. _webargs: https://github.com/marshmallow-code/webargs .. _Zope: https://www.zope.org/ .. _zope.sqlalchemy: https://pypi.org/project/zope.sqlalchemy/ +.. _context-async-sqlalchemy: https://github.com/krylosov-aa/context-async-sqlalchemy Other