Metadata-Version: 2.0
Name: jaccs
Version: 1.0.0
Summary: Write strings to access nested JSON objects
Home-page: https://github.com/jiffyclub/jaccs
Author: Matt Davis
Author-email: jiffyclub@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
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

Jaccs - JSON Access Strings
===========================

.. image:: https://travis-ci.org/jiffyclub/jaccs.svg?branch=master
   :target: https://travis-ci.org/jiffyclub/jaccs

Jaccs allows you to pull data from JSON objects using string Python
expressions. For example::

    >>> from jaccs import access
    >>> access({'a': 'b': [{'c': 1}, {'c': 2}]}, '_.a.b[1].c')
    2

This is expected to be most useful for combining specifications stored in
external text files (say JSON or YAML) with data objects in Python.

Documentation is at https://jiffyclub.github.io/jaccs/.


