Based on this great answer by zzzeek, I would like to use SQLAlchemy + PostgreSQL with gevent. My problem is that I don't know what is an up-to-date PostgreSQL driver for such scenario.
Before I always used psycopg2, as I found it to be extremely stable and reliable.
My problem is that if I understand right psycopg2 needs to be monkey-patched to work under gevent, right? And the only way to do it is to use psycogreen, a project whose latest PyPi release is from 2012, has not been updated since 2015 and doesn't support Python 3.
How do you use SQLAlchemy in a concurrent way today? Is it simply not possible?