Powered by the gRPC API.

Getting started

  1. Install streamstore package in your virtual environment (with Python >= 3.11) using your favorite package manager. E.g., with pip:

    pip install streamstore
    
  2. Generate an authentication token from the dashboard.

  3. Open your REPL using python -m asyncio and create a basin:

from streamstore import S2
async with S2(auth_token="your_auth_token") as s2:
  print(await s2.create_basin("your_basin_name"))