Skip to main content

Unwrap JSON responses from callback fns

Project description

# unwrapper [![Build Status](https://travis-ci.org/shaunvxc/unwrapper.svg?branch=master)](https://travis-ci.org/shaunvxc/unwrapper) [![PyPI version](https://badge.fury.io/py/unwrapper.svg)](https://badge.fury.io/py/unwrapper)

unwrapper is a small utility for unwrapping the callback function from an otherwise easily parseable json string.

###Usage * To unwrap the JSON from a callback function, and obtain a parsed dictionary: `python from unwrapper import unwrap unwrap('json13123({"a":1, "b": 2, "c": 3})') # returns this dict: {u'a': 1, u'c': 3, u'b': 2} ` * To simply unwrap the callback wrapper, use unwrap_raw: `python from unwrapper import unwrap_raw unwrap_raw('json13123({"a":1, "b": 2, "c": 3})') # returns '{"a":1, "b": 2, "c": 3}' `

####Command Line

$ curl “SOME CURL REQUEST RETURNING WRAPPED JSON” | unwrap

###Installation

$ pip install unwrapper

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

unwrapper-1.0.0.tar.gz (3.6 kB view hashes)

Uploaded Source

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