Skip to main content
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

import asyncio
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.

Release files for websockets 11.0.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for websockets 11.0.1
File Size Uploaded
websockets-11.0.1.tar.gz 104.1 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for websockets 11.0.1
File
websockets-11.0.1-py3-none-any.whl Python 3 none any Details
websockets-11.0.1-pp39-pypy39_pp73-win_amd64.whl PyPy 3.9 PyPy 3.9 7.3 Windows x86-64 Details
websockets-11.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
websockets-11.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
websockets-11.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
websockets-11.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.9+ x86-64 Details
websockets-11.0.1-pp38-pypy38_pp73-win_amd64.whl PyPy 3.8 PyPy 3.8 7.3 Windows x86-64 Details
websockets-11.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARM64 Details
websockets-11.0.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
websockets-11.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
websockets-11.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 Details
websockets-11.0.1-pp37-pypy37_pp73-win_amd64.whl PyPy 3.7 PyPy 3.7 7.3 Windows x86-64 Details
websockets-11.0.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ ARM64 Details
websockets-11.0.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
websockets-11.0.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.7 PyPy 3.7 7.3 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
websockets-11.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64 Details
websockets-11.0.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
websockets-11.0.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
websockets-11.0.1-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
websockets-11.0.1-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
websockets-11.0.1-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
websockets-11.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
websockets-11.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
websockets-11.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
websockets-11.0.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
websockets-11.0.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
websockets-11.0.1-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
websockets-11.0.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
websockets-11.0.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
websockets-11.0.1-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
websockets-11.0.1-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
websockets-11.0.1-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
websockets-11.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
websockets-11.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
websockets-11.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
websockets-11.0.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
websockets-11.0.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
websockets-11.0.1-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
websockets-11.0.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
websockets-11.0.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
websockets-11.0.1-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
websockets-11.0.1-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
websockets-11.0.1-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
websockets-11.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
websockets-11.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
websockets-11.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
websockets-11.0.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
websockets-11.0.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
websockets-11.0.1-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
websockets-11.0.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
websockets-11.0.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
websockets-11.0.1-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
websockets-11.0.1-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
websockets-11.0.1-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
websockets-11.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
websockets-11.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
websockets-11.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
websockets-11.0.1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
websockets-11.0.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
websockets-11.0.1-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
websockets-11.0.1-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
websockets-11.0.1-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
websockets-11.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
websockets-11.0.1-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
websockets-11.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
websockets-11.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
websockets-11.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
websockets-11.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
websockets-11.0.1-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details

Total release size: 8.9 MB

Release files / websockets-11.0.1.tar.gz

Download URL websockets-11.0.1.tar.gz
Size 104.1 kB
Tags Source
SHA-256 checksum
How to use checksums
369410925b240b30ef1c1deadbd6331e9cd865ad0b8966bf31e276cc8e0da159
BLAKE2b-256 checksum
How to use checksums
bd906b5802fad3992d6eac7163216e0389a72475cbb57b23005135190e96d160
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-py3-none-any.whl

Download URL websockets-11.0.1-py3-none-any.whl
Size 117.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
85b4127f7da332feb932eee833c70e5e1670469e8c9de7ef3874aa2a91a6fbb2
BLAKE2b-256 checksum
How to use checksums
9c746e003607b2d51537eb5f04210e4be66b84d44c86ab06bb9c8a24c24ad360
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp39-pypy39_pp73-win_amd64.whl

Download URL websockets-11.0.1-pp39-pypy39_pp73-win_amd64.whl
Size 124.5 kB
Tags PyPy 3.9 PyPy 3.9 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
5d4f4b341100d313b08149d7031eb6d12738ac758b0c90d2f9be8675f401b019
BLAKE2b-256 checksum
How to use checksums
d7d0b58b01e1590c06c87f88543429953e37dd9e5168f17a16079f5aba76543d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL websockets-11.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 122.7 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
79b6548e57ab18f071b9bfe3ffe02af7184dd899bc674e2817d8fe7e9e7489ec
BLAKE2b-256 checksum
How to use checksums
ca93f4c0310d6f39010a107d94d5c7aeb8e6d6a543849befaa298564fadc054c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL websockets-11.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 122.3 kB
Tags Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
42aa05e890fcf1faed8e535c088a1f0f27675827cbacf62d3024eb1e6d4c9e0c
BLAKE2b-256 checksum
How to use checksums
ac680cc6d04cbbff1b14aeedae19b03b43d43ec5284e6001e4ef3cd49d0b08c6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL websockets-11.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 122.3 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
a8d9793f3fb0da16232503df14411dabafed5a81fc9077dc430cfc6f60e71179
BLAKE2b-256 checksum
How to use checksums
6210da47609dd2f88a5acd971968a57880307709f74f0c6bffd1f523aca61bc8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl

