Skip to content

Instantly share code, notes, and snippets.

@drewww
Created November 28, 2011 21:48
Show Gist options
  • Star 16 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save drewww/1402238 to your computer and use it in GitHub Desktop.
Save drewww/1402238 to your computer and use it in GitHub Desktop.
Connect to socket.io server from python, using websocket
#!/usr/bin/env python
# encoding: utf-8
"""
client.py
Based heavily on:
- https://github.com/mtah/python-websocket/blob/master/examples/echo.py
- http://stackoverflow.com/a/7586302/316044
Created by Drew Harry on 2011-11-28.
"""
import websocket, httplib, sys, asyncore
'''
connect to the socketio server
1. perform the HTTP handshake
2. open a websocket connection '''
def connect(server, port):
print("connecting to: %s:%d" %(server, port))
conn = httplib.HTTPConnection(server + ":" + str(port))
conn.request('POST','/socket.io/1/')
resp = conn.getresponse()
hskey = resp.read().split(':')[0]
ws = websocket.WebSocket(
'ws://'+server+':'+str(port)+'/socket.io/1/websocket/'+hskey,
onopen = _onopen,
onmessage = _onmessage,
onclose = _onclose)
return ws
def _onopen():
print("opened!")
def _onmessage(msg):
print("msg: " + str(msg))
def _onclose():
print("closed!")
if __name__ == '__main__':
if len(sys.argv) != 3:
sys.stderr.write('usage: python client.py <server> <port>\n')
sys.exit(1)
server = sys.argv[1]
port = int(sys.argv[2])
ws = connect(server, port)
try:
asyncore.loop()
except KeyboardInterrupt:
ws.close()
@patalwell
Copy link

Thanks for this!

As a note:

The httplib module has been renamed to http.client in Python 3. The 2to3 tool will automatically adapt imports when converting your sources to Python 3.

https://docs.python.org/2/library/httplib.html

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment