Skip to main content

quick and dirty way to convert json string to python object

Project description

qjson
=====

quick and dirty way to convert json string to python object.

# install

`$pip install qjson`

or

just copy the qjson/qjson.py to your project.

#usage

```python
import qjson

json_str = '{"person":\
{"name":"jerry", "age":32, "web":{"url":"http://jatsz.org", "desc":"blog"}}, \
"grade": "a", "score":[80,90]}'

info = qjson.loads(json_str)

assert info.person.name == "jerry"
assert info.grade == "a"
assert info.score == [80, 90]
```




-0.1.8:
fix array as top element, which also has object within it.

-0.1.8:
supporting array has object as element.

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

qjson-0.1.9.tar.gz (2.3 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