error_value_python#

Module to check Python values.

Functions

check_Sequence_has_index

Check if a Sequence contains a required index.

check_Sequence_has_indices

Check if a Sequence contains required indices.

check_Sequence_has_value

Check if a Sequence contains a required value.

check_Sequence_has_values

Check if a Sequence contains all required values.

check_all_equal

Check whether an object's elements are all equivalent.

check_dict_has_keys

Check if a set of keys can be found among the keys of a provided dict.

check_dict_keys_all_type

Check if all keys in a dictionary are of a specific type.

check_dict_values_all_type

Check if all values in a dictionary have a specific type.

check_dict_values_have_equal_len

Check if all values in a dict have a equal lengths.

check_dict_values_len_eq

Check if all values in a dict have a specific length.

check_is_eq

Check if a Python object is equivalent to another Python object.

check_is_gt

Check if a Python object is greater than another Python object.

check_is_gteq

Check if a Python object is greater than or equal to another Python object.

check_is_in_interval_exclusive

Check if a value is in a specified interval (exclusive).

check_is_in_interval_inclusive

Check if a value is in a specified interval (inclusive).

check_is_lt

Check if a Python object is less than another Python object.

check_is_lteq

Check if a Python object is less than or equal to another Python object.

check_is_neq

Check if a Python object is not equal to another Python object.

check_is_not_None

Check if an object is not None.

check_len

Check if an object has a length equal to a provided value.

check_len_eq

Check is two objects have the same lengths.

check_str_value

Check if a string has an accepted value:

check_tuple_len_eq

Check if a tuple has a length equal to a provided value.