有谁知道如何在 Python 中将 JSON 转换为 XLS?
我知道可以使用Pythonxls
中的包创建文件。xlwt
如果我想直接将JSON
数据转换为XLS
文件怎么办?
有没有办法存档这个?
使用 pandas (0.15.1) 和 openpyxl (1.8.6):
import pandas
pandas.read_json("input.json").to_excel("output.xlsx")
我通常将 tablib 用于此用途。使用起来非常简单: https ://pypi.python.org/pypi/tablib/0.9.3
如果您的 json 文件存储在某个目录中,那么,
import pandas as pd
pd.read_json("/path/to/json/file").to_excel("output.xlsx")
如果您在代码中有您的 json,那么您可以简单地使用 DataFrame
json_file = {'name':["aparna", "pankaj", "sudhir", "Geeku"],'degree': ["MBA", "BCA", "M.Tech", "MBA"],'score':[90, 40, 80, 98]}
df = pd.DataFrame(json_file).to_excel("excel.xlsx")
如果有人想使用 Flask-REST 以流的形式输出到 Excel
熊猫版本:
json_payload = request.get_json()
with NamedTemporaryFile(suffix='.xlsx') as tmp:
pandas.DataFrame(json_payload).to_excel(tmp.name)
buf = BytesIO(tmp.read())
response = app.make_response(buf.getvalue())
response.headers['content-type'] = 'application/octet-stream'
return response
和 OpenPyXL 版本:
keys = []
wb = Workbook()
ws = wb.active
json_data = request.get_json()
with NamedTemporaryFile() as tmp:
for i in range(len(json_data)):
sub_obj = json_data[i]
if i == 0:
keys = list(sub_obj.keys())
for k in range(len(keys)):
ws.cell(row=(i + 1), column=(k + 1), value=keys[k]);
for j in range(len(keys)):
ws.cell(row=(i + 2), column=(j + 1), value=sub_obj[keys[j]]);
wb.save(tmp.name)
buf = BytesIO(tmp.read())
response = app.make_response(buf.getvalue())
response.headers['content-type'] = 'application/octet-stream'
return response