用 Python 连接 MySQL 的三种方式

1、MySQL-python

        只支持 Python2.x,踩过坑的地方

2、mysqlclient

        pip3 install mysqlclient

3、PyMySQL

        PyMySQL 是纯 Python 实现的驱动,速度上比不上 MySQLdb,最大的特点可能就是它的安装方式没那么繁琐,同时也兼容 MySQL-python        

        pip3 install PyMySQL

        # 为了兼容mysqldb,只需要加入

        pymysql.install_as_MySQLdb()

你可能感兴趣的:(用 Python 连接 MySQL 的三种方式)