]> 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:20:31 +0000 (17:20 +0100)
commit98b1650efce79ae6d304eb08047890ef8ae89df1
tree290ad5959858679b1b810a047fc54b4eafc070d4
parent9d837b02b5eb42385281b88d09fe2aeea0376ca9
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
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