# Function Tasks


The tasks in this module can be used to represent arbitrary functions.

In general, users will not instantiate these tasks by hand; they will automatically be applied when users apply the @task decorator.

# FunctionTask

class

prefect.tasks.core.function.FunctionTask

(fn, name=None, **kwargs)[source]

A convenience Task for functionally creating Task instances with arbitrary callable run methods.

Args:

  • fn (callable): the function to be the task's run method
  • name (str, optional): the name of this task; if not provided it is inferred as the function name
  • **kwargs: keyword arguments that will be passed to the Task constructor
Raises:
  • ValueError: if the provided function violates signature requirements for Task run methods
Example:

task = FunctionTask(lambda x: x - 42, name="Subtract 42")

with Flow("My Flow") as f:
    result = task(42)



This documentation was auto-generated from commit ffa9a6c
on February 1, 2023 at 18:44 UTC