Get the latest tech news
Show HN: Slipstream – A Python library for stateful stream processing
Documentation¶ Slipstream provides a data-flow model to simplify development of stateful streaming applications. Simplicity: parallelizing processing, mapping sources to sinks Freedom: allowing arbitrary code free of limiting abstractions Speed: optimized and configurable defaults to get started quickly Consume any source that can be turned into an Async Iterable; Kafka, streaming API’s, et cetera.
Perform any arbitrary stateful operation – joining, aggregating, filtering – using regular Python code. Because everything is built with basic python building blocks, framework-like features can be crafted with ease. We’ve created an Async Iterable source timer()(not generating data, just triggering the handler)
Or read this on Hacker News