Which Python MySQL client libraries support named parameters? -
from this answer , pep-249 can python mysql client libraries might support variety of parameter styles.
in real world, not much.
>>> pymysql.paramstyle 'format' >>> mysqldb.paramstyle 'format' >>> oursql.paramstyle 'qmark'
are there client libraries support more readable paramstyle, named or pyformat?