Given a json file in the following format:
"name":"list_of_xy_values",
"data":[[1,2],[2,4],[3,6],[4,3],[5,0]]
I'd like to import data to my document to plot it with tikz/pgfplots, but I'm rather unexperienced with LaTeX.
Is there a library that can import json directly?
If a direct import is not possible, I could easily convert the desired data to a csv file with python. In this case I wonder if and how I can trigger the python script from within latex, so that the data is converted automatically when the LaTeX script compiles and without me needing to call the script manually each time.
