python 连接mysql相关
解决需要sudo才能登陆mysql的问题:
https://blog.csdn.net/m0_46278037/article/details/113923726
Python连接mysql(pandas):原作者:https://zhuanlan.zhihu.com/p/72347359
以下内容为搬运,方便自己看的
pip install pandaspip install sqlalchemypip install pymysqlimport pandas as pdfrom sqlalchemy import create_engine# 初始化数据库连接# 按实际情况依次填写MySQL的用户名、密码、IP地址、端口、数据库名engine = create_engine('mysql+pymysql://root:123456@localhost:3306/dbname')