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.1.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.1-py3-none-any.whl (12.0 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for plivo_stream_sdk-0.1.1.tar.gz
Algorithm Hash digest
SHA256 cc8fd835346e0b0bad51f9e8e02330f7770b226a88211b6ca75e174ed3396626
MD5 cf76b70e12745de889b85dee315e49b9
BLAKE2b-256 a3becb440f2db1e37567bf9bb3eedd3907e7a2830ba41310fb2886f5ce9b4f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for plivo_stream_sdk-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f36b126271de3109b71086bcc9eb34ebd6af6648151139278ad99953828ad8c6
MD5 6f8b7e646e98932ae83c440e14c39c42
BLAKE2b-256 b143ee9af7477e69bffe82c08278c635c7c0880008f482857cababa849cdded0

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