Metadata-Version: 2.0
Name: JsonPydexer
Version: 0.2.3
Summary: A (python) indexer for large collections of json files
Home-page: http://github.com/cl3wis/JsonPydexer
Author: Christian Bailey (me@christianbailey.me)
Author-email: me@christianbailey.me
License: MPL 2.0
Keywords: json index
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)

# JsonPydexer
A (python) indexer for large collections of json files.
In development and probably not good for general use yet. 
## Usage
```python
from JsonPydexer import JsonPydexer

#initialize with the root directory containing your json files (directory recursion coming soon!)
jp = JsonPydexer("test_data/1")

#index on the given key, creating the file _id.pickle, containing a pickled dict of _id: filename
jp.index("_id")

#index on the given list of nested keys ie {"foo": {"guid": value}}, creating the file fooguid.pickle
jp.index(["foo", "guid"])
```


