Metadata-Version: 1.0
Name: jsobject
Version: 0.9.13
Summary: Jsobject is simple implementation JavaScript-Style Objects                  in Python.
Home-page: http://mavier.github.io/jsobject
Author: Marcin Wierzbanowski
Author-email: marcin@wierzbanowski.com
License: MIT
Description: .. image:: https://pypip.in/version/jsobject/badge.svg
            :target: https://pypi.python.org/pypi/jsobject/
            :alt: Latest Version
        
        .. image:: https://pypip.in/download/jsobject/badge.svg
            :target: https://pypi.python.org/pypi/jsobject/
            :alt: Downloads
        
        .. image:: https://pypip.in/py_versions/jsobject/badge.svg
            :target: https://pypi.python.org/pypi/jsobject/
            :alt: Supported Python versions
        
        .. image:: https://pypip.in/license/jsobject/badge.svg
            :target: https://pypi.python.org/pypi/jsobject/
            :alt: License
        
        .. image:: https://pypip.in/status/jsobject/badge.svg
            :target: https://pypi.python.org/pypi/jsobject/
            :alt: Development Status
        
        jsobject: Objects for Humans
        ============================
        
        jsobject is simple implementation JavaScript-Style Objects in Python. It is distributed as a single file module and has no dependencies other than the `Python Standard Library <http://docs.python.org/library/>`_.
        
        Homepage and documentation: https://mavier.github.io/jsobject
        
        
        Example: "Hello World" with jsobject
        ------------------------------------
        
        .. code-block:: python
        
          from jsobject import Object
          data = {
            "boolean": True,
            "null": None,
            "number": 123,
            "objectA": {'a': 'b', 'c': {'d': 'e', 'f': {'g': 'h'}}}
            }
        
          jso = Object(data)
        
          print(jso.boolean)       # True
          print(jso.null)          # None
          print(jso.number)        # 123
          print(jso.objectA)       # {'a': 'b', 'c': {'d': 'e', 'f': {'g': 'h'}}}
          print(jso.objectA.a)     # b
          print(jso.objectA.c.d)   # e
          print(jso.objectA.c.f.g) # h
        
        Download and Install
        --------------------
        
        Install the latest stable release with ``pip install jsobject``, ``easy_install -U jsobject`` or download `jsobject.py <https://github.com/mavier/jsobject/raw/master/jsobject.py>`__ (unstable) into your project directory. There are no hard dependencies other than the Python standard library. Jsobject runs with **Python 2.6+ and 3.x**.
        
        Testing
        _______
        
        To run the tests use the `nosetest`.
        
        .. image:: https://travis-ci.org/mavier/jsobject.png?branch=master
            :target: https://travis-ci.org/mavier/jsobject
        
        .. image:: https://coveralls.io/repos/mavier/jsobject/badge.png
            :target: https://coveralls.io/r/mavier/jsobject
        
        
        License
        -------
        
        Code and documentation are available according to the `MIT License <https://raw.github.com/mavier/jsobject/master/LICENSE>`__.
        
        Tips
        -------
        
        .. image:: https://img.shields.io/gratipay/mavier.svg
            :target: https://gratipay.com/mavier
            :alt: Tips
        
Keywords: jsobject,Object,json,chain,javascript
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 :: 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
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
