liris 2abb1c5f90 - use logger, not print statement
- more document.
- add JavaScript WebSocket-like API
- add examples
2011-01-06 18:02:11 +09:00
2010-12-28 19:09:55 +09:00
2011-01-06 18:02:11 +09:00
2011-01-06 18:02:11 +09:00

=================
websocket-client
=================

websocket-client module  is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions.

Installation
=============

This module is tested on only Python 2.7.
Type "python setup.py install" or "pip install websocket-client" to install.

This module does not depend on any other module.

Example
========

::
    from websocket import create_connection
    ws = create_connection("ws://localhost:5000/echo")
    print "Sending 'Hello, World'..."
    ws.send("Hello, World")
    print "Sent"
    print "Reeiving..."
    result =  ws.recv()
    print "Received '%s'" % result
    ws.close()
Description
RETIRED, further work has moved to Debian project infrastructure
Readme 627 KiB
Languages
Python 100%