python--读取excel通过django框架入库mysql(完整代码)

Posted 小陆同学

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python--读取excel通过django框架入库mysql(完整代码)相关的知识,希望对你有一定的参考价值。

import xlrd , uuid
class
JenkinsImport(View): def get(self,request): xls = xlrd.open_workbook(./test.xls) sheets = xls.sheet_names() # 所有sheet,列表 table = xls.sheets()[1] rows = table.nrows for line in range(1, rows): item = table.row_values(line) print(item) text = item[1] # excel第二列 snippet = Categroy.objects.create( text = text if text else None, cate_uuid=uuid.uuid4(), )return JsonResponse({})

以上是关于python--读取excel通过django框架入库mysql(完整代码)的主要内容,如果未能解决你的问题,请参考以下文章

在Django中读取使用html表单上传的Excel文件

java通过apache poi框架读取2007版Excel文件

Python3+requests+unittest+log+excel+HTMLTestRunner+email框架接口自动化案例⑶——测试数据读取

竟如此简单,使用 Excel 和 Python 轻松从互联网获取数据

python_reques接口测试框架,Excel作为案例数据源

Linux(CentOS7)系统中部署Django web框架