wingfoil-python 4.0.1

python bindings for wingfoil - graph based stream processing framework
Documentation
#!/usr/bin/env python3

from wingfoil import ticker
import wingfoil

print("wingfoil.__version__=%s" % wingfoil.__version__)

period = 0.1 # seconds

(
    ticker(period)
        .count()
        .map(lambda x: f"hello world {x}")
        .logged(">>")
        .run(
            realtime = True,
            cycles = 3,
        )
)