Herramienta para convertir JSON a excel

Consulta técnica sobre FortiEDR

DescripciónEste artículo describe cómo convertir archivos JSON a Excel.
AlcanceFortiEDR.
Solución

Este script de python convertirá JSON a CSV:

 

https://fortiedr.sharefile.com/d-s454b54b46e844d0a9d0630c6d1e274cc

Guarde el archivo de respuesta de Postman como response.json en una carpeta y coloque el script jsontocsv.py en la misma carpeta y ejecútelo.

python3 jsontocsv.py

import jsonimport csvwith open(‘response.json’) como json_file:

 

jsondata = json.load(json_file) data_file = open(‘jsonoutput.csv’, ‘w’, newline=») csv_writer = csv.writer(data_file) count = 0para datos en jsondata: if count == 0: header = data.keys() csv_writer.writerow(header) cuenta += 1 csv_writer.writerow(data.values()) data_file.close()

¡Déjanos cualquier duda sobre FortiEDR aquí abajo!

¿Te ha resultado útil??

0 / 0

Deja una respuesta 0

Your email address will not be published. Required fields are marked *