module documentation

Undocumented

Function create_namedtuple_class Undocumented
Function make_model_tuple Take a model or a string of the form "app_label.ModelName" and return a corresponding ("app_label", "modelname") tuple. If a tuple is passed in, assume it's a valid model tuple already and return it unchanged.
Function resolve_callables Generate key/value pairs for the given mapping where the values are evaluated if they're callable.
Function unpickle_named_row Undocumented
@functools.lru_cache
def create_namedtuple_class(*names): (source)

Undocumented

def make_model_tuple(model): (source)

Take a model or a string of the form "app_label.ModelName" and return a corresponding ("app_label", "modelname") tuple. If a tuple is passed in, assume it's a valid model tuple already and return it unchanged.

def resolve_callables(mapping): (source)

Generate key/value pairs for the given mapping where the values are evaluated if they're callable.

def unpickle_named_row(names, values): (source)

Undocumented