Installation

Slipstream can be installed using pip:

pip install slipstream-async

Optional Dependencies

Some features require extra dependencies that are not installed by default, keeping the package small and giving you full control.

  • Pin specific versions for stability and reproducibility

  • Install latest using the extras notation

Topic

Topic is the default Kafka client, using aiokafka under the hood.

pip install aiokafka==0.12.0
pip install slipstream-async[kafka]

Cache

Cache is the default embedded cache, a basic wrapper around rocksdict.

pip install rocksdict==0.3.25
pip install slipstream-async[cache]