Metadata-Version: 1.1
Name: hjs
Version: 0.0.7
Summary: hjs, the missing bit of hjson-py
Home-page: http://github.com/charbeljc/hjs
Author: Charbel Jacquin
Author-email: charbel.jacquin@gmail.com
License: MIT License
Description: ===
        hjs 
        ===
        
        ``hjs`` is a thin wrapper around `hjson-py <http://github.com/hjson/hjson-py>`_
        
        .. image:: https://duckduckgo.com/i/bf0eb228.png
        .. code-block:: python
        
           >>> from hjs import hjs, dumps, loads, dump, load
        
           >>> da = hjs("""
           ... {
           ...    a: 1
           ...    b: are you ok with it ?
           ...    c: '''
           ...       what a rest,
           ...       isn't it ?
           ...       '''
           ...    t: {
           ...        a: you get the point, now :-)
           ...    },
           ...    value: 42
           ... }
           ... """)
        
           >>> assert da['value'] == 42
           >>> assert da.t.a == "you get the point, now :-)"
        
        install as usual with ``pip install hjs``
        
        Regards,
        @CJC.
        
        
Keywords: json comments configuration
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: License :: OSI Approved :: Academic Free License (AFL)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
