@djangoproject · Post #187 · 14/10/2016 05:25
https://github.com/aio-libs/aiopg #aiopg is a library for accessing a #PostgreSQL database from the #asyncio (PEP-3156/tulip) framework. It wraps asynchronous features of the Psycopg #database driver.
TGINSIGHT SIMILAR POSTS
Chaîne source @OnePlusGuide · Post #2921 · 10 nov.
🔻AGGIORNAMENTO OXYGENOS STABILE PER ONEPLUS NORDN105G🔻 #NORD#N105G#OOS#STABILE • OP NORD N10 5G: 10.5.5 🔸Download: OP NORD N10 5G 🔸OP Thread Changelog Sistema • Ottimizzazione del consumo • Patch di sicurezza Android di ottobre 2020 Camera • Ottimizzata l'esperienza di scatto Pierre — Il nostro canale 👉🏻@oneplusguide I nostri gruppi 👉🏻@oneplusitcommunity
Recherche : #aiopg
@djangoproject · Post #187 · 14/10/2016 05:25
https://github.com/aio-libs/aiopg #aiopg is a library for accessing a #PostgreSQL database from the #asyncio (PEP-3156/tulip) framework. It wraps asynchronous features of the Psycopg #database driver.
@djangoproject · Post #167 · 22/09/2016 14:01
https://github.com/aio-libs/aiomysql #aiomysql is a "driver" for accessing a #MySQL database from the #asyncio (PEP-3156/tulip) framework. It depends on and reuses most parts of #PyMySQL . aiomysql tries to be like awesome #aiopg library and preserve same api, look and feel. Internally aiomysql is copy of PyMySQL, underlying io calls switched to async, basically yield from and asyncio.coroutine added in proper places)). sqlalchemy support ported from aiopg.
@djangoproject · Post #293 · 10/04/2017 09:41
http://aiomysql.readthedocs.io/en/latest/sa.html aiomysql.sa — support for SQLAlchemy functional SQL layer sqlalchemy support ported from #aiopg, so #api should be very familiar for aiopg user. While core API provides a core support for access to #MySQL#database, manipulations with raw SQL strings too annoying. Fortunately we can use excellent SQLAlchemy Core as SQL query builder. So you can execute SQL #query built by tbl.insert().values(val='abc') or tbl.select() expressions. #sqlalchemy has rich and very powerful set of SQL construction functions, please read tutorial for full list of available operations. Also we provide SQL transactions support. Please take a look on SAConnection.begin() method and family.