0 purchases
unwrapper 1.0.0
# 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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.