gpt4 book ai didi

python - 是否可以使用Python读取存储在MySQL数据库中的excel文件?

转载 作者:行者123 更新时间:2023-11-29 16:14:12 24 4
gpt4 key购买 nike

我将Excel文件存储在MySQL数据库中。我现在想连接到数据库,并使用Pandas / Python从这些文件创建数据框。这可能吗?当我连接到数据库并获取信息时,它只是为我提供了文本形式的条目,即

try:
cursor = cnx.cursor()
cursor.execute("""
select * from ExcelFiles
""")
result = cursor.fetchall()
print(result)
finally:
cnx.close()


输出:


  (38,'Game 1.xlsx',9561,
  'application / vnd.openxmlformats-officedocument.spreadsheetml.sheet',
  datetime.datetime(2019,3,3,22,55,52),'上传/游戏1.xlsx','1',
  2)

最佳答案

解压缩整个文件并使用“ openpyxl”。我只是对excel文件阅读器库进行了快速搜索,发现了这一点。

关于python - 是否可以使用Python读取存储在MySQL数据库中的excel文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54975692/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com