]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
Add async_engine_from_config()
authorNils Philippsen <nils@tiptoe.de>
Sat, 13 Nov 2021 16:11:32 +0000 (11:11 -0500)
committerFederico Caselli <cfederico87@gmail.com>
Fri, 10 Dec 2021 16:21:45 +0000 (17:21 +0100)
commitfe9906b5f367972e3f3903c229ac0f3603c7318a
treea965059bcb029f7adc16910e3f05eee17867ddb0
parent53bb56071deec3ebc23a13a7ab7eac5689b473d0
Add async_engine_from_config()

Added :func:`_asyncio.async_engine_config` function to create
an async engine from a configuration dict.  This otherwise
behaves the same as :func:`_sa.engine_from_config`.

Fixes: #7301
Closes: #7302
Pull-request: https://github.com/sqlalchemy/sqlalchemy/pull/7302
Pull-request-sha: c7c758833b6c37b7509b8c5bed4f26ac0ccc0395

Change-Id: I64feadf95b5015c24fe0fa0dbae6755b72d1713e
(cherry picked from commit 98b1650efce79ae6d304eb08047890ef8ae89df1)
doc/build/changelog/unreleased_14/7301.rst [new file with mode: 0644]
doc/build/orm/extensions/asyncio.rst
lib/sqlalchemy/ext/asyncio/__init__.py
lib/sqlalchemy/ext/asyncio/engine.py
test/ext/asyncio/test_engine_py3k.py