50 Python Scripts for Automating Everyday Tasks
1. Convert JSON to CSV This script will convert your JSON data to a CSV file.
It takes .json a file as input and provides .csv the file as output.
Installation pip install json
import json
if __name__ == '__main__':
try:
with open('inp...
hothead01th.hashnode.dev22 min read