From: INADA Naoki Date: Fri, 13 Mar 2015 04:44:23 +0000 (+0900) Subject: Add mention about mysqlclient X-Git-Tag: rel_1_0_0b2~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69dadc88e0b95e0fe1936ae09fd7d3e085f1df0a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Add mention about mysqlclient --- diff --git a/lib/sqlalchemy/dialects/mysql/mysqldb.py b/lib/sqlalchemy/dialects/mysql/mysqldb.py index 0d125a2451..b18930b663 100644 --- a/lib/sqlalchemy/dialects/mysql/mysqldb.py +++ b/lib/sqlalchemy/dialects/mysql/mysqldb.py @@ -28,8 +28,10 @@ unicode** will include both charset and use_unicode=0:: create_engine("mysql+mysqldb://user:pass@host/dbname?charset=utf8&use_unicode=0") -As of this writing, MySQLdb only runs on Python 2. It is not known how -MySQLdb behaves on Python 3 as far as unicode decoding. +As of this writing, MySQLdb only runs on Python 2 and development has been stopped. +`mysqlclient`_ is fork of MySQLdb and provides Python 3 support and some bugfixes. + +.. _mysqlclient: https://github.com/PyMySQL/mysqlclient-python Known Issues