Download URL websockets-11.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Size 120.6 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
ef35cef161f76031f833146f895e7e302196e01c704c00d269c04d8e18f3ac37
BLAKE2b-256 checksum
How to use checksums
3fa7accca8e6f816e26ebb80434256862e53d2024e0a0779f0f4fc25776b230a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp38-pypy38_pp73-win_amd64.whl

Download URL websockets-11.0.1-pp38-pypy38_pp73-win_amd64.whl
Size 124.5 kB
Tags PyPy 3.8 PyPy 3.8 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
ae59a9f0a77ecb0cbdedea7d206a547ff136e8bfbc7d2d98772fb02d398797bb
BLAKE2b-256 checksum
How to use checksums
5a5af98ffa84fa0325da3cb56ed1556c964c6675e1053aecc01da4cde4d9269c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL websockets-11.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 122.7 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
718d19c494637f28e651031b3df6a791b9e86e0097c65ed5e8ec49b400b1210e
BLAKE2b-256 checksum
How to use checksums
b45efe8677fa618f16982a8b176c963af67ee91feea2eb7705a974144bbeed0e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL websockets-11.0.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 122.3 kB
Tags Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
ec4a887d2236e3878c07033ad5566f6b4d5d954b85f92a219519a1745d0c93e9
BLAKE2b-256 checksum
How to use checksums
1b0488e5cae3e9ed0f3ff56956a2459351854300dc8fd0d264d810b173615f39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL websockets-11.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 122.3 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
f7b2544eb3e7bc39ce59812371214cd97762080dab90c3afc857890039384753
BLAKE2b-256 checksum
How to use checksums
19f383a00bdce11e98a74320f5b0cf3457fb97546053c29231953537cda1d29d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl

Download URL websockets-11.0.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Size 120.6 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
e53419201c6c1439148feb99de6b307651a88b8defd41348cc23bbe2a290de1d
BLAKE2b-256 checksum
How to use checksums
651d06b7d251dafc42915f90aad8bb7b04127ef7c374cbd2112eb968dd9d057e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp37-pypy37_pp73-win_amd64.whl

Download URL websockets-11.0.1-pp37-pypy37_pp73-win_amd64.whl
Size 124.5 kB
Tags PyPy 3.7 PyPy 3.7 7.3 Windows x86-64
SHA-256 checksum
How to use checksums
5d8d5d17371ed9eb9f0e3a8d326bdf8172700164c2e705bc7f1905a719a189be
BLAKE2b-256 checksum
How to use checksums
f2195361b0554fd6bc2668cba97f1448dda193683306a4571983b0f421689cfd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL websockets-11.0.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 122.7 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
2a58e83f82098d062ae5d4cbe7073b8783999c284d6f079f2fefe87cd8957ac8
BLAKE2b-256 checksum
How to use checksums
60692eb5607691870a8444f261813201bd88411053224c853c5fd6739a6338ea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL websockets-11.0.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 122.3 kB
Tags Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
53b8e1ee01eb5b8be5c8a69ae26b0820dbc198d092ad50b3451adc3cdd55d455
BLAKE2b-256 checksum
How to use checksums
6dd72b1037c818dc1d43e1afe2175e219c99c39311ec186ceacb41cc846c5591
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL websockets-11.0.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 122.3 kB
Tags Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32 PyPy 3.7 PyPy 3.7 7.3
SHA-256 checksum
How to use checksums
b91657b65355954e47f0df874917fa200426b3a7f4e68073326a8cfc2f6deef8
BLAKE2b-256 checksum
How to use checksums
cf9bd867003aa5f5590de57a6962a74e165c6f4143f25d568d474ba88bcee4f1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl

