Coder Social home page Coder Social logo

py-json2csv's Introduction

py-json2csv

A JSON to CSV converter made with Python

Copyright (C) Marco Conti 2014 - [email protected]

https://www.marco83.com/work

Scope

It converts a JSON file with a set of records (array of dictionaries) into a CSV representation of those records.

Details

Flattening vector fields

Since dictionaries can have some fields that are arrays, the corresponding CSV representation will be flattened.

E.g. the following JSON record

{
    "name" : "Marco",
    "aka" : ["MC", "Marco C"]
}

will be converted to

# headers
name,aka_1,aka2
# values
Marco,MC,Marco C

JSON path

The list of records in the JSON doesn't need to be the top-level object. Nested objects like the one containing the records (name:A and name:B ) in the following example:

{
    "data" : [
        {
            "payload" : "foo"
        },
        {
            "records" : [
                {
                    "name" : "A"
                },
                {  
                    "name" : "B"
                }
            ]
        }
    
    ]
}

can be accessed with the following path syntax:

data,1,records

which means: data field, second element (0-based indexing), records field

Sample usage

Type

./json2csv.py --help

for a list of options

Try:

./json2csv.py -o o.txt -p queries,1,results sample.json

It will convert the sample.json into o.txt

py-json2csv's People

Contributors

marcoconti83 avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.