from sqlalchemy import create_engine sqlcont = create_engine('mysql://root:root@127.0.0.1:3306/test?charset=utf8')
报错:
ModuleNotFoundError: No module named 'MySQLdb'
解决方法:
MySQLdb只支持Python2.*,还不支持3.*
可以用PyMySQL代替。安装方法:pip install PyMySQL
在
from sqlalchemy import create_engine
前加
import pymysql pymysql.install_as_MySQLdb()