python使用pandas将mysql数据表转为excel表格

Posted PH1998

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用pandas将mysql数据表转为excel表格相关的知识,希望对你有一定的参考价值。

import time

import pymysql
import pandas as pd

# 连接mysql
conn = pymysql.connect(
    host="localhost", user="BB",
    password="10086", database="save_web_data",
    charset="utf8"
)
# 读取数据库
slq_1 = """select * from save_web_data"""

# 使用pandas获取数据
data = pd.read_sql(slq_1, conn)
conn.close()
# 初始化对象             # 表格
writer = pd.ExcelWriter(\'web_shuju.xlsx\')

# 获取年月日
date_ri_qi = time.strftime(\'%Y-%m-%d\')  # 2021-06-01

# 利用to_excel() 将不同的数据框及其对应的sheet名称写入该writer对象中
data.to_excel(writer, sheet_name=\'%s\' % date_ri_qi)
# 数据写出到excel文件中,最后保存
writer.save()

以上是关于python使用pandas将mysql数据表转为excel表格的主要内容,如果未能解决你的问题,请参考以下文章

python中如何将csv文件转为xls文件

Python读取excel中的一(多)列并转为数组

将 pandas 数据帧旋转为具有多层的长格式

Pandas 将数据插入 MySQL

从 MySQL 将数值数据加载到 python/pandas/numpy 数组中的最快方法

python Python PANDAS:将数据帧加载并保存到sqlite,MySQL,Oracle,Postgres