]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Add mention about mysqlclient
authorINADA Naoki <songofacandy@gmail.com>
Fri, 13 Mar 2015 04:44:23 +0000 (13:44 +0900)
committerINADA Naoki <songofacandy@gmail.com>
Fri, 13 Mar 2015 20:35:11 +0000 (05:35 +0900)
lib/sqlalchemy/dialects/mysql/mysqldb.py

index 0d125a24515aff969d29cffbda4a1a476967eac5..b18930b66379be29e35b18f79d08320e540288b4 100644 (file)
@@ -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