Unwrap JSON responses from callback fns
Project description
# unwrapper [](https://travis-ci.org/shaunvxc/unwrapper) [](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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file unwrapper-1.0.0.tar.gz
.
File metadata
- Download URL: unwrapper-1.0.0.tar.gz
- Upload date:
- Size: 3.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5ca46318e158e1ec61748a28b8a14e8dbdd3e9a60947dd35d3a7d0607634425a
|
|
MD5 |
48ba6170547f08a60346451f3ab3228e
|
|
BLAKE2b-256 |
2f0a84cd44d725ec91b0acb22b8a2292f0ca64f39dde259e5f2da70f7227c06e
|