redivis.transform
redivis.transform(name) → Transform
Construct a new transform instance.
Parameters:
name
: str
The reference to the transform. Must provide a fully qualified reference, unless if a default workflow is set (in a Redivis notebook, the default workflow is always set).
Learn more about referencing resources >
Returns:
Examples
username = "imathews"
workflow_name = "example_workflow_climate_analysis:x7kh"
transform_name = "join_lat_lon:m9tz"
transform = redivis.transform(f"{username}.{workflow_name}.{transform_name}")
transform.run()
Last updated
Was this helpful?