PostprocessGroup
- class PostprocessGroup
-
- property name
The name of the group.
- Type
- Raises
ReadOnlyError -- If
Database
is in read only mode.
- list_postprocesses()
List the postprocesses of this group.
- Returns
The list of postprocesses in the group.
- Return type
- remove(force=False)
Delete a postprocess group
Note
By default, only empty groups can be deleted (
NotEmptyError
is raised otherwise), useforce
to force deletion of non empty groups.- Parameters
force (bool) -- Force the deletion of the group even if it contains postprocess.
- Raises
NotEmptyError -- If
force
isFalse
and the group contains postprocess.ReadOnlyError -- If
Database
is in read only mode.
- create_postprocess(name)
Create a new postprocess.
- Parameters
name (str) -- The name of the new postprocess.
- Returns
The newly created postprocess.
- Return type
- Raises
ReadOnlyError -- If
Database
is in read only mode.