I’ve looked at quart and it looks interesting but is there much point to running an async webserver for APIs mainly reliant on db-access if we use SQLAlchemy for database connections?
I’m under the impression that since the db stuff still is sync/blocking we won’t win much by running an asgi server instead of WSGI.