A simple, ready-to-use client for testing the SmallWebRTCTransport.
Project description
SmallWebRTC Prebuilt
A simple, ready-to-use client for testing the SmallWebRTCTransport.
This prebuilt client provides basic WebRTC functionality and serves as a lightweight tool to quickly verify transport behavior without needing a custom implementation.
Ideal for development, debugging, and quick prototyping.
📦 Installation & Usage
If you just want to use the prebuilt WebRTC client in your own Python project:
✅ Install from PyPI
pip install pipecat-ai-small-webrtc-prebuilt
🧰 Example Usage
from fastapi import FastAPI
from fastapi.responses import RedirectResponse
from pipecat_ai_small_webrtc_prebuilt.frontend import SmallWebRTCPrebuiltUI
app = FastAPI()
# Mount the frontend at /prebuilt
app.mount("/prebuilt", SmallWebRTCPrebuiltUI)
@app.get("/", include_in_schema=False)
async def root_redirect():
return RedirectResponse(url="/prebuilt/")
🧪 Try a Sample App
Want to see it in action? Check out our sample app demonstrating how to use this module:
⌨ Development Quick Start
🔧 Set Up the Environment
- Clone the Repository
git clone https://github.com/your-org/small-webrtc-prebuilt.git
-
Create and activate a virtual environment:
cd small-webrtc-prebuilt python3 -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
-
Install dependencies:
pip install -r requirements.txt
🚀 Publishing
- Prepare to dist:
./scripts/prepare_dist.sh
- Test the build using TestPyPI with Twine:
Upload to TestPyPI using twine
twine upload --repository testpypi dist/*
Uninstall previous production version
pip uninstall pipecat-ai-small-webrtc-prebuilt
Test using pip to download packages from TestPyPI instead of PyPI
pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ pipecat-ai-small-webrtc-prebuilt
Double check version
pip list |grep pipecat-ai-small-webrtc-prebuilt
Run test...
Once you are happy, publish it to production.
twine upload dist/*
Profit.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pipecat_ai_small_webrtc_prebuilt-1.0.0.tar.gz.
File metadata
- Download URL: pipecat_ai_small_webrtc_prebuilt-1.0.0.tar.gz
- Upload date:
- Size: 563.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e3d1cba420842d469ee9ecae321a086732392acb2625d5587a54d28a16ca0ea
|
|
| MD5 |
f9a715c3d8349c5e4c4df7b99a8878b3
|
|
| BLAKE2b-256 |
6dc819e9edb707581431c74e57da386656b9f9072c7a968f5fa49005e0b53cd6
|