Skip to main content

Official Python SDK for the Plivo Streaming API with asyncio, WebSockets and FastAPI support

Project description

Python SDK for the Plivo Streaming API

Features

  • FastAPI Integration: Native support for FastAPI WebSocket connections
  • WebSockets Library: Support for the standard websockets library
  • Event-Driven: Register callbacks/hooks for different events
  • Easy Media Handling: Simple methods to send and receive media
  • Type-Safe: Full type hints and Pydantic models for better IDE support
  • Modular Design: Built to support multiple frameworks

Installation

pip install plivo-stream-sdk

For development (includes uvicorn for running examples):

pip install -e[dev]

Quick Start

FastAPI Example

from fastapi import FastAPI, WebSocket
from plivo_stream import PlivoFastAPIStreamingHandler, MediaEvent

app = FastAPI()

@app.websocket("/stream")
async def websocket_endpoint(websocket: WebSocket):
    handler = PlivoFastAPIStreamingHandler(websocket)
    
    @handler.on_connected
    async def on_connect():
        print("Client connected!")
    
    @handler.on_media
    async def on_media(event: MediaEvent):
        audio_bytes = event.get_raw_media()  # raw decoded bytes
        print(f"Received {len(audio_bytes)} bytes at chunk {event.media.chunk}")
    
    @handler.on_disconnected
    async def on_disconnect():
        print("Client disconnected!")
    
    await handler.start()

WebSockets Library Example

import asyncio
import websockets
from plivo_stream import PlivoWebsocketStreamingHandler
from plivo_stream import MediaEvent

async def create_handler(websocket):
    handler = PlivoWebsocketStreamingHandler()
    
    @handler.on_connected
    async def on_connect():
        print("Client connected!")
    
    @handler.on_media
    async def on_media(event: MediaEvent):
        audio_bytes = event.get_raw_media()
        print(f"Received {len(audio_bytes)} bytes")
    
    @handler.on_disconnected
    async def on_disconnect():
        print("Client disconnected!")
    
    await handler.handle(websocket)

async def main():
    async with websockets.serve(create_handler, "0.0.0.0", 8000):
        await asyncio.Future()  # run forever

if __name__ == "__main__":
    asyncio.run(main())

Architecture

Plivo Streaming Architecture

The SDK acts as a bridge between Plivo's server and your application, handling bidirectional audio streaming.

Examples

API Reference

PlivoFastAPIStreamingHandler

Main class for handling FastAPI WebSocket connections.

Initialization

handler = PlivoFastAPIStreamingHandler(websocket)

Event Hooks

Register callbacks using decorators:

@handler.on_connected
Called when WebSocket connection is established.

@handler.on_connected
async def on_connect():
    print("Connected!")

@handler.on_disconnected
Called when WebSocket connection is closed.

@handler.on_disconnected
async def on_disconnect():
    print("Disconnected!")

@handler.on_media
Called when media (audio) data is received.

@handler.on_media
async def on_media(event: MediaEvent):
    # Access Pydantic fields
    print(event.media.track, event.media.timestamp, event.media.chunk)
    # Get raw decoded audio bytes
    audio_bytes = event.get_raw_media()

@handler.on_start
Called when the stream starts; includes stream and call identifiers.

@handler.on_start
async def on_start(event: StartEvent):
    print(f"Stream started: streamId={event.start.stream_id}, callId={event.start.call_id}")

@handler.on_dtmf
Called when a DTMF tone is detected.

@handler.on_dtmf
async def on_dtmf(event: DtmfEvent):
    print(f"DTMF received: {event.dtmf.digit}")

@handler.on_played_stream
Called when buffered audio before a checkpoint has finished playing.

@handler.on_played_stream
async def on_played_stream(event: PlayedStreamEvent):
    print(f"Checkpoint played: {event.name} on stream {event.stream_id}")

@handler.on_cleared_audio
Called when the audio buffer is cleared.

@handler.on_cleared_audio
async def on_cleared_audio(event: ClearedAudioEvent):
    print(f"Cleared audio on stream {event.stream_id}")

