views:

228

answers:

1

I find this project: http://code.google.com/p/standalonewebsocketserver/ for a websocket server, but i need implement a client of websocket in python, more exactly i need receive some commands from xmpp in my websocket server

+1  A: 

The one Python websocket client-side library I've seen is python-websocket (however, I have not tried it). (For XMPP, you could look at xmpppy or python-xmpp).

Alex Martelli