ultimo.pipelines#
Core pipeline classes for common operations
Functions
|
Decorator that produces a filter from an async function. |
|
Decorator that produces a pipeline from an async function. |
|
Decorator that produces a filter from a function. |
|
Decorator that produces a pipeline from a function. |
Classes
|
Pipeline that applies a callable to each value. |
|
Pipeline that stabilizes polled values emitted for a short time. |
|
Pipeline that ignores repeated values. |
|
|
|
Pipeline that smoothes values with an exponentially weighted moving average. |
|
Pipeline that filters values. |
Functions#
- ultimo.pipelines.afilter(afn)#
Decorator that produces a filter from an async function.
- ultimo.pipelines.apipe(afn)#
Decorator that produces a pipeline from an async function.
- ultimo.pipelines.filter(fn)#
Decorator that produces a filter from a function.
- ultimo.pipelines.pipe(fn)#
Decorator that produces a pipeline from a function.