2. fancytypes

fancytypes is a simple Python library that defines some classes with useful features, such as enforced validation, updatability, pre-serialization, and de-pre-serialization. These classes can be used to define more complicated classes that inherit some subset of the aforementioned features.

Classes

Checkable

A type that can perform user-defined validations and conversions of a set of parameters upon construction.

PreSerializable

A type that is pre-serializable, that can be constructed from a serializable representation, and that can perform user-defined validations and conversions of a set of parameters upon construction.

PreSerializableAndUpdatable

A type that is pre-serializable, that can be constructed from a serializable representation, that can perform user-defined validations and conversions of a set of parameters upon construction, and that has an updatable subset of attributes.

Updatable

A type that can perform user-defined validations and conversions of a set of parameters upon construction, and that has an updatable subset of attributes.

version