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(完整代码)的主要内容,如果未能解决你的问题,请参考以下文章
dropdelete与truncate的区别 和 delete是否记录日志