errbot.streaming module¶
- classerrbot.streaming.Tee(incoming_stream, clients)[source] ¶
Bases:
objectTee implements a multi reader / single writer
- errbot.streaming.repeatfunc(func:Callable[[...],None], times:int|None=None, *args)[source] ¶
Repeat calls to func with specified arguments.
Example: repeatfunc(random.random)
- Parameters:
args – params to the function to call.
times – number of times to repeat.
func – the function to repeatedly call.
Previous: errbot.repo_manager module
|
Next: errbot.templating module