An object for grouping a collection of Transform objects.
Register the given Transform objects to the pipeline instance.
Recursively find and import modules, registering every module-level transform.
This method recursively finds and imports modules starting at the given module’s __path__. Each module found is imported and any attribute that is an instance of Transform as constructed by the transforms decorators will be registered to the pipeline.
Copied!1 2 3>>> import myproject >>> p = Pipeline() >>> p.discover_transforms(myproject)
Each module found is imported. Try to avoid executing code at the module-level.
The list of transforms registered to the pipeline.