__init__(self,
name,
title=None,
kargs=None,
backend=None,
desc=None)
(Constructor)
| source code
|
Set up the object.
- Parameters:
name (str) - The name of the user function.
title (str) - The long title of the user function.
kargs (list of dict) - The list of keyword argument details.
backend (executable object) - The user function back end. This should be a string version with
full module path of the function which executes the back end.
For example 'pipe_control.pipes.create'. Note, this should be
importable as __import__(backend)!
desc (str) - The full, multi-paragraph description.
- Overrides:
object.__init__
|