Lines Matching refs:websocket
2 websocket-client
5 websocket-client module is WebSocket client for python. This provide the low level APIs for WebSoc…
7 websocket-client supports only hybi-13.
19 Type "python setup.py install" or "pip install websocket-client" to install.
26 py3( https://github.com/liris/websocket-client/tree/py3 ) branch is for python 3.3. Every test case…
34 from websocket import create_connection
35 ws = create_connection("ws://echo.websocket.org/")
48 from websocket import create_connection
49 ws = create_connection("ws://echo.websocket.org/".
53 JavaScript websocket-like API example::
55 import websocket
80 websocket.enableTrace(True)
81 ws = websocket.WebSocketApp("ws://echo.websocket.org/",
95 sample for echo.websocket.org::
97 $ wsdump.py ws://echo.websocket.org/
113 ws_url websocket url. ex. ws://echo.websocket.org/
118 …ERBOSE set verbose mode. If set to 1, show opcode. If set to 2, enable to trace websocket module
122 $ wsdump.py ws://echo.websocket.org/
123 $ wsdump.py ws://echo.websocket.org/ -v
124 $ wsdump.py ws://echo.websocket.org/ -vv
133 - fix "Timing out leaves websocket library in bad state"(ISSUE#37)
150 - Passing a socketopt flag to the websocket constructor(ISSUE#29)
151 - websocket.send fails with long data(ISSUE#30)