Convert JSON to CSV
This commit is contained in:
15
converter.py
Normal file
15
converter.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import json
|
||||
|
||||
if __name__ == '__main__':
|
||||
try:
|
||||
with open('input.json', 'r') as f:
|
||||
data = json.loads(f.read())
|
||||
|
||||
output = ','.join([*data[0]])
|
||||
for obj in data:
|
||||
output += f'\n{obj["Name"]},{obj["age"]},{obj["birthyear"]}'
|
||||
|
||||
with open('output.csv', 'w') as f:
|
||||
f.write(output)
|
||||
except Exception as ex:
|
||||
print(f'Error: {str(ex)}')
|
||||
Reference in New Issue
Block a user