Download URL websockets-11.0.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Size 120.6 kB
Tags PyPy 3.7 PyPy 3.7 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
60a19d4ff5f451254f8623f6aa4169065f73a50ec7b59ab6b9dcddff4aa00267
BLAKE2b-256 checksum
How to use checksums
265c9e7be8af65ec39e6c2704d97472f55f373a5723d84cd05e0f2672b555bc9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-win_amd64.whl

Download URL websockets-11.0.1-cp311-cp311-win_amd64.whl
Size 124.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
2796f097841619acf053245f266a4f66cb27c040f0d9097e5f21301aab95ff43
BLAKE2b-256 checksum
How to use checksums
b5327506f8795d4297cfc8834f10b37fc81ee0d7a625156d9426bf5b1d48b2a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-win32.whl

Download URL websockets-11.0.1-cp311-cp311-win32.whl
Size 124.0 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
a01c674e0efe0f14aec7e722ed0e0e272fa2f10e8ea8260837e1f4f5dc4b3e53
BLAKE2b-256 checksum
How to use checksums
af9cfef5266b7d18c090a2736db69ccef91c60d9e7dbe4b17848cb3745ee6a4c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL websockets-11.0.1-cp311-cp311-musllinux_1_1_x86_64.whl
Size 135.7 kB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
07cc20655fb16aeef1a8f03236ba8671c61d332580b996b6396a5b7967ba4b3d
BLAKE2b-256 checksum
How to use checksums
8a5670a3aac3f9002a6cef565cd13224350c643f8816fde6b2c8d5691545ef61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-musllinux_1_1_i686.whl

Download URL websockets-11.0.1-cp311-cp311-musllinux_1_1_i686.whl
Size 135.1 kB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
a797da96d4127e517a5cb0965cd03fd6ec21e02667c1258fa0579501537fbe5c
BLAKE2b-256 checksum
How to use checksums
6041ebef9d8476294fa6a7ba58a7306c8d3b7eb306b3df8c355215da24a96f6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL websockets-11.0.1-cp311-cp311-musllinux_1_1_aarch64.whl
Size 135.8 kB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
12180bc1d72c6a9247472c1dee9dfd7fc2e23786f25feee7204406972d8dab39
BLAKE2b-256 checksum
How to use checksums
9033189eb9216105755608a06800f738e14dd081e4fe8023347677cce74b486e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL websockets-11.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 131.0 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5d68bd2a3e9fff6f7043c0a711cb1ebba9f202c196a3943d0c885650cd0b6464
BLAKE2b-256 checksum
How to use checksums
2b378e8dad1d5c052e9b033a4873b4cca2e12dfbe626883d8a318a9af419ae61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL websockets-11.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 130.4 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ef0e6253c36e42f2637cfa3ff9b3903df60d05ec040c718999f6a0644ce1c497
BLAKE2b-256 checksum
How to use checksums
f2e477657fae7aa12310c2acd68f21f06b70464f46d166d4d2e5c98c7a189d61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL websockets-11.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 130.0 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
cfd0b9b18d64c51e5cd322e16b5bf4fe490db65c9f7b18fd5382c824062ead7e
BLAKE2b-256 checksum
How to use checksums
9bc5a0dabe84894491f83c4d0fd7cedcbf2dc464a706ddae47a9b6c05b8de94e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL websockets-11.0.1-cp311-cp311-macosx_11_0_arm64.whl
Size 120.8 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
45a85dc6b3ff76239379feb4355aadebc18d6e587c8deb866d11060755f4d3ea
BLAKE2b-256 checksum
How to use checksums
3fd44c838fb0d4c25fb4ced40e13c067c4ad9300b2999c6915ec8c9857ba7873
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL websockets-11.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 120.8 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
deb0dd98ea4e76b833f0bfd7a6042b51115360d5dfcc7c1daa72dfc417b3327a
BLAKE2b-256 checksum
How to use checksums
3e5b5a0db5cbf30499598010261a9b10e798159d2e6268e7551876cb9f0da945
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp311-cp311-macosx_10_9_universal2.whl

