Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 601 Bytes

File metadata and controls

29 lines (17 loc) · 601 Bytes

streamframe

streamframe is a lightweight engine for computing real-time features over streaming data.

It’s built in Rust for performance, but designed for ease of use via Python.


Why this exists

Most tools like pandas or Polars assume you already have all your data.

But in many real-world systems, data arrives continuously:

  • API requests
  • logs
  • sensor readings
  • market data

You don’t want to recompute everything every time a new value comes in.

streamframe updates everything incrementally, in constant time.


Installation

pip install streamframe