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

return_de_pre_serialization_funcs

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.

return_pre_serialization_funcs

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.

return_validation_and_conversion_funcs

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

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