Does anyone know how can I convert JSON to XLS in Python?
I know that it is possible to create xls files using the package xlwt>
xls
xlwt>
Using pandas (0.15.1) and openpyxl (1.8.6):
import pandas pandas.read_json("input.json").to_excel("output.xlsx")