@handler.on_event(event_type)
Called for specific Plivo event types.

@handler.on_event("start")
async def on_start(event: StreamEvent):
    print(f"Stream started: {event.data}")

@handler.on_error
Called when an error occurs.

@handler.on_error
async def on_error(error):
    print(f"Error: {error}")

Sending Methods

send_media(media_data)
Send media data through the WebSocket.

# raw PCM/mulaw bytes (SDK will base64-encode for you)
await handler.send_media(audio_bytes)

# optionally specify content type and sample rate
await handler.send_media(audio_bytes, content_type="audio/x-l16", sample_rate=16000)

send_checkpoint(checkpoint_name)
Send a checkpoint event to track message processing.

await handler.send_checkpoint("processing_complete")

send_clear_audio()
Clear the audio buffer on the stream.

await handler.send_clear_audio()

send_json(data)
Send arbitrary JSON data.

await handler.send_json({"event": "custom", "data": "value"})

send_text(message)
Send text message.

await handler.send_text("Hello")

Lifecycle Methods

start()
Start the WebSocket listener loop. This should be awaited in your endpoint.

await handler.start()

stop()
Stop the WebSocket listener and close the connection.

await handler.stop()

PlivoWebsocketStreamingHandler

Main class for handling plain WebSocket connections using the websockets library.

Initialization

handler = PlivoWebsocketStreamingHandler()

Event Hooks

Same decorator-based event hooks as PlivoFastAPIStreamingHandler:

  • @handler.on_connected
  • @handler.on_disconnected
  • @handler.on_media
  • @handler.on_start
  • @handler.on_dtmf
  • @handler.on_played_stream
  • @handler.on_cleared_audio
  • @handler.on_event(event_type)
  • @handler.on_error

Sending Methods

Same methods as PlivoFastAPIStreamingHandler:

  • send_media(media_data)
  • send_checkpoint(checkpoint_name)
  • send_clear_audio()
  • send_json(data)
  • send_text(message)

Lifecycle Methods

handle(websocket)
Handle a WebSocket connection. This should be called from your websockets.serve handler.

async def connection_handler(websocket):
    await handler.handle(websocket)

stop()
Stop the WebSocket listener and close the connection.

await handler.stop()

Event Types

The SDK recognizes these Plivo Streaming API events:

  • connected - WebSocket connection established
  • disconnected - WebSocket connection closed
  • media - Audio data received
  • start - Stream started
  • error - Error occurred
  • playedStream - Audio events buffered before the Checkpoint were successfully played out to the end user
  • clearedAudio - Cleared all buffered media events
  • dtmf - Sent when someone presses a touch-tone number key in the inbound stream

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

plivo_stream_sdk-0.1.0.tar.gz (12.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

plivo_stream_sdk-0.1.0-py3-none-any.whl (11.9 kB view details)

Uploaded Python 3

File details

Details for the file plivo_stream_sdk-0.1.0.tar.gz.

File metadata

  • Download URL: plivo_stream_sdk-0.1.0.tar.gz
  • Upload date:
  • Size: 12.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.9

File hashes

Hashes for plivo_stream_sdk-0.1.0.tar.gz
Algorithm Hash digest
SHA256 0a8c213fc7db3e9b918537a6a6380b41110132e75a6b7e4c9bd61a27b447b977
MD5 82896c2d1bfb6873465cb5114d88c89a
BLAKE2b-256 8ec29604b15c6d204206a2b01237270a4d00486b484feb69e59645d45522040c

See more details on using hashes here.

File details

Details for the file plivo_stream_sdk-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for plivo_stream_sdk-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 06f0d28f554de08a617befaad522dd7ab38288103c7c73cbf55fcabbc40440a3
MD5 2f396848f13db35fcaa5f4bbadd439f9
BLAKE2b-256 d739729ac8fa164a64cf7c499c5f3d5fb6dc662550805e2fc8accca67740d4bf

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page