asyncpgsa icon indicating copy to clipboard operation
asyncpgsa copied to clipboard

A wrapper around asyncpg for use with sqlalchemy

Results 16 asyncpgsa issues
Sort by recently updated
recently updated
newest added

Regarding #42 (which applies the type bind processors when adding parameters to the queries), I found that the reverse direction is not working yet — the type result processors (both...

execute_defaults assumes the query.parameters can't be a list, which is the case in a multirow insert like: q = table.insert().values([ {'val': 12}, {'val': 13}, ]) conn.execute(q)

Hi, we find the library very handy above all the fact that automagically compiles the queries, however we noticed (and it's kinda annoying) that connection from pool is not supporting...

enhancement

The pool should support the postgres EXPLAIN command. Pass in a sqlalchemy query, and get the explain results for it.

enhancement
Hacktoberfest

This MR modernizes developer tools, introduces code formatting, replaces Travis CI with GitHub Actions. ### `psycopg2` no longer installed for testing `asyncpg` is capable of running DDLs nowadays, so we...

Hello! Today I've installed asyncpgsa==0.27.1 which in turn installed asyncpg==0.27.0 In project I have sqlalchemy==2.0.9 When I'm doing basic `import asyncpgsa` get error ``` Traceback (most recent call last): File...