【Python】读取Excel表格动态生成MySQL数据表并插入数据
2021/4/9 19:26:42
本文主要是介绍【Python】读取Excel表格动态生成MySQL数据表并插入数据,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
# coding: utf-8 import pymysql, xlrd from sqlalchemy import create_engine, Column, Integer, SmallInteger, String from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import sessionmaker """ 读取Excel动态生成数据表/字段,并插入记录 """ def make_model(Base, _TABLE_NAME, TABLE_COMMENT): class table_model(Base): __tablename__ = _TABLE_NAME id=Column(Integer,primary_key=True) # __table_args__ = (Index('index(zone,status)', 'resource_zone', 'resource_status'), \ # {'comment': '压测资源表'}) # 添加索引和表注释 __table_args__ = ({'comment': TABLE_COMMENT}) return table_model """ 连接数据库 """ engine = create_engine("mysql+pymysql://root:123456@127.0.0.1/flasktest", encoding='utf8', echo=True) """ 读取excel """ workbook = xlrd.open_workbook("./table.xls") sheet = workbook.sheet_by_index(0) nrows = sheet.nrows ncols = sheet.ncols table_name = sheet.cell_value(0,0) table_comment = sheet.cell_value(0,1) """ 创建数据表 """ Base = declarative_base() table = make_model(Base, table_name, table_comment) for i in range(0, ncols): field_name = sheet.cell_value(1, i) field_type = sheet.cell_value(2, i) field_comment = sheet.cell_value(3, i).strip().replace('\n', '').replace('\r', '') print(field_name, field_type, field_comment) if field_type=="Integer": setattr(table, field_name, (Column(field_name, Integer, comment=field_comment))) Base.metadata.create_all(engine) """ 连接数据表,插入数据 """ DBSession = sessionmaker(bind=engine) session = DBSession() datas = [] for i in range(5, nrows): data = table() for j in range(0, ncols): field_name = sheet.cell_value(1, j) field_value = sheet.cell_value(i, j) setattr(data, field_name, field_value) datas.append(data) session.add_all(datas) session.commit() # show create table xxx; # 查看带注释的表信息
这篇关于【Python】读取Excel表格动态生成MySQL数据表并插入数据的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-25如何部署MySQL集群资料:新手入门教程
- 2024-12-24MySQL集群部署资料:新手入门教程
- 2024-12-24MySQL集群资料详解:新手入门教程
- 2024-12-24MySQL集群部署入门教程
- 2024-12-24部署MySQL集群学习:新手入门教程
- 2024-12-24部署MySQL集群入门:一步一步搭建指南
- 2024-12-07MySQL读写分离入门:轻松掌握数据库读写分离技术
- 2024-12-07MySQL读写分离入门教程
- 2024-12-07MySQL分库分表入门详解
- 2024-12-07MySQL分库分表入门指南