Roy Hyunjin Han

Results 44 comments of Roy Hyunjin Han

The fix only affects the websocket transport. Previously, the websocket transport would block on recv() until ping_timeout. Now, wait() blocks on recv() for one second and then loops more often,...

Cool! I'm trying to get back into maintaining this project.

We haven't gotten around to adding binary support yet. I think @feus4177 has a fork that adds binary support. https://github.com/feus4177/socketIO-client-2 I'll try to see if we can integrate his changes...

@wwqgtxx Thank you for submitting a pull request that focuses on binary support. A lot of people want this! I'll work on merging this and @feus4177's work by March 1st....

Have you tried the latest release? https://pypi.python.org/pypi/socketIO-client/0.7.2 Auto reconnect should work. I don't remember having issues with it. from socketIO_client import SocketIO, BaseNamespace class Namespace(BaseNamespace): def on_connect(self): print('[Connected]') def on_reconnect(self):...

We haven't tested the library on Windows yet. Does the script work in Linux? If it works, then it might be a Windows-specific issue.

Possibly, would it work under Linux? We haven't tested the library on Windows yet.

Hmm, I would need more context here if available. If this happens regularly and other people are getting corrupted packets, then maybe we can catch the IndexError and ignore it...

@burnedikt @salah93 Cool, I didn't know about `proxy_buffering`