Metadata-Version: 2.1
Name: verdict
Version: 1.1.2
Summary: A version of Python's dictionary with additional features
Home-page: https://github.com/zhafen/verdict
Author: Zach Hafen
Author-email: zachary.h.hafen@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: pandas (>=0.20.3)
Requires-Dist: mock (>=2.0.0)
Requires-Dist: numpy (>=1.14.5)
Requires-Dist: six (>=1.10.0)
Requires-Dist: setuptools (>=28.8.0)
Requires-Dist: h5py (>=2.7.0)

# verdict
A version of Python's dictionary class that has additional features.

Abbreviated feature list:

* Element-wise addition, subtraction, multiplication, and addition.
* Easy saving and loading to/from hdf5 files.
* Conversion to numpy arrays and pandas DataFrames.
* Easy access to contained objects' attributes, returned as another verdict.
* Nested dictionaries can be transposed, i.e. the nesting order can be changed.
* keymin and keymax, which find the extrema values in the dictionary and their keys.
* Subdivision according to the keys or a provided dictionary.

To install:
`pip install verdict`


