Metadata-Version: 1.1
Name: hjs
Version: 0.0.9
Summary: hjs, the missing bit of hjson
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 <http://github.com/hjson/hjson-py>`_
        
        .. image:: https://api.travis-ci.org/charbeljc/hjs.svg?branch=master
        .. image:: https://duckduckgo.com/i/bf0eb228.png
        .. code-block:: python
        
           >>> from hjs import  hjs, load, loads, dump, load
        
           >>> da = loads("""
           ... {
           ...    a: 1
           ...    b: are you ok with it ?
           ...    c: '''
           ...       what a rest,
           ...       isn't it ?
           ...       '''
           ...    t: {
           ...        a: you get the point, now :-)
           ...    },
           ...    values: 42
           ... }
           ... """)
        
           >>> assert da['values'] == 42
           >>> assert da.t.a == "you get the point, now :-)"
        
        install as usual with ``pip install hjs``
        
        By the way, you should support `pypi <https://pypi.python.org/pypi>`_, because, given the strategic importance of this project, it is *way* under budgeted, as I heard...
        
        Regards,
        @CJC_2017.
        
        
        
Keywords: json comments configuration
Platform: any
