opkmix.blogg.se

Convert json to csv python
Convert json to csv python




convert json to csv python

If you want to configure the output, check out the documentation page for the to_csv function here Pandas has a convenient function for this: df.to_csv('input.csv', index=False, encoding='utf-8')Īnd here is the resulting CSV file: id,name,address.city Now that our data is normalized to a tabular format, let’s write our CSV file! In our case, if we print the resulting dataframe, it will look something like this: print(df) id name address.cityĪs you can see the address which was an object, was flattened out to a column.

convert json to csv python convert json to csv python

With open('input.json', encoding='utf-8') as file:īecause the JSON format can hold structured data like nested objects and arrays, we have to normalize this data so that it can be respresented in the CSV format.Ī quick way to do this is to use the pandas.normalize_json function, which will take JSON data and normalize it into a tabular format, you can read more about this function here. Let’s load the JSON file using the json Python module: import json You can install pandas using pip running this command: $ pip install pandas You could technically use the standard json and csv modules from Python to read the JSON file and write a CSV file, but depending on how your JSON file is structured, it can get complicated, and pandas has some great functions to handle these cases, without mentioning it’s really fast, so that’s what we will use. Let’s say we have a JSON file that looks like this: [ In this tutorial we’ll be converting a JSON file to CSV using Python.






Convert json to csv python