Skip to main content

All Questions

1 vote
0 answers
328 views

Sending audio stream usign asyncio

I'm trying to stream microphone data to an asynchronous server. The client code is below. My first attempt was without using await asyncio.sleep(0), but the code was getting blocked. I imagine it was ...
p.magalhaes's user avatar
  • 8,374
1 vote
1 answer
1k views

Is it possible to have race condition in python aiohttp socketio?

I am working on code similar to below code. Sometimes the program stops working or I get strange errors regarding socketio session access. Slowly I feel it could be race conditions. Its more pseudo ...
The Fool's user avatar
  • 20.7k