Download URL websockets-11.0.1-cp311-cp311-macosx_10_9_universal2.whl
Size 123.6 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
3cf18bbd44b36749b7b66f047a30a40b799b8c0bd9a1b9173cba86a234b4306b
BLAKE2b-256 checksum
How to use checksums
b3761865b02af0b9defe511a39dea03c92b8ef5979471b9c744cee0ed0a67df1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-win_amd64.whl

Download URL websockets-11.0.1-cp310-cp310-win_amd64.whl
Size 124.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
3a88375b648a2c479532943cc19a018df1e5fcea85d5f31963c0b22794d1bdc1
BLAKE2b-256 checksum
How to use checksums
8416f2f3e8788d38f951245b5469d280619bcf5a3fc666db11cf15ed567136fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-win32.whl

Download URL websockets-11.0.1-cp310-cp310-win32.whl
Size 124.0 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
fc0a96a6828bfa6f1ccec62b54630bcdcc205d483f5a8806c0a8abb26101c54b
BLAKE2b-256 checksum
How to use checksums
e748c5a5d265f7617346e5c94020f8f8b26c4366dd05c58c70ec92a2c41909a5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL websockets-11.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Size 134.3 kB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
892959b627eedcdf98ac7022f9f71f050a59624b380b67862da10c32ea3c221a
BLAKE2b-256 checksum
How to use checksums
70a4dd939aed29ccb36fccb4205f2c598a99c87e2577a63fadf94ecd07616b19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-musllinux_1_1_i686.whl

Download URL websockets-11.0.1-cp310-cp310-musllinux_1_1_i686.whl
Size 133.7 kB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
dbeada3b8f1f6d9497840f761906c4236f912a42da4515520168bc7c525b52b0
BLAKE2b-256 checksum
How to use checksums
2b8fd145a46a2251c1aaa60551fd4bf83f7ec112a5d1756b0438daa369bea9f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL websockets-11.0.1-cp310-cp310-musllinux_1_1_aarch64.whl
Size 134.5 kB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
25ea5dbd3b00c56b034639dc6fe4d1dd095b8205bab1782d9a47cb020695fdf4
BLAKE2b-256 checksum
How to use checksums
de155da690703a6345a98b09610053752cd40dc7076b8e97f3a63955c6e8c7e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL websockets-11.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 130.4 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
db234da3aff01e8483cf0015b75486c04d50dbf90004bd3e5b46d384e1bd6c9e
BLAKE2b-256 checksum
How to use checksums
44418e30d56d34a46bdafa04402d93ab67c474b63111339273d744615239fb4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL websockets-11.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 129.8 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d5f3d0d177b3db3d1d02cce7ba6c0063586499ac28afe0c992be74ffc40d9257
BLAKE2b-256 checksum
How to use checksums
34dbd10fe49ca9f83b99399833ae2914acbcfbd9a97928f8a4119ea6a589d6db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL websockets-11.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 129.4 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c7fdfbed727ce6b4b5e6622d15a6efb2098b2d9e22ba4dc54b2e3ce80f982045
BLAKE2b-256 checksum
How to use checksums
a704a6878c4daac7a18c777dbd76ecfc9e03998b4e5075f9ec553f77591a5c80
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL websockets-11.0.1-cp310-cp310-macosx_11_0_arm64.whl
Size 120.8 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0929c2ebdf00cedda77bf77685693e38c269011236e7c62182fee5848c29a4fa
BLAKE2b-256 checksum
How to use checksums
2986124f55d9c5c2c95278ac2672ec35d06b7b0e82e38d70e5b00262f1870c3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL websockets-11.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 120.8 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
dc77283a7c7b2b24e00fe8c3c4f7cf36bba4f65125777e906aae4d58d06d0460
BLAKE2b-256 checksum
How to use checksums
8af529b05c0ffc8934b869327b9da205d48f477d339707e67986f78b9d948e3e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp310-cp310-macosx_10_9_universal2.whl

Download URL websockets-11.0.1-cp310-cp310-macosx_10_9_universal2.whl
Size 123.5 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
3d30cc1a90bcbf9e22e1f667c1c5a7428e2d37362288b4ebfd5118eb0b11afa9
BLAKE2b-256 checksum
How to use checksums
3dcc6d747a7002819be775d26c18039e7f0717dc2e7dd58d4f8bc91ad844cf13
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-win_amd64.whl

