Python: Convert CSV to JSON format

1 min read
import pandas as pd
# Load the dataset
dset_url = 'https://archive.org/download/misc-dataset/airline-tweets.csv'
df_airline = pd.read_csv(dset_url)
# Convert the DataFrame to JSON format
json_data = df_airline.to_json(orient='records', lines=True)
# Save the JSON data to a file
with open('airline_tweets.json', 'w') as json_file:
json_file.write(json_data)
print("JSON data has been saved to airline_tweets.json")
0
Subscribe to my newsletter
Read articles from Mohamad Mahmood directly inside your inbox. Subscribe to the newsletter, and don't miss out.
Written by

Mohamad Mahmood
Mohamad Mahmood
Mohamad's interest is in Programming (Mobile, Web, Database and Machine Learning). He studies at the Center For Artificial Intelligence Technology (CAIT), Universiti Kebangsaan Malaysia (UKM).