Compose#

class Compose(transforms)[source]#

Bases: object

Compose a series of transformations.

This class allows composing multiple transformations together. Each transformation is expected to be a callable that accepts keyword arguments and returns metadata.

Parameters:
transformsTuple[object]

A tuple containing transformation objects.

Returns:
Dict

Metadata resulting from the composed transformations.

Methods