Download URL websockets-11.0.1-cp39-cp39-win_amd64.whl
Size 124.5 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
e2654e94c705ce9b768441d8e3a387a84951ca1056efdc4a26a4a6ee723c01b6
BLAKE2b-256 checksum
How to use checksums
034c3a31d65a0f54879b9e9b84d51f84decf512735bf5ec21f79cf2e92118c14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-win32.whl

Download URL websockets-11.0.1-cp39-cp39-win32.whl
Size 124.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
29282631da3bfeb5db497e4d3d94d56ee36222fbebd0b51014e68a2e70736fb1
BLAKE2b-256 checksum
How to use checksums
215b414937cae372a25e9c704d0acfa19dc6c0efebc78f8f71cd0221db77dbee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL websockets-11.0.1-cp39-cp39-musllinux_1_1_x86_64.whl
Size 134.1 kB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
9d91279d57f6546eaf43671d1de50621e0578f13c2f17c96c458a72d170698d7
BLAKE2b-256 checksum
How to use checksums
723beef75b4dadcc2c67a29844c0aa92c51545521fe099105409b2ba3a726f55
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-musllinux_1_1_i686.whl

Download URL websockets-11.0.1-cp39-cp39-musllinux_1_1_i686.whl
Size 133.5 kB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
ceeef57b9aec8f27e523de4da73c518ece7721aefe7064f18aa28baabfe61b94
BLAKE2b-256 checksum
How to use checksums
ff92021fe86a64a3539e7250051639cd1da972878fc8afd45a080591a16b571b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL websockets-11.0.1-cp39-cp39-musllinux_1_1_aarch64.whl
Size 134.2 kB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
43e0de552be624e5c0323ff4fcc9f0b4a9a6dc6e0116b8aa2cbb6e0d3d2baf09
BLAKE2b-256 checksum
How to use checksums
c7537508e0f2474dac31c72be3c6d9b9d7e7b4359b127654a97586de8cd5291b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL websockets-11.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 130.2 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b138f4bf8a64c344e12c76283dac279d11adab89ac62ae4a32ac8490d3c94832
BLAKE2b-256 checksum
How to use checksums
9f0cce13db1dfdfb06d5ab0cd8fdf6b2f7aff33eb660abe5649b847028c6e5f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL websockets-11.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 129.5 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a4667d4e41fa37fa3d836b2603b8b40d6887fa4838496d48791036394f7ace39
BLAKE2b-256 checksum
How to use checksums
0afbdb02428a062b0c34605f4cb93f8f9a8f62c41a26b14e16e2d2cf2a3fdc1e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL websockets-11.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 129.2 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
aedd94422745da60672a901f53de1f50b16e85408b18672b9b210db4a776b5a6
BLAKE2b-256 checksum
How to use checksums
c6b44b2a969eb3819b3f6b98e81e5f89051b18c1b0ab5c4bf561ad0289b0d6b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL websockets-11.0.1-cp39-cp39-macosx_11_0_arm64.whl
Size 120.8 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5ffe6fc5e5fe9f2634cdc59b805e4ba1fcccf3a5622f5f36c3c7c287f606e283
BLAKE2b-256 checksum
How to use checksums
fd8a4ec65eb5d38180a40daa76ce12183d7cee2f7fd3bfc18620a41570051666
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL websockets-11.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 120.8 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d5a6fa353b5ef36970c3bd1cd7cecbc08bb8f2f1a3d008b0691208cf34ebf5b0
BLAKE2b-256 checksum
How to use checksums
7f7fddb20690222d566740be32255c8669b991189ad93033b7d8c7eecb555b9a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp39-cp39-macosx_10_9_universal2.whl

Download URL websockets-11.0.1-cp39-cp39-macosx_10_9_universal2.whl
Size 123.5 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
a88815a0c6253ad1312ef186620832fb347706c177730efec34e3efe75e0e248
BLAKE2b-256 checksum
How to use checksums
9e0b3dc1c369e5b470d40ea4c43197a8221d6cf82d3fbdfd8afd99c2fcae65d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-win_amd64.whl

