psqlpy
psqlpy copied to clipboard
Asynchronous Python PostgreSQL driver written in Rust
Possible to add Open Telemetry instrumentation into psqlpy? This will give us good traceability. Reference https://github.com/open-telemetry/opentelemetry-python-contrib/tree/main/instrumentation/opentelemetry-instrumentation-asyncpg
I'd like to be able to add a callback handler similar to asyncpg's [`connection.add_listener(...)`](https://magicstack.github.io/asyncpg/current/api/index.html#asyncpg.connection.Connection.add_listener) I'm agnostic on the API, if there is a more idiomatic PSQLPy abstraction or interface that's...
#### Problem Currently, PSQLPy lacks a dedicated SQLAlchemy dialect, making it impossible to use PSQLPy as a backend with SQLAlchemy for seamless database interactions. This is a significant limitation for...
There's a different project for storing vectors: https://github.com/tensorchord/pgvecto.rs It'd nice to have integration as well.
Postgres allow to add SET statements to set some parameters. Eg: SET datestyle TO postgres, dmy; SET TIME ZONE 'America/Los_Angeles'; How can use these SET statements as part of executing...