websockets 15.0.1


pip install websockets

  Latest version

Released: Mar 05, 2025


Meta
Author: Aymeric Augustin
Requires Python: >=3.9

Classifiers

Development Status
  • 5 - Production/Stable

Environment
  • Web Environment

Intended Audience
  • Developers

License
  • OSI Approved :: BSD License

Operating System
  • OS Independent

Programming Language
  • Python
  • Python :: 3
  • Python :: 3.9
  • Python :: 3.10
  • Python :: 3.11
  • Python :: 3.12
  • Python :: 3.13
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.asyncio.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) as server:
        await server.serve_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 + WebSocket servers that build on top of websockets to support WebSocket connections, like uvicorn or 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.

Wheel compatibility matrix

Platform CPython 3.9 CPython 3.10 CPython 3.11 CPython 3.12 CPython 3.13 PyPy 3.9 (pp73) PyPy 3.10 (pp73) Python 3
any
macosx_10_13_universal2
macosx_10_13_x86_64
macosx_10_15_x86_64
macosx_10_9_universal2
macosx_10_9_x86_64
macosx_11_0_arm64
manylinux1_i686
manylinux1_x86_64
manylinux2014_aarch64
manylinux2014_i686
manylinux2014_x86_64
manylinux_2_17_aarch64
manylinux_2_17_i686
manylinux_2_17_x86_64
manylinux_2_5_i686
manylinux_2_5_x86_64
musllinux_1_2_aarch64
musllinux_1_2_i686
musllinux_1_2_x86_64
win32
win_amd64

Files in release

websockets-15.0.1-cp310-cp310-macosx_10_9_universal2.whl (171.3KiB)
websockets-15.0.1-cp310-cp310-macosx_10_9_x86_64.whl (169.0KiB)
websockets-15.0.1-cp310-cp310-macosx_11_0_arm64.whl (169.3KiB)
websockets-15.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (178.0KiB)
websockets-15.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (177.1KiB)
websockets-15.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (177.4KiB)
websockets-15.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (177.8KiB)
websockets-15.0.1-cp310-cp310-musllinux_1_2_i686.whl (177.2KiB)
websockets-15.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (177.1KiB)
websockets-15.0.1-cp310-cp310-win32.whl (172.3KiB)
websockets-15.0.1-cp310-cp310-win_amd64.whl (172.7KiB)
websockets-15.0.1-cp311-cp311-macosx_10_9_universal2.whl (171.3KiB)
websockets-15.0.1-cp311-cp311-macosx_10_9_x86_64.whl (169.0KiB)
websockets-15.0.1-cp311-cp311-macosx_11_0_arm64.whl (169.3KiB)
websockets-15.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (178.6KiB)
websockets-15.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (177.6KiB)
websockets-15.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (178.0KiB)
websockets-15.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (178.2KiB)
websockets-15.0.1-cp311-cp311-musllinux_1_2_i686.whl (177.7KiB)
websockets-15.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (177.7KiB)
websockets-15.0.1-cp311-cp311-win32.whl (172.3KiB)
websockets-15.0.1-cp311-cp311-win_amd64.whl (172.7KiB)
websockets-15.0.1-cp312-cp312-macosx_10_13_universal2.whl (171.3KiB)
websockets-15.0.1-cp312-cp312-macosx_10_13_x86_64.whl (169.0KiB)
websockets-15.0.1-cp312-cp312-macosx_11_0_arm64.whl (169.3KiB)
websockets-15.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (178.9KiB)
websockets-15.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (177.8KiB)
websockets-15.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (178.2KiB)
websockets-15.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (178.5KiB)
websockets-15.0.1-cp312-cp312-musllinux_1_2_i686.whl (177.9KiB)
websockets-15.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (177.9KiB)
websockets-15.0.1-cp312-cp312-win32.whl (172.3KiB)
websockets-15.0.1-cp312-cp312-win_amd64.whl (172.7KiB)
websockets-15.0.1-cp313-cp313-macosx_10_13_universal2.whl (171.3KiB)
websockets-15.0.1-cp313-cp313-macosx_10_13_x86_64.whl (169.0KiB)
websockets-15.0.1-cp313-cp313-macosx_11_0_arm64.whl (169.3KiB)
websockets-15.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (178.8KiB)
websockets-15.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (177.8KiB)
websockets-15.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (178.2KiB)
websockets-15.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (178.5KiB)
websockets-15.0.1-cp313-cp313-musllinux_1_2_i686.whl (177.9KiB)
websockets-15.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (177.9KiB)
websockets-15.0.1-cp313-cp313-win32.whl (172.3KiB)
websockets-15.0.1-cp313-cp313-win_amd64.whl (172.7KiB)
websockets-15.0.1-cp39-cp39-macosx_10_9_universal2.whl (171.3KiB)
websockets-15.0.1-cp39-cp39-macosx_10_9_x86_64.whl (169.0KiB)
websockets-15.0.1-cp39-cp39-macosx_11_0_arm64.whl (169.3KiB)
websockets-15.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (177.8KiB)
websockets-15.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (176.8KiB)
websockets-15.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (177.1KiB)
websockets-15.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (177.5KiB)
websockets-15.0.1-cp39-cp39-musllinux_1_2_i686.whl (176.9KiB)
websockets-15.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (176.9KiB)
websockets-15.0.1-cp39-cp39-win32.whl (172.2KiB)
websockets-15.0.1-cp39-cp39-win_amd64.whl (172.7KiB)
websockets-15.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (169.1KiB)
websockets-15.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (169.3KiB)
websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (170.5KiB)
websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (170.1KiB)
websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.1KiB)
websockets-15.0.1-pp310-pypy310_pp73-win_amd64.whl (172.7KiB)
websockets-15.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (169.0KiB)
websockets-15.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (169.3KiB)
websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (170.5KiB)
websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (170.1KiB)
websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.1KiB)
websockets-15.0.1-pp39-pypy39_pp73-win_amd64.whl (172.7KiB)
websockets-15.0.1-py3-none-any.whl (165.8KiB)
websockets-15.0.1.tar.gz (172.9KiB)
No dependencies