Download URL websockets-11.0.1-cp38-cp38-win_amd64.whl
Size 124.5 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
87ae582cf2319e45bc457a57232daded27a3c771263cab42fb8864214bbd74ea
BLAKE2b-256 checksum
How to use checksums
8adc937e37caf2fa6f0176beb56423bb67cbd98944f0967e799c36789f6f77be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-win32.whl

Download URL websockets-11.0.1-cp38-cp38-win32.whl
Size 124.0 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
349dd1fa56a30d530555988be98013688de67809f384671883f8bf8b8c9de984
BLAKE2b-256 checksum
How to use checksums
8f46bdfd7f3c2194319518f8c4b0ac855fada284cd00acac171c537d0960c3c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL websockets-11.0.1-cp38-cp38-musllinux_1_1_x86_64.whl
Size 134.2 kB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
1cb23597819f68ac6a6d133a002a1b3ef12a22850236b083242c93f81f206d5a
BLAKE2b-256 checksum
How to use checksums
a7773701cd96047866413c4fc23c36f7403646de2c017712c907c6eb7ef56d9d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-musllinux_1_1_i686.whl

Download URL websockets-11.0.1-cp38-cp38-musllinux_1_1_i686.whl
Size 133.6 kB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
d5a3022f9291bf2d35ebf65929297d625e68effd3a5647b8eb8b89d51b09394c
BLAKE2b-256 checksum
How to use checksums
0d5cb50df3fc1698adac0368ea98ff114c37d79c51837e1331cefc313eea5c99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL websockets-11.0.1-cp38-cp38-musllinux_1_1_aarch64.whl
Size 134.3 kB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
b0ed24a3aa4213029e100257e5e73c5f912e70ca35630081de94b7f9e2cf4a9b
BLAKE2b-256 checksum
How to use checksums
cdfd7575adc6297e13ee46cdc5e300ce4f02387dd21465122fa4d6eb26a9f9e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL websockets-11.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 130.6 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
db78535b791840a584c48cf3f4215eae38a7e2f43271ecd27ce4ba8a798beaaa
BLAKE2b-256 checksum
How to use checksums
b5115ae989e16ad75413e0a145eb3dbbd90af55cf9fc5d00aff579a57810e2e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL websockets-11.0.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 130.0 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
e039f106d48d3c241f1943bccfb383bd38ec39900d6dcaad0c73cc5fe129f346
BLAKE2b-256 checksum
How to use checksums
768a7bfea47c2a501c7bd57b56a3c458cf4882e55d41665ed93c8668a070ddad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL websockets-11.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 129.7 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
fa1c23ed3a02732fba906ec337df65d4cc23f9f453635e1a803c285b59c7d987
BLAKE2b-256 checksum
How to use checksums
ef6f2e6e41df4821c195326eba4ef86cd2a7070bda60868ac7ca867793b61826
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-macosx_11_0_arm64.whl

Download URL websockets-11.0.1-cp38-cp38-macosx_11_0_arm64.whl
Size 120.8 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f888b9565ca1d1c25ab827d184f57f4772ffbfa6baf5710b873b01936cc335ee
BLAKE2b-256 checksum
How to use checksums
996b54cdb0d5c61bcfcb5fef2f7f9647e4220c5b3a58b3924bd335d01075058a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL websockets-11.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 120.8 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
007ed0d62f7e06eeb6e3a848b0d83b9fbd9e14674a59a61326845f27d20d7452
BLAKE2b-256 checksum
How to use checksums
7e5de15a0bb14ac313585cf94bd048d472229c5b847258f7d226f52438bef7b5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp38-cp38-macosx_10_9_universal2.whl

Download URL websockets-11.0.1-cp38-cp38-macosx_10_9_universal2.whl
Size 123.5 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
52ba83ea132390e426f9a7b48848248a2dc0e7120ca8c65d5a8fc1efaa4eb51b
BLAKE2b-256 checksum
How to use checksums
6a88cedea93372e425424a6f0c192559bf77b3d3a2f13a78351ee31ac1ac586a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp37-cp37m-win_amd64.whl

