Skip to main content

An implementation of the WebSocket Protocol (RFC 6455 & 7692)

Project description

websockets

licence version pyversions tests docs openssf

What is websockets?

websockets is a library for building WebSocket servers and clients in Python with a focus on correctness, simplicity, robustness, and performance.

Built on top of asyncio, Python’s standard asynchronous I/O framework, the default implementation provides an elegant coroutine-based API.

An implementation on top of threading and a Sans-I/O implementation are also available.

Documentation is available on Read the Docs.

Here’s an echo server with the asyncio API:

#!/usr/bin/env python

import asyncio
from websockets.server import serve

async def echo(websocket):
    async for message in websocket:
        await websocket.send(message)

async def main():
    async with serve(echo, "localhost", 8765):
        await asyncio.Future()  # run forever

asyncio.run(main())

Here’s how a client sends and receives messages with the threading API:

#!/usr/bin/env python

from websockets.sync.client import connect

def hello():
    with connect("ws://localhost:8765") as websocket:
        websocket.send("Hello world!")
        message = websocket.recv()
        print(f"Received: {message}")

hello()

Does that look good?

Get started with the tutorial!

Why should I use websockets?

The development of websockets is shaped by four principles:

  1. Correctness: websockets is heavily tested for compliance with RFC 6455. Continuous integration fails under 100% branch coverage.

  2. Simplicity: all you need to understand is msg = await ws.recv() and await ws.send(msg). websockets takes care of managing connections so you can focus on your application.

  3. Robustness: websockets is built for production. For example, it was the only library to handle backpressure correctly before the issue became widely known in the Python community.

  4. Performance: memory usage is optimized and configurable. A C extension accelerates expensive operations. It’s pre-compiled for Linux, macOS and Windows and packaged in the wheel format for each system and Python version.

Documentation is a first class concern in the project. Head over to Read the Docs and see for yourself.

Why shouldn’t I use websockets?

  • If you prefer callbacks over coroutines: websockets was created to provide the best coroutine-based API to manage WebSocket connections in Python. Pick another library for a callback-based API.

  • If you’re looking for a mixed HTTP / WebSocket library: websockets aims at being an excellent implementation of RFC 6455: The WebSocket Protocol and RFC 7692: Compression Extensions for WebSocket. Its support for HTTP is minimal — just enough for an HTTP health check.

    If you want to do both in the same server, look at HTTP frameworks that build on top of websockets to support WebSocket connections, like Sanic.

What else?

Bug reports, patches and suggestions are welcome!

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.

For anything else, please open an issue or send a pull request.

Participants must uphold the Contributor Covenant code of conduct.

websockets is released under the BSD license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

websockets-12.0.tar.gz (105.0 kB view hashes)

Uploaded Source

Built Distributions

websockets-12.0-py3-none-any.whl (118.4 kB view hashes)

Uploaded Python 3

websockets-12.0-pp310-pypy310_pp73-win_amd64.whl (125.0 kB view hashes)

Uploaded PyPy Windows x86-64

