python-websocket-server icon indicating copy to clipboard operation
python-websocket-server copied to clipboard

binary frame not supported?

Open monkey-jsun opened this issue 8 years ago • 2 comments

Hi, all,

I'm trying to use this library in my project. In fact, I'm trying to replace websockets module which uses asyncio.

However, one immediate issue I'm facing is that it complains about "binary frame not supported". Is it easy to add binary frame support?

Thanks.

monkey-jsun avatar Nov 24 '17 04:11 monkey-jsun

Yes, it should be relatively easy but unfortunately I don't have the time atm to do any implementation. A workaround is to convert any binary to base64 and send it as text.

Pithikos avatar Nov 26 '17 09:11 Pithikos

https://github.com/Ksengine/WSocket is a good solution

Ksengine avatar Oct 13 '20 14:10 Ksengine