Download URL websockets-11.0.1-cp37-cp37m-win_amd64.whl
Size 124.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
aef1602db81096ce3d3847865128c8879635bdad7963fb2b7df290edb9e9150a
BLAKE2b-256 checksum
How to use checksums
2057a8b1665973d23f5159971f58297091663c43c8b6ca0f943fe97c7bee0600
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp37-cp37m-win32.whl

Download URL websockets-11.0.1-cp37-cp37m-win32.whl
Size 124.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
385c5391becb9b58e0a4f33345e12762fd857ccf9fbf6fee428669929ba45e4c
BLAKE2b-256 checksum
How to use checksums
a90f8bd4aeff72141399cb721a9217e6b81b28338770bc99816e6385d5b2c2de
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL websockets-11.0.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 135.0 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
ac042e8ba9d7f2618e84af27927fdce0f3e03528eb74f343977486c093868389
BLAKE2b-256 checksum
How to use checksums
0e3246ac6970e62b9741e0fb8201a2ddd75e59a3e7d6c620e236bbe02d8a70b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp37-cp37m-musllinux_1_1_i686.whl

Download URL websockets-11.0.1-cp37-cp37m-musllinux_1_1_i686.whl
Size 134.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
c90343fd0774749d23c1891dd8b3e9210f9afd30986673ce0f9d5857f5cb1562
BLAKE2b-256 checksum
How to use checksums
7717ed3517528e8b78dd020b212c9d70b43d43a292d8585dd00d9be03090da7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL websockets-11.0.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 135.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
d4e0990b6a04b07095c969969da659eecf9069cf8e7b8f49c8f5ee1bb50e3352
BLAKE2b-256 checksum
How to use checksums
cdc94414834d21d5df16c1de35ac29218cec05748c954aa6f17dca49504dd000
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL websockets-11.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 130.4 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4fe2aed5963ca267c40a2d29b1ee4e8ab008ac8d5daa284fdda9275201b8a334
BLAKE2b-256 checksum
How to use checksums
91cd385fe865434f31e63305e5597868cfaad567e672d4e8a3b61c237823984b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL websockets-11.0.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 129.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ec4e87eb9916b481216b1fede7d8913be799915f5216a0c801867cbed8eeb903
BLAKE2b-256 checksum
How to use checksums
2593a6bfde891a16fc20070f2ee51bd2eb936ff6f6ec0cba35b419ee762b9d88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL websockets-11.0.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 129.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
84e92dbac318a84fef722f38ca57acef19cbb89527aba5d420b96aa2656970ee
BLAKE2b-256 checksum
How to use checksums
e6ac188e6d82a2d688a22e975560bbc63d06ac000940756c5e9daf94ebe5c77c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release files / websockets-11.0.1-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL websockets-11.0.1-cp37-cp37m-macosx_10_9_x86_64.whl
Size 120.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
54d084756c50dfc8086dce97b945f210ca43950154e1e04a44a30c6e6a2bcbb1
BLAKE2b-256 checksum
How to use checksums
dcccf2b98e27828ceb0a9c2bac90552dc6e938ff212d02e17c2f0d4a5631cc2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.11.3

Release history Release notifications | RSS feed

17.1

148 release files

17.0

108 release files

16.1

109 release files

16.0

61 release files

15.0

69 release files

14.2

69 release files

14.1

69 release files

14.0

69 release files

13.1

86 release files

13.0

86 release files

12.0

72 release files

This release

11.0.1 This release

70 release files

11.0

70 release files

10.4

69 release files

10.3

48 release files

10.2

48 release files

10.1

48 release files

10.0

25 release files

9.1

33 release files

9.0.2

33 release files

9.0

22 release files

8.1

22 release files

8.0.2

11 release files

8.0.1

11 release files

8.0

11 release files

7.0

21 release files

6.0

21 release files

5.0.1

13 release files

5.0

16 release files

4.0

12 release files

3.4

20 release files

3.3

2 release files

3.2

2 release files

3.1

1 release file

3.0

2 release files

2.7

2 release files

2.6

2 release files

2.5

2 release files

2.4

2 release files

2.3

2 release files

2.2

1 release file

2.1

1 release file

2.0

2 release files

1.0

2 release files

0.1

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page