Introduction

Lomond is a websocket client library designed to make adding websocket support to your application as tranquil as the Scottish Loch it was named after.

Installing

You can install Lomond with pip as follows:

pip install lomond

Or to upgrade to the most recent version:

pip install lomond --upgrade

Alternatively, if you would like to install from source, check out the code from Github.

You may wish to install wsaccel, which is a C module containing optimizations for some websocket operations. Lomond will use it if available:

pip install wsaccel

Basic Usage

To connect to a websocket server, first construct a WebSocket object, with a ws:// or wss:// URL. Here is an example:

from lomond.websocket import WebSocket
ws = WebSocket('wss://echo.websocket.org')

No socket connection is made by a freshly constructed WebSocket object. To connect and interact with a websocket server, iterate over the WebSocket instance, which will yield a number of Event objects. Here’s an example:

for event in ws:
    print(event)

Here is an example of the output you might get from the above code:

Connecting(url='wss://echo.websocket.org')
Connected(url='wss://echo.websocket.org')
Ready(<response HTTP/1.1 101 Web Socket Protocol Handshake>, protocol=None, extensions=set([]))

The Ready event indicates a successful connection to a websocket server. You may now use the send_text() and send_binary() methods to send data to the server.

When you receive data from the server, a Text or Binary event will be generated.

Iterating over the WebSocket instance in this way calls connect() with default parameters, i.e. it is equivalent to the following:

for event in ws.connect():
    print(event)

You may want to call connect manually to change the default behavior.

Events

Events inform your application when data is received from the server or when the websocket state changes.

All events are derived from Event and will contain at least 2 attributes; received_time is the epoch time the event was received, and name is the name of the event. Some events have additional attributes with more information. See the Events for details.

When handling events, you can either check the type with isinstance or by looking at the name attribute.

For example, the following two lines are equivalent:

if isinstance(event, events.Ready):

or:

if event.name == "ready":

Note

The isinstance method is possibly uglier, but has the advantage that you are less likely to introduce a bug with a typo in the event name.

If an event is generated that you aren’t familiar with, then you should simply ignore it. This is important for backwards compatibility; future versions of Lomond may introduce new event types.

Closing the Websocket

To close a websocket, call the close() method to initiate a websocket close handshake. You may call this method from within the websocket loop, or from another thread.

When a WebSocket wishes to close, it sends a close packet to the server. The server will respond by sending a close packet of its own. Only when this echoed close packet is received will the WebSocket close the underlaying socket. This allows both ends of the connection to finish what they are doing, without losing data.

Note

When you call the close() method, you will no longer be able to send data, but you may still receive packets from the server until the close has completed.

When the websocket has been closed, you will receive a Closed event, followed by a Disconnected event, and the event loop will exit.

Pings and Pongs

Both the server and client may send ‘ping’ packets, which should be responded to with a ‘pong’ packet. This allows both ends of the connection to know if the other end is really listening.

By default, Lomond will send pings packets every 30 seconds. If you wish to change this rate or disable ping packets entirely, you may use the connect() method.

Here’s how you would disable pings:

websocket = Websocket('wss://ws.example.org')
for event in WebSocket.connect(ping_rate=0):
    on_event(event)

Lomond will also automatically respond to ping requests. Since this is a requirement of the websocket specification, you probably don’t want to change this behaviour. But it may be disabled with the auto_pong flag in connect().

Regardless of whether auto pong is enabled, a Pong event will be generated when Lomond receives a ping packet. If auto pong is disabled, you should manually call send_pong() in response to a ping, or the server may disconnect you.

Polling

Lomond checks for automatic pings and performs other housekeeping tasks at a regular intervals. This polling is exposed as Poll events. Your application can use these events to do any processing that needs to be invoked at regular intervals.

The default poll rate of 5 seconds is granular enough for Lomond’s polling needs, while having negligible impact on CPU. If your application needs to process at a faster rate, you may set the poll parameter of connect().

Note

If your application needs to be more realtime than polling once a second, you should probably use threads in tandem with the event loop.

WebSockets and Threading

WebSocket objects are thread safe, but Lomond does not need to launch any threads to run a websocket. For many applications, responding to data and poll events is all you will need. However, if your application needs to do more than communicate with a websocket server, you may want to run a websocket in a thread of its own.

Persistent Connections

Lomond supports a simple mechanism for persistent connections. Essentially, you can tell Lomond to continually retry a websocket connection if it is dropped for any reason. This allows an application to maintain a websocket connection even if there are any outages in connectivity.

To run a persistent connection, wrap a websocket with persist(). Here is an example:

from lomond.persist import persist
websocket = WebSocket('wss://ws.example.org')
for event in persist(websocket):
    # handle event

You will receive events as normal with the above loop.

If the connection is dropped for any reason, you will receive Disconnected as usual, followed by Connecting when Lomond retries the connection. Lomond will keep retrying the connection until it is successful, and a Ready event is generated.

The persist() function implements exponential backoff. If the websocket object fails to connect, it will wait for a random period between zero seconds and an upper limit. Every time the connection fails, it will double the upper limit until it connects, or a maximum delay is reached.

The exponential backoff prevents a client from hammering a server that may already be overloaded. It also prevents the client from being stuck in a cpu intensive spin loop.