python3下django的msyql driver

在python 2下,django用的是MySQLdb,包名是MySQL-python,但是这个不兼容Python 3

官网https://pypi.python.org/pypi/MySQL-python

在Python 3,django推荐使用mysqlclient,包名也是mysqlclient,是基于MySQLdb的分支,但是支持python 3

官网https://pypi.python.org/pypi/mysqlclient

不推荐使用pymysql,这是python语言开发的,性能略低

参考链接

https://docs.djangoproject.com/en/1.10/ref/databases/

你可能感兴趣的:(python3下django的msyql driver)