websockets-12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (123.2 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

websockets-12.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (122.8 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (122.8 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

websockets-12.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (121.1 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

websockets-12.0-pp39-pypy39_pp73-win_amd64.whl (125.0 kB view hashes)

Uploaded PyPy Windows x86-64

websockets-12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (123.2 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

websockets-12.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (122.8 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (122.8 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

websockets-12.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (121.1 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

websockets-12.0-pp38-pypy38_pp73-win_amd64.whl (125.0 kB view hashes)

Uploaded PyPy Windows x86-64

websockets-12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (123.2 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

websockets-12.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (122.8 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (122.8 kB view hashes)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

websockets-12.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (121.1 kB view hashes)

Uploaded PyPy macOS 10.9+ x86-64

websockets-12.0-cp312-cp312-win_amd64.whl (125.0 kB view hashes)

Uploaded CPython 3.12 Windows x86-64

websockets-12.0-cp312-cp312-win32.whl (124.5 kB view hashes)

Uploaded CPython 3.12 Windows x86

websockets-12.0-cp312-cp312-musllinux_1_1_x86_64.whl (136.1 kB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

websockets-12.0-cp312-cp312-musllinux_1_1_i686.whl (135.5 kB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

websockets-12.0-cp312-cp312-musllinux_1_1_aarch64.whl (136.2 kB view hashes)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

websockets-12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (131.8 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

websockets-12.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (131.2 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (130.8 kB view hashes)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

websockets-12.0-cp312-cp312-macosx_11_0_arm64.whl (121.3 kB view hashes)

Uploaded CPython 3.12 macOS 11.0+ ARM64

websockets-12.0-cp312-cp312-macosx_10_9_x86_64.whl (121.3 kB view hashes)

Uploaded CPython 3.12 macOS 10.9+ x86-64

websockets-12.0-cp312-cp312-macosx_10_9_universal2.whl (124.1 kB view hashes)

Uploaded CPython 3.12 macOS 10.9+ universal2 (ARM64, x86-64)

websockets-12.0-cp311-cp311-win_amd64.whl (125.0 kB view hashes)

Uploaded CPython 3.11 Windows x86-64

websockets-12.0-cp311-cp311-win32.whl (124.5 kB view hashes)

Uploaded CPython 3.11 Windows x86

websockets-12.0-cp311-cp311-musllinux_1_1_x86_64.whl (136.2 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

websockets-12.0-cp311-cp311-musllinux_1_1_i686.whl (135.6 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

websockets-12.0-cp311-cp311-musllinux_1_1_aarch64.whl (136.3 kB view hashes)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

websockets-12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (131.5 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

websockets-12.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130.9 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (130.5 kB view hashes)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

websockets-12.0-cp311-cp311-macosx_11_0_arm64.whl (121.3 kB view hashes)

Uploaded CPython 3.11 macOS 11.0+ ARM64

websockets-12.0-cp311-cp311-macosx_10_9_x86_64.whl (121.3 kB view hashes)

Uploaded CPython 3.11 macOS 10.9+ x86-64

websockets-12.0-cp311-cp311-macosx_10_9_universal2.whl (124.0 kB view hashes)

Uploaded CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)

websockets-12.0-cp310-cp310-win_amd64.whl (125.0 kB view hashes)

Uploaded CPython 3.10 Windows x86-64

websockets-12.0-cp310-cp310-win32.whl (124.5 kB view hashes)

Uploaded CPython 3.10 Windows x86

websockets-12.0-cp310-cp310-musllinux_1_1_x86_64.whl (134.8 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

websockets-12.0-cp310-cp310-musllinux_1_1_i686.whl (134.2 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

websockets-12.0-cp310-cp310-musllinux_1_1_aarch64.whl (135.0 kB view hashes)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

websockets-12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (130.9 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

websockets-12.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130.2 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (129.9 kB view hashes)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

websockets-12.0-cp310-cp310-macosx_11_0_arm64.whl (121.3 kB view hashes)

Uploaded CPython 3.10 macOS 11.0+ ARM64

websockets-12.0-cp310-cp310-macosx_10_9_x86_64.whl (121.3 kB view hashes)

Uploaded CPython 3.10 macOS 10.9+ x86-64

websockets-12.0-cp310-cp310-macosx_10_9_universal2.whl (124.0 kB view hashes)

Uploaded CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)

websockets-12.0-cp39-cp39-win_amd64.whl (125.0 kB view hashes)

Uploaded CPython 3.9 Windows x86-64

websockets-12.0-cp39-cp39-win32.whl (124.4 kB view hashes)

Uploaded CPython 3.9 Windows x86

websockets-12.0-cp39-cp39-musllinux_1_1_x86_64.whl (134.6 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

websockets-12.0-cp39-cp39-musllinux_1_1_i686.whl (133.9 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

websockets-12.0-cp39-cp39-musllinux_1_1_aarch64.whl (134.7 kB view hashes)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

websockets-12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (130.7 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

websockets-12.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130.0 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (129.7 kB view hashes)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

websockets-12.0-cp39-cp39-macosx_11_0_arm64.whl (121.3 kB view hashes)

Uploaded CPython 3.9 macOS 11.0+ ARM64

websockets-12.0-cp39-cp39-macosx_10_9_x86_64.whl (121.3 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ x86-64

websockets-12.0-cp39-cp39-macosx_10_9_universal2.whl (124.0 kB view hashes)

Uploaded CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)

websockets-12.0-cp38-cp38-win_amd64.whl (125.0 kB view hashes)

Uploaded CPython 3.8 Windows x86-64

websockets-12.0-cp38-cp38-win32.whl (124.5 kB view hashes)

Uploaded CPython 3.8 Windows x86

websockets-12.0-cp38-cp38-musllinux_1_1_x86_64.whl (134.7 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

websockets-12.0-cp38-cp38-musllinux_1_1_i686.whl (134.0 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

websockets-12.0-cp38-cp38-musllinux_1_1_aarch64.whl (134.8 kB view hashes)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

websockets-12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (131.1 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

websockets-12.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130.5 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (130.2 kB view hashes)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

websockets-12.0-cp38-cp38-macosx_11_0_arm64.whl (121.3 kB view hashes)

Uploaded CPython 3.8 macOS 11.0+ ARM64

websockets-12.0-cp38-cp38-macosx_10_9_x86_64.whl (121.3 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ x86-64

websockets-12.0-cp38-cp38-macosx_10_9_universal2.whl (124.0 kB view hashes)

Uploaded CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page