Read excel storage python-- MySQL (complete code) frame by django

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

Guess you like

Origin www.cnblogs.com/lutt/p/12207871.html