parsl.app.python.PythonApp¶
-
class
parsl.app.python.PythonApp(func, data_flow_kernel=None, cache=False, executors='all', ignore_for_cache=[], join=False)[source]¶ Extends AppBase to cover the Python App.
-
__init__(func, data_flow_kernel=None, cache=False, executors='all', ignore_for_cache=[], join=False)[source]¶ Construct the App object.
- Parameters
func (-) – Takes the function to be made into an App
- Kwargs:
data_flow_kernel (DataFlowKernel): The
DataFlowKernelresponsible for managing this app. This can be omitted only after callingparsl.dataflow.dflow.DataFlowKernelLoader.load().executors (str|list) : Labels of the executors that this app can execute over. Default is ‘all’.
cache (Bool) : Enable caching of this app ?
- Returns
App object.
Methods
__init__(func[, data_flow_kernel, cache, …])Construct the App object.
-