码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2020-01-18 01:04:09      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:cts   lse   mys   names   def   test   values   xlrd   name   

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(完整代码)

标签:cts   lse   mys   names   def   test   values   xlrd   name   

原文地址:https://www.cnblogs.com/lutt/p/12207871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!