A converter to extract 'Plain Old Python Object' classes from JSON Schema files. Currenty compatible with python 3.4+
pip install jsonschema2popo
Basic:
jsonschema2popo -o /path/to/output_file.py /path/to/json_schema.json
object JSON encoding:
import json
g = GeneratedClass()
json.dumps(g.as_dict())