faust.utils.codegen

Utilities for generating code at runtime.

faust.utils.codegen.Function(name: str, args: List[str], body: List[str], *, globals: Dict[str, Any] = None, locals: Dict[str, Any] = None, return_type: Any = <object object>, argsep: str = ', ') → Callable[source]
Return type:Callable
faust.utils.codegen.Method(name: str, args: List[str], body: List[str], **kwargs) → Callable[source]
Return type:Callable
faust.utils.codegen.InitMethod(args: List[str], body: List[str], **kwargs) → Callable[NoneType][source]
Return type:Callable[[], None]