Barebones socket.io client library
Project description
Here is a barebones socket.io client library for Python.
Thanks to rod for his StackOverflow question and answer, on which this code is based.
Thanks also to liris for his websocket-client and to guille for the socket.io specification.
Installation
# Prepare isolated environment ENV=$HOME/Projects/env virtualenv $ENV mkdir $ENV/opt # Activate isolated environment source $ENV/bin/activate # Install package easy_install -U socketIO-client
Usage
ENV=$HOME/Projects/env source $ENV/bin/activate python from socketIO import SocketIO s = SocketIO('localhost', 8000) s.emit('news', {'hello': 'world'})
0.1
Wrapped code from StackOverflow
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
socketIO-client-0.1.tar.gz
(2.6 kB
view hashes)