Python使用pymysql从MySQL数据库中读出数据的方法
python3.x已经不支持mysqldb了,支持的是pymysql
使用pandas读取MySQL数据时,使用sqlalchemy,出现No module named ‘MySQLdb'错误。
安装:打开Windows PowerShell,输入pip3 install PyMySQL即可
import pymysql.cursors import pymysql import pandas as pd #连接配置信息 config = { 'host':'127.0.0.1', 'port':3306,#MySQL默认端口 'user':'root',#mysql默认用户名 'password':'1234', 'db':'house',#数据库 'charset':'utf8mb4', 'cursorclass':pymysql.cursors.DictCursor, } # 创建连接 con= pymysql.connect(**config) # 执行sql语句 try: with con.cursor() as cursor: sql="select * from community_view" cursor.execute(sql) result=cursor.fetchall() finally: con.close(); df=pd.DataFrame(result)#转换成DataFrame格式 df.head()
相关推荐
JamesRayMurphy 2020-05-31
zjyhll 2020-05-06
bcbeer 2020-04-16
Yasin 2020-02-13
pythonxuexi 2019-12-16
学习备忘录 2019-12-02
愿天下再无BUG 2020-06-25
阿亮 2020-06-22
liuweiq 2020-06-14
variab 2020-06-14
CloudXli 2020-06-04
sunnyxuebuhui 2020-06-04
测试自动化顾问 2020-05-29
heniancheng 2020-05-26
huolan 2020-05-12
kuwoyinlehe 2020-05-07
huangliang00 2020-05-03
sulindong0 2020-04-30