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 access token from the dashboard.
  3. Open your REPL using python -m asyncio and create a basin:
from streamstore import S2
async with S2(access_token="your_access_token") as s2:
  print(await s2.create_basin("your_basin_name"))