socketIO-client-2
socketIO-client-2 copied to clipboard
A socket.io client library for Python
I'm using socketIO-client-2 v0.7.5 and socket.io v2.0.3. On my machine, those versions doesn't work together. Are those versions compatible? socketIO-client-2 v0.7.5 is working good with old version socket.io v1.4.8. I...
Hi, thanks for your work, I encountered a problem when using this library (in Python 3), this is the error message: ``` File "......../socketIO_client/parsers.py", line 48, in traverse if predicate(obj):...
When I install socketIO-client-2 with ``` $ sudo pip3 install socketIO-client-2 ``` I get the following error: ``` File "/usr/local/lib/python3.4/dist-packages/socketIO_client/tests/node_modules/utf8/tests/generate-test-data.py", line 22 print filename ^ SyntaxError: Missing parentheses in call...
When I use the current version it seems that there is a race when the connection starts. After ssl connection is established, heartbeat-packet is sent through websocket transport in a...
I want to run both socket.io server and socket.io client on the same port of my localhost. Server without client works (I use flask socket io) ``` from flask_socketio import...
# receive extra character when using .on listening method ### client side (python) python 2.7 OSX ``` import logging from socketIO_client import SocketIO, BaseNamespace logging.getLogger('socketIO-client').setLevel(logging.DEBUG) logging.basicConfig() def on_test_response(*args): print('on_test_response', args)...
I successfully connected to a localhost socket.io server, but I need to be able to connect to a HTTPS/SSL secured domain. When attempting to connect, it throws an 404 error...