We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In version 1.4.0 of mysqlclient they moved the _mysql module into the MySQLdb package (PyMySQL/mysqlclient#293).
mysqlclient
_mysql
MySQLdb
Will you be interested in accepting a pull request that adds support for this version of mysqlclient? It can be done in a backward compatible way:
try: import _mysql except ImportError: from MySQLdb import _mysql
The text was updated successfully, but these errors were encountered:
It looks like it will require an update in memsql.common.conversions as well, as the current code assumes converters are arrays.
memsql.common.conversions
Sorry, something went wrong.
Sorry for the huge delay on this - please check it out and let me know if you run into any issues.
No branches or pull requests
In version 1.4.0 of
mysqlclient
they moved the_mysql
module into theMySQLdb
package (PyMySQL/mysqlclient#293).Will you be interested in accepting a pull request that adds support for this version of
mysqlclient
? It can be done in a backward compatible way:The text was updated successfully, but these errors were encountered: