Metadata-Version: 2.1
Name: dict-objectify
Version: 0.0.2
Summary: Dictionary to Object hierarchy mapper.
Home-page: https://github.com/reljicd/dict-objectify
Author: Dusan Reljic
Author-email: reljicd@google.com
License: Apache Software License
Keywords: mapper mapping dict dictionary object oop xml json csv
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: Operating System :: POSIX
Classifier: Operating System :: MacOS
Classifier: Operating System :: Unix
License-File: LICENSE

Dict Objectify (DO) allows specification of python classes hierarchy that are 
backed by dictionaries. Specification is done similar to ORM frameworks, 
by declaratively specifying dictionary keys as fields, 
Every field is defined as either nested (DO) class for nested dictionaries 
or one of the provided type classes for values of the 
type: int, float, text, bool, array, datetime or enum.

Mapping between dictionaries and these objects works both ways.

This allows easy parsing of hierarchical documents into python object hierarchy, 
doing pre processing on dict values, doing any kind of processing on 
that hierarchy and then transforming root objects back into dictionaries 
for eventual dumping into same document formats.
