Skip to main content

CSJ for Python

Project description

CSJ Parser for Python

N|package Build Status

Comma Separated JSON (CSJ) is a CSV like file format designed for stream processing where each cell is valid JSON. This makes it very similar to CSV, but without the problems that CSV has.

For more information, please visit https://kirit.com/Comma%20Separated%20JSON

Installation

CSJ Parser requires Python 3.5 or later to run. CSJ Parser can be installed using pip:

$ pip install csj-parser

If you want the latest release, you can install from git:

$ pip install git+https://github.com/Proteus-tech/csj-parser.git

Examples

Convert JSON to CSJ

from csj_parser.csj import Csj

json_list = [
    {
        "key1" : "value1",
        "key2" : ["item1", "item2", "item3"],
        "key3" : {"key" : "value"}
    },
    {
        "key1" : 10,
        "key2" : None,
        "key3" : None
    }
]

# This function returns a string of data in CSJ format
def convert_json_to_csj(json_dict):
    csj_string = Csj.from_dicts(json_dict)
    return csj_string
    
convert_json_to_csj(json_list)

Output

"key1","key2","key3"
"value1",["item1","item2","item3"], {"key":"value"}
10,null,null

Convert CSJ to JSON

from csj_parser.csj import Csj

csj_str = '''"key1","key2","key3"\n"value1","value2","value3"\n"value4","value5","value6"\n'''

# This function returns a dictionary of data in JSON format
def convert_csj_to_json(csj_string):
    json_dict = Csj.to_dict(csj_string)
    return json_dict
    
convert_csj_to_json(csj_str)

Output

[{'key1': 'value1', 'key2': 'value2', 'key3': 'value3'},{'key1': 'value4', 'key2': 'value5', 'key3': 'value6'}]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

csj_parser-0.0.2.tar.gz (2.6 kB view details)

Uploaded Source

File details

Details for the file csj_parser-0.0.2.tar.gz.

File metadata

  • Download URL: csj_parser-0.0.2.tar.gz
  • Upload date:
  • Size: 2.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.13.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.6.7

File hashes

Hashes for csj_parser-0.0.2.tar.gz
Algorithm Hash digest
SHA256 5ea26b7ca879ded7937084ae902583ccd891fa7d11599c9d5b2a974baecf53ce
MD5 8a65a095b81dec9012dbb1d610e9766e
BLAKE2b-256 669b956f1ceaecbd1ceb444baa8cacd51abd5894a9a7963b05d1cc14986383f1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page