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.
Functions
Get a set of callables that are assumed to be de-pre-serialization functions, from a given namespace, according to a given set of construction parameter names. |
|
Get a set of callables that are assumed to be pre-serialization functions, from a given namespace, according to a given set of construction parameter names. |
|
Get a set of callables that are assumed to be validation and conversion functions, from a given namespace, according to a given set of construction parameter names. |
Classes
A type that can perform user-defined validations and conversions of a set of parameters upon construction. |
|
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. |
|
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. |
|
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. |