一.离线json文件
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import csv
#获取json数据
import json
with open('json.txt', 'r') as f:
rows = json.load(f)
#创建文件对象
f = open('data.csv', 'w')
#通过文件创建csv对象
csv_write = csv.writer(f)
#writerow: 按行写入, writerows: 是批量写入
#写入数据 取列表的第一行字典,用字典的key值做为头行数据
csv_write.writerow(rows[0].keys())
#循环里面的字典,将value作为数据写入进去
for row in rows:
csv_write.writerow(row.values())
#关闭打开的文件
f.close()
二.导入表格
找到数据里面的自文本,导入上面的csv格式文件