Skip to main content

A JSON-like object parsing tool for python

Project description

https://github.com/elisong/jparse/blob/master/jparse.png
Build Status PyPI PyPI - Python Version Coverage Status

This tool is created to make retrieving data from http response.json() or json library json.loads() easy. It helps to flatten, filter, select, update, and sort such objects, finally to_df (pandas.DataFrame format).

Simple Case

>>> from jparse import JParser
>>> jp = JParser()
>>> TEST_CASE1 = [{'A1': 1, 'A2': 2, 'A3': 3},
                  {'A1': [4, 5, 6], 'A2': 7, 'A3': 'x'}]
>>> print(jp.flatten(TEST_CASE1))
defaultdict(None, {'0_A1': 1,
                   '0_A2': 2,
                   '0_A3': 3,
                   '1_A1_0': 4,
                   '1_A1_1': 5,
                   '1_A1_2': 6,
                   '1_A2': 7,
                   '1_A3': 'x'})

Dependencies

Installation

pip install jparse

or

pip install git+https://github.com/elisong/jparse.git#egg=jparse

Document

Document here

Changelog

v0.1.5 - 2018-08-18

  • Changed remove JParser.to_df() reset_index()

v0.1.4 - 2018-08-15

  • Changed license.

v0.1.3 - 2018-08-13

  • Added project.

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

jparse-0.1.5.tar.gz (8.6 kB view hashes)

Uploaded Source

Built Distribution

jparse-0.1.5-py2.py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 2 Python 3

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