Metadata-Version: 1.1
Name: qjson
Version: 0.1.6
Summary: quick and dirty way to convert json string to python object
Home-page: https://github.com/jatsz/qjson
Author: Jerry Chou
Author-email: imjatsz@gmail.com
License: MIT License
Download-URL: https://github.com/jatsz/qjson/tarball/master
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]
        ```
        
        
        
        
        first upload to pypi
Keywords: json
Platform: UNKNOWN
