From this answer and PEP-249 we can Python MySQL client libraries might support a variety of parameter styles.
In the real world, not so much.
>>> pymysql.paramstyle
'format'
>>> MySQLdb.paramstyle
'format'
>>> oursql.paramstyle
'qmark'
Are there any client libraries that support a more readable paramstyle, like named or even pyformat?