Sometimes we may get dataset in csv format and need to be converted to json format. We can achieve this conversion by multiple approaches. One of the approaches is detailed below. The following program helps you to convert csv file into multiline json file. Based on your requirement, you can modify the field names and reuse this program.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import json | |
csv_file = open('data.csv', 'r') | |
json_file = open('data.json', 'w') | |
fieldnames = ("EmpID","FirstName","LastName","Salary") | |
reader = csv.DictReader( csv_file, fieldnames) | |
for row in reader: | |
json.dump(row, json_file) | |
json_file.write('\n') |
The sample input is give below.
1001,Amal,Jose,100000 1002,Edward,Joe,100001 1003,Sabitha,Sunny,210000 1004,John,P,50000 1005,Mohammad,S,75000
Output multiline json is given below.
{"EmpID": "1001", "FirstName": "Amal", "LastName": "Jose", "Salary": "100000"} {"EmpID": "1002", "FirstName": "Edward", "LastName": "Joe", "Salary": "100001"} {"EmpID": "1003", "FirstName": "Sabitha", "LastName": "Sunny", "Salary": "210000"} {"EmpID": "1004", "FirstName": "John", "LastName": "P", "Salary": "50000"} {"EmpID": "1005", "FirstName": "Mohammad", "LastName": "S", "Salary": "75000"}