Pithikos / python-websocket-server

A simple fully working websocket-server in Python with no external dependencies
MIT License
1.14k stars 381 forks source link

binary frame not supported? #32

Open monkey-jsun opened 6 years ago

monkey-jsun commented 6 years ago

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.

Pithikos commented 6 years ago

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.

Ksengine commented 3 years ago

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