小陆同学

python 中文名:蟒蛇,设计者:Guido van Rossum

导航

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({})

posted on 2020-01-17 23:14  小陆同学  阅读(682)  评论(0编辑  收藏  举报