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

时间:2019-03-04 02:01:03

标签: python mysql

我在MySQL数据库中存储了Excel文件。我现在想连接到数据库并使用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)

1 个答案:

答案 0 :(得分:0)

提取整个文件并使用'openpyxl'。我只是快速搜索了excel文件阅读器库并找到了它。