“CSV à JSON” Réponses codées

JSON à CSV

# call csvkit (which is a Python tool) to convert json to csv:
# https://csvkit.readthedocs.io/en/latest/

in2csv data.json > data.csv
Troubled Tapir

CSV à JSON

python -c "import csv,json;print json.dumps(list(csv.reader(open('csv_file.csv'))))"
Thankful Thrush

Convertir JSON en CSV

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)}')
Harendra

Réponses similaires à “CSV à JSON”

Questions similaires à “CSV à JSON”

Plus de réponses similaires à “CSV à JSON” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code