dataeval.types.MappingOutput

class dataeval.types.MappingOutput(data)

An Output that wraps a mapping and proxies its interface.

data()

Return the output data as a collection.

Return type:

Collection

get(key, default=None)

D.get(k[,d]) -> D[k] if k in D, else d. d defaults to None.

items()

D.items() -> a set-like object providing a view on D’s items

keys()

D.keys() -> a set-like object providing a view on D’s keys

meta()

Metadata about the execution of the function or method for the Output class.

Return type:

ExecutionMetadata

values()

D.values() -> an object providing a view on D’s values