python SDK

This commit is contained in:
Ajay Raj 2023-02-24 10:47:17 -08:00
commit 6dc9fceeb5
18 changed files with 482 additions and 0 deletions

View file

@ -0,0 +1,15 @@
from ..models.audio_encoding import AudioEncoding
class BaseOutputDevice:
def __init__(self, sampling_rate: int, audio_encoding: AudioEncoding):
self.sampling_rate = sampling_rate
self.audio_encoding = audio_encoding
async def send_async(self, chunk):
raise NotImplemented
async def maybe_send_mark_async(self, message):
pass