I'm looking for something that can allow the usage of the Django ORM with asyncio (with PostgreSQL). As of now I found only aiopg in the asyncio ecosystem, which allows to run raw SQL or to use SQLAlchemy only.
I then found something in the django channels docs. is this:
https://github.com/django/channels/blob/master/channels/db.py
the missing piece that I was looking for?
Thanks