Metadata-Version: 1.1
Name: jjson
Version: 0.0.3
Summary: A library of useful functions to get value from nested JSON
Home-page: https://github.com/festum/jjson
Author: Festum Qin
Author-email: festum@g.pl
License: MIT
Description-Content-Type: UNKNOWN
Description: JJSON
        =======================
        
        jQuery selector liked JSON query tool
        
        - `Source <https://github.com/festum/jjson>`_
        
        
        Example Usage
        -------------
        
        .. code-block:: python
        
        	import jjson
        
        	# Get string from nested JSON
        	j = {
        		"foo": {
        			"bar": {
        				"test": "hello world"
        			}
        		}
        	}
        	p = "foo.bar.test"
        	print jjson.extract(j, p)
        	# hello world
        
        
        Install
        -------
        
        The latest stable version can always be installed or updated via pip:
        
        .. code-block:: bash
        
        	$ pip install git+https://github.com/festum/jjson.git
        
        	# Alternative
        	$ pip install jjson
        
        
        TODO
        -------
        - CLI
        - Test case
        - Change value from certain node
        
        
        Contributions
        -------------
        
        .. _issues: https://github.com/festum/jjson/issues
        .. __: https://github.com/festum/jjson/pulls
        
        Issues_ and `Pull Requests`__ are always welcome.
        
        
        License
        -------
        
        .. __: https://github.com/festum/jjson/raw/master/LICENSE
        
        Code and documentation are available according to the MIT License
        (see LICENSE__).
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
