> ## Documentation Index
> Fetch the complete documentation index at: https://docs.medera.info/llms.txt
> Use this file to discover all available pages before exploring further.

# Python SDK — WebSockets

> Streaming APIs in Python

```python theme={"system"}
async with client.streams.open(session_id=session_id) as stream:
    async for event in stream:
        if event.type == "transcript.final":
            print(event.text)

```
