Metadata-Version: 1.0
Name: json_reference
Version: 0.1.0
Summary: Simple implementation of the json-reference spec
Home-page: https://bitbucket.org/eodolphi/json-reference/
Author: Ernst Odolphi
Author-email: ernst.odolphi@gmail.com
License: UNKNOWN
Description: .. image:: https://drone.io/bitbucket.org/eodolphi/json-reference/status.png
           :target: https://drone.io/bitbucket.org/eodolphi/json-reference/latest
        
        JSON Reference
        =============
        
        Simple implementation of the json-pointer spec:
        
         http://tools.ietf.org/html/draft-pbryan-zyp-json-ref-00
        
        
        Usage
        ------------
        
        JSON reference makes it possible to retrieve (parts of) json-objects 
        
        >>> import json_reference
        >>> json_reference.Reference('http://json-schema.org/draft-04/schema#/definitions').get()
         
        It is also possible to register references for offline access
        
        >>> json_reference.register('http://localhost/test', {'test': 'bli'})
        
        >>> json_reference.Reference('http://localhost/test').get()
         {'test': 'bli'}
        
        
Platform: UNKNOWN
