ABOUT
=====
Utilities for working with JSON and json-like structures - deeply nested
Python dicts and lists.
This lets us iterate over child nodes and access elements with a dot-notation.

WHEEL
=====
To create a wheel use 
	pip wheel -w dist .

SDIST
=====
To create a source archive use
	python setup.py sdist

USAGE
=====
from wrapjson import wrapJSON

data = json.load(.....)
namespace = WrapJSON(data,[safe=True|False])
print(namespace.missingReport())
