Skip to main content
websockets

licence version pyversions

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.

Implementations on top of threading and trio are also provided, as well as a Sans-I/O layer for integration in third-party projects.

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():
    server = await serve(echo, "localhost", 8765)
    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.

Download files

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

Source Distribution

websockets-17.1.tar.gz (187.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

websockets-17.1-py3-none-any.whl (211.1 kB view details)

Uploaded Python 3

websockets-17.1-pp311-pypy311_pp73-win_amd64.whl (217.9 kB view details)

Uploaded PyPyWindows x86-64

websockets-17.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

websockets-17.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (215.7 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

websockets-17.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (215.8 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

websockets-17.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (214.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

websockets-17.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (214.6 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

websockets-17.1-cp315-cp315t-win_arm64.whl (217.4 kB view details)

Uploaded CPython 3.15tWindows ARM64

websockets-17.1-cp315-cp315t-win_amd64.whl (217.4 kB view details)

Uploaded CPython 3.15tWindows x86-64

websockets-17.1-cp315-cp315t-win32.whl (217.1 kB view details)

Uploaded CPython 3.15tWindows x86

websockets-17.1-cp315-cp315t-musllinux_1_2_x86_64.whl (225.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

websockets-17.1-cp315-cp315t-musllinux_1_2_s390x.whl (225.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ s390x

websockets-17.1-cp315-cp315t-musllinux_1_2_riscv64.whl (224.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

websockets-17.1-cp315-cp315t-musllinux_1_2_ppc64le.whl (226.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

websockets-17.1-cp315-cp315t-musllinux_1_2_i686.whl (225.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

websockets-17.1-cp315-cp315t-musllinux_1_2_armv7l.whl (225.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

websockets-17.1-cp315-cp315t-musllinux_1_2_aarch64.whl (226.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

websockets-17.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (223.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

websockets-17.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (226.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

websockets-17.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (227.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

websockets-17.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (228.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

websockets-17.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (226.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

websockets-17.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (225.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

websockets-17.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (225.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

websockets-17.1-cp315-cp315t-macosx_11_0_arm64.whl (215.1 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

websockets-17.1-cp315-cp315t-macosx_10_15_x86_64.whl (214.9 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

websockets-17.1-cp315-cp315t-macosx_10_15_universal2.whl (217.3 kB view details)

Uploaded CPython 3.15tmacOS 10.15+ universal2 (ARM64, x86-64)

websockets-17.1-cp315-cp315-win_arm64.whl (217.2 kB view details)

Uploaded CPython 3.15Windows ARM64

websockets-17.1-cp315-cp315-win_amd64.whl (217.3 kB view details)

Uploaded CPython 3.15Windows x86-64

websockets-17.1-cp315-cp315-win32.whl (217.0 kB view details)

Uploaded CPython 3.15Windows x86

websockets-17.1-cp315-cp315-musllinux_1_2_x86_64.whl (224.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

websockets-17.1-cp315-cp315-musllinux_1_2_s390x.whl (224.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ s390x

websockets-17.1-cp315-cp315-musllinux_1_2_riscv64.whl (223.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

websockets-17.1-cp315-cp315-musllinux_1_2_ppc64le.whl (225.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

websockets-17.1-cp315-cp315-musllinux_1_2_i686.whl (224.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

websockets-17.1-cp315-cp315-musllinux_1_2_armv7l.whl (224.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

websockets-17.1-cp315-cp315-musllinux_1_2_aarch64.whl (225.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

websockets-17.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (222.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

websockets-17.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (225.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

websockets-17.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (226.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

websockets-17.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (227.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

websockets-17.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (226.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

websockets-17.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (224.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

websockets-17.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (224.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

websockets-17.1-cp315-cp315-macosx_11_0_arm64.whl (214.9 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

websockets-17.1-cp315-cp315-macosx_10_15_x86_64.whl (214.7 kB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

websockets-17.1-cp315-cp315-macosx_10_15_universal2.whl (217.0 kB view details)

Uploaded CPython 3.15macOS 10.15+ universal2 (ARM64, x86-64)

websockets-17.1-cp314-cp314t-win_arm64.whl (217.4 kB view details)

Uploaded CPython 3.14tWindows ARM64

websockets-17.1-cp314-cp314t-win_amd64.whl (217.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

websockets-17.1-cp314-cp314t-win32.whl (217.2 kB view details)

Uploaded CPython 3.14tWindows x86

websockets-17.1-cp314-cp314t-musllinux_1_2_x86_64.whl (225.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

websockets-17.1-cp314-cp314t-musllinux_1_2_s390x.whl (224.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

websockets-17.1-cp314-cp314t-musllinux_1_2_riscv64.whl (223.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

websockets-17.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (226.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

websockets-17.1-cp314-cp314t-musllinux_1_2_i686.whl (225.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

websockets-17.1-cp314-cp314t-musllinux_1_2_armv7l.whl (224.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

websockets-17.1-cp314-cp314t-musllinux_1_2_aarch64.whl (225.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

websockets-17.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (223.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

websockets-17.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (225.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

websockets-17.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (226.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

websockets-17.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (228.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

websockets-17.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (226.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

websockets-17.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (225.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

websockets-17.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (224.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

websockets-17.1-cp314-cp314t-macosx_11_0_arm64.whl (215.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

websockets-17.1-cp314-cp314t-macosx_10_15_x86_64.whl (214.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

websockets-17.1-cp314-cp314t-macosx_10_15_universal2.whl (217.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ universal2 (ARM64, x86-64)

websockets-17.1-cp314-cp314-win_arm64.whl (217.3 kB view details)

Uploaded CPython 3.14Windows ARM64

websockets-17.1-cp314-cp314-win_amd64.whl (217.4 kB view details)

Uploaded CPython 3.14Windows x86-64

websockets-17.1-cp314-cp314-win32.whl (217.0 kB view details)

Uploaded CPython 3.14Windows x86

websockets-17.1-cp314-cp314-musllinux_1_2_x86_64.whl (224.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

websockets-17.1-cp314-cp314-musllinux_1_2_s390x.whl (224.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

websockets-17.1-cp314-cp314-musllinux_1_2_riscv64.whl (223.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

websockets-17.1-cp314-cp314-musllinux_1_2_ppc64le.whl (225.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

websockets-17.1-cp314-cp314-musllinux_1_2_i686.whl (224.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

websockets-17.1-cp314-cp314-musllinux_1_2_armv7l.whl (223.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

websockets-17.1-cp314-cp314-musllinux_1_2_aarch64.whl (225.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

websockets-17.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (222.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

websockets-17.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (225.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

websockets-17.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (226.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

websockets-17.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (227.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

websockets-17.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (225.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

websockets-17.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (224.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

websockets-17.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (224.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

websockets-17.1-cp314-cp314-macosx_11_0_arm64.whl (215.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

websockets-17.1-cp314-cp314-macosx_10_15_x86_64.whl (214.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

websockets-17.1-cp314-cp314-macosx_10_15_universal2.whl (217.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

websockets-17.1-cp313-cp313-win_arm64.whl (217.7 kB view details)

Uploaded CPython 3.13Windows ARM64

websockets-17.1-cp313-cp313-win_amd64.whl (217.8 kB view details)

Uploaded CPython 3.13Windows x86-64

websockets-17.1-cp313-cp313-win32.whl (217.5 kB view details)

Uploaded CPython 3.13Windows x86

websockets-17.1-cp313-cp313-musllinux_1_2_x86_64.whl (224.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

websockets-17.1-cp313-cp313-musllinux_1_2_s390x.whl (224.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

websockets-17.1-cp313-cp313-musllinux_1_2_riscv64.whl (223.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

websockets-17.1-cp313-cp313-musllinux_1_2_ppc64le.whl (225.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

websockets-17.1-cp313-cp313-musllinux_1_2_i686.whl (224.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

websockets-17.1-cp313-cp313-musllinux_1_2_armv7l.whl (223.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

websockets-17.1-cp313-cp313-musllinux_1_2_aarch64.whl (225.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

websockets-17.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (222.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

websockets-17.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (225.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

websockets-17.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (226.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

websockets-17.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (227.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

websockets-17.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (225.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

websockets-17.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (224.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

websockets-17.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (224.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

websockets-17.1-cp313-cp313-macosx_11_0_arm64.whl (214.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

websockets-17.1-cp313-cp313-macosx_10_13_x86_64.whl (214.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

websockets-17.1-cp313-cp313-macosx_10_13_universal2.whl (217.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

websockets-17.1-cp312-cp312-win_arm64.whl (217.7 kB view details)

Uploaded CPython 3.12Windows ARM64

websockets-17.1-cp312-cp312-win_amd64.whl (217.8 kB view details)

Uploaded CPython 3.12Windows x86-64

websockets-17.1-cp312-cp312-win32.whl (217.5 kB view details)

Uploaded CPython 3.12Windows x86

websockets-17.1-cp312-cp312-musllinux_1_2_x86_64.whl (224.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

websockets-17.1-cp312-cp312-musllinux_1_2_s390x.whl (224.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

websockets-17.1-cp312-cp312-musllinux_1_2_riscv64.whl (223.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

websockets-17.1-cp312-cp312-musllinux_1_2_ppc64le.whl (225.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

websockets-17.1-cp312-cp312-musllinux_1_2_i686.whl (224.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

websockets-17.1-cp312-cp312-musllinux_1_2_armv7l.whl (223.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

websockets-17.1-cp312-cp312-musllinux_1_2_aarch64.whl (225.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

websockets-17.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (222.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

websockets-17.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (225.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

websockets-17.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (226.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

websockets-17.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (228.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

websockets-17.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (225.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

websockets-17.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (224.6 kB view details)

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

websockets-17.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (224.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

websockets-17.1-cp312-cp312-macosx_11_0_arm64.whl (215.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

websockets-17.1-cp312-cp312-macosx_10_13_x86_64.whl (214.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

websockets-17.1-cp312-cp312-macosx_10_13_universal2.whl (217.0 kB view details)

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

websockets-17.1-cp311-cp311-win_arm64.whl (217.7 kB view details)

Uploaded CPython 3.11Windows ARM64

websockets-17.1-cp311-cp311-win_amd64.whl (217.8 kB view details)

Uploaded CPython 3.11Windows x86-64

websockets-17.1-cp311-cp311-win32.whl (217.5 kB view details)

Uploaded CPython 3.11Windows x86

websockets-17.1-cp311-cp311-musllinux_1_2_x86_64.whl (224.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

websockets-17.1-cp311-cp311-musllinux_1_2_s390x.whl (224.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

websockets-17.1-cp311-cp311-musllinux_1_2_riscv64.whl (223.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

websockets-17.1-cp311-cp311-musllinux_1_2_ppc64le.whl (225.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

websockets-17.1-cp311-cp311-musllinux_1_2_i686.whl (224.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

websockets-17.1-cp311-cp311-musllinux_1_2_armv7l.whl (223.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

websockets-17.1-cp311-cp311-musllinux_1_2_aarch64.whl (225.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

websockets-17.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (222.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

websockets-17.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (224.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

websockets-17.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (226.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

websockets-17.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (228.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7lmanylinux: glibc 2.31+ ARMv7l

websockets-17.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (225.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

websockets-17.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (224.3 kB view details)

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

websockets-17.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (224.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686manylinux: glibc 2.5+ i686

websockets-17.1-cp311-cp311-macosx_11_0_arm64.whl (214.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

websockets-17.1-cp311-cp311-macosx_10_9_x86_64.whl (214.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

websockets-17.1-cp311-cp311-macosx_10_9_universal2.whl (217.0 kB view details)

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

File details

Details for the file websockets-17.1.tar.gz.

File metadata

  • Download URL: websockets-17.1.tar.gz
  • Upload date:
  • Size: 187.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1.tar.gz
Algorithm Hash digest
SHA256 acfea4c20bf54384883ea33b1240fc1db4f52e190823a4e2b334bc3e8bfca96a
MD5 1d11b405b284374774d43bb70a6faf92
BLAKE2b-256 1872fba934cb3dff7a85d811820efffcd141ddd52b5a2a01637f64551373ff4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1.tar.gz:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-py3-none-any.whl.

File metadata

  • Download URL: websockets-17.1-py3-none-any.whl
  • Upload date:
  • Size: 211.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f221081107b8c48184d99f7019604486376e7ef826037e70aad6b02540732c23
MD5 c3729a3c582aa5166918cf7356106df6
BLAKE2b-256 416323572870e01836a98346075b9e17a8bc24a6ddd9800a3204ceee58677f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-py3-none-any.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for websockets-17.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8196d217eeca52b9235ee1f8a684a09885a5f953d5a31e80ef915bf2c5c94f9d
MD5 3edd8c1ecd849f9d87dcabb3310b0fb8
BLAKE2b-256 be7e75a0a491b512412e08333b9f8412757af6186fe1c598186261002de1a793

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a62d8c424383c9dc769ff3672018df822603117e32686e567d452ed035b6fb2e
MD5 dc73222f8e1e8e66df08d1a0c7fa8ef8
BLAKE2b-256 c4b137fe0c96c206b4208a072c3a74add6a72af4b8228be3f5435163c5a6d099

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8d1b108bd8f5f6a8b90801f6db3b3858d5deca889acfdb8ac497bbb24e4b0edf
MD5 042db2c31852ea17cc25832d0ca928e2
BLAKE2b-256 9b6b251b00fe634e2a9c2cb5d6390e0e97cec55e3d18dd09b4b976620eed5d7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 764cf7bfa149365f32b7a0fd9fed32debdac29dd06295d5635cde1745b446cd8
MD5 73715701cdda528e5a94ac9ee454212a
BLAKE2b-256 4fa7d370ab794f47fbeea648d17ad08caf0bb50131d6c04b7ad83e6af63c405a

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17aa424ab61620aad21b36b2240efc87b500cc496e7d0e999a5c2ae99395e886
MD5 ad130522bd411277e2428cc4941d56e4
BLAKE2b-256 4dfe819fba7ba35f92b639333da7355041c07dd50048f9c76fba0b8e292a6483

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 10ecb38ffc05e1841b619d99c725307a223ef9ad58e7b1ed33311d472dc43918
MD5 efd083a9233e25ac3a127c73676cf82d
BLAKE2b-256 e7e4af4abbcf07eac6a725ec6f865611526b2b0c23d482723de551bec667880d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: websockets-17.1-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 217.4 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 e552e0037230ac16e5f568de7012041344d1b18c9feed30ec2891b8eba55af81
MD5 4277e72789c55ab057752ad3fb061182
BLAKE2b-256 ce3c8b9a225b523f06a9389be81f1b0ab07c49bec6014742e6aa359c1f920f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-win_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: websockets-17.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 217.4 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 ad68c28a27246fed109a4409393d677b7e1388345cbbd2f5aee5c182d8506110
MD5 0504244a3033c8389e1f02bdac2e9f3b
BLAKE2b-256 2c8477599922ab441bfe61508f97dab2c71f8e114d31793993ea54011db16199

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-win32.whl.

File metadata

  • Download URL: websockets-17.1-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 217.1 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 f78a3ffb1994304db2c0c4588e4d1a518079b557054fa3bb985a6f5e50ff49a3
MD5 e098a8ede294e35ceb890229483d2d2f
BLAKE2b-256 4ef599857c3dd9676749f33e3668665a34ad6099505fb8d75eb084f49f7807a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-win32.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f58f58b4b29bbea2a3635e2c56eff4a3adab011fe383802a9e542e31b97085fc
MD5 191d55cb58bd85154e462098f0bff8b5
BLAKE2b-256 27cf0d1c694b6466c89e875b85b32b51312c472cf6708eee91914866f5087dde

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 12c8e2b25df59755954a04dfa09c990b96691025aaf7eafd19ed6da24b09c18d
MD5 c340552d40e61c07e246fdb541bcb982
BLAKE2b-256 961803709c84bc88ec4dcea68d4be4ccd07d611073dec111203a5bf45af8809d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-musllinux_1_2_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b1c323fc3be1dc3f87f6c59458cb7d9e13dcbbf971d6c3f3e2bbaf58d3bfcdfe
MD5 dbfbb18565d6daba99333f67e0c0ec4a
BLAKE2b-256 b3dd844bd0b6386fc81ed6a55f4b6dd26f01c6987eda205afa10175ea12b2164

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-musllinux_1_2_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2786cbd273ab69c22612db8a41229ddf2c158060b17b5928884bf388d07887f3
MD5 aef1327b5004e664c8e16a1d69377e3b
BLAKE2b-256 3e470d63d4168536b4682c9d19b7399443b1176f25dbb68878374fa716670230

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a20136d61f9ca3a31493732762661fafc2c20e8861930214e21afc6a8a692a2
MD5 85ad5d8448a820c38dbff72a0e8d666e
BLAKE2b-256 e050aed08f25301f8eef23be903ff9319fcf35630ca2bdec9d226f7d804dd5b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-musllinux_1_2_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 615746b12b26a3fd4077bc6fbeb277a1c192a45dd57b531d07ad9ed5c52a9a7a
MD5 45472d6cba5bc315a54391b1070ae781
BLAKE2b-256 417d5b511b9bf6e9ad331e6ff902fcbcc71c3794d10ef3b5efe80ccb8f0a7861

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb0efe019480a1c93e168ce96479273aaebd672fc8c350d5eed1e507ababb1b8
MD5 c3186891907b4ec38dfabb48799642a7
BLAKE2b-256 64b182b36bfabc79ff2d383a1fc043cee6a13f794ef4f6bf1b4810ad6988cf6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dc053f9e95a76213c5eb7ed95779f7daf0d2bf0e4e03073629ebfa43a033f151
MD5 7599d6abc72dac61d20a07e538a60cd2
BLAKE2b-256 d7417133fcfb63f5562750b269d6a845c689dde6a2c6407286da395beea19ddd

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f3a1d577e081667dda7f8e5b4796e6e32f9713c93e2a3d930669519840a3c623
MD5 f5dd35511c0cf674496c514d52d39b47
BLAKE2b-256 47a5fb1642302f8ec77ca922203074f155a9831a5128ad75e725059a476d1227

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 cec1bb8f22abccc8d20f8ca63df9be41600c26c190f4b97ee86c675fd4a863a6
MD5 6f0ecf31bb89db84aacaf8da7ace8abe
BLAKE2b-256 51fef2331b6b7ccc67589891da354fa46a5cb79e95f83b9fd0e734d77f1f2140

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 880069d21cc33a558dcf180924a546d1ecf8ada5be3e4e70acee87019d706a24
MD5 d7d4178743ca5f3ed2a469e87e9f1a21
BLAKE2b-256 b4dc096c67940fb957e667ca3c542818150434eb0388c6fdc90b3a502f3c3e96

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a8e768a048c2220697477ce2e67e4345dc9f693d0ee6af53945b5e30227c6a7
MD5 6524f180226771269d031df24272fda8
BLAKE2b-256 50ce64c7d00005bd0d15ecb5c5fcb7fb2597b6b92ddd16c4fa6bbc3d2835ad63

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a7b35181a14cbfcae163b4de545d22abfd07d06c2c41ca69cfcd99251d6888ab
MD5 50e91c79bb929d3ca98f1aacb831c2ba
BLAKE2b-256 7fd885ea722f483510abb39fc71aafb4465d17cf9051a275ab036874ff3c300c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d9d01e8ede41fea4f5a847dad9d628355f74905f437a5b6856d67aa66d193800
MD5 fc22d6b239cb317ab8056a5a77cfdda1
BLAKE2b-256 74bf3267966cc1bbc2b8fa62fd329651b0af502df1f5d1c0eed027ff339d6aa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 259f45358c76d3b18489e3e80636cdbe807e05ecf1b10fdf1a779106d23d0c8e
MD5 8dc02f3942b1104ba2774f6b007d66e9
BLAKE2b-256 3737944cf17bad668e9be1247e6314f88a48b9faf7c250e383410db8b38af0b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 416b4bc8789a1865a3ff643ec4ee073a5f52402d0dbeafd27b1798d5dd6b6a51
MD5 12da98bf46496b431ad2e65a38deff42
BLAKE2b-256 bd7dd536f5bc89ea5b52fd1c1727c59fabafee6bc41f5ce92c3bd2f83047908c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 1a5cf4e7bbe3ca499e6a289206cb4fcb7444b09919e129bd517f57d5fa192c13
MD5 f9948ac919435994dcd95c31387e6895
BLAKE2b-256 94caed02e75996a266d76c5fcb5dd9b930db4cf2b388ca5fa3d2a72086f81568

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315t-macosx_10_15_universal2.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: websockets-17.1-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 217.2 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 d58159af7835fde09c462394293c0d7aaf8fb4557d8f8e5699f5e722ccae013d
MD5 4d392337a8807c40dbd9e4485da5e951
BLAKE2b-256 76331fe6ed1b5087516115ca451b2c240314b010647071f8fc3bd78a21e4dddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-win_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: websockets-17.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 217.3 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 4af784f3e436f65b355c117c6497320f2b5cf6a559295cb1c4c7338e335d45cc
MD5 67802c61ec3cbf54f26678d649eec116
BLAKE2b-256 eaf07b5fdb774c245e0b6217009e2a24d2105c1a64923949f33be41aa7959302

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-win_amd64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-win32.whl.

File metadata

  • Download URL: websockets-17.1-cp315-cp315-win32.whl
  • Upload date:
  • Size: 217.0 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 0f4f50dfe2cc810fc4e2de979b35e83bf8bb4bccdc6fe472d93762ea7b1d5927
MD5 5ca0f0e13e4fef7f9a4ce8e6f3c52c8e
BLAKE2b-256 5893f8342b55864f71df13eb8e9ef7dce691b87a87f04f75bb8a1385b3336e7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-win32.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4c45ee2512d3757b5e6c67c5a34e435143f2ecb7df3324f9fd888688c45c0f4
MD5 b4822069fa951905e7f290417b65daea
BLAKE2b-256 e7f9648d4e68621688b19093b06f7b497d520952e68cdea1c1b54371fe9491de

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 01dcb47deebc40b38fd4a493b9b9f4d0a704b7bec6f35e4d34085b329abce71a
MD5 6dfd57ccceecbe82dd4c14d71d2864b0
BLAKE2b-256 b969fc1555bff884de363f1bf9eebf2836dbeb29fa7e4f957debb7bbcf43abba

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-musllinux_1_2_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 12fe8984a32dbfd084e0603f1a8d740c0180cb85b3174585c54a80d2455a8394
MD5 72e3695fbf1244d06ec7929622d483d8
BLAKE2b-256 c7e0b058047b7cf565e1105b10ef6b6b24a6ebe3575678c7dc75a645334705a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-musllinux_1_2_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e74e41f0ad12ff1e8983e349daef79d37cc8280c743ce9d134d6c74c18dab5d6
MD5 1f82d75a420a2decb2d210724c73fe57
BLAKE2b-256 9f47bcb9128d9afc4d0934d9192e2a24897ca2f7a63df2654904915349c6c46d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 722ec21717eec6477bce582147a28acdfe034e604239466a6a95daedb863e774
MD5 ceb8855940da336cdb298a3aa367f18a
BLAKE2b-256 c55f744e032ac80e11039a7447657ebabb46e9b5c2dbcec83be571335212932f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-musllinux_1_2_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6e63c01803be425ff062b7f7fc201a74def1d49fc94a2410dd17375df75936e9
MD5 51d4643ebe985fdf923842b32af3bb0c
BLAKE2b-256 7f1c6467b401d19408f34e1c7389c222c2c7e1dfdf08c551190269b5eabc726c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-musllinux_1_2_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33e45c7ea38428e740a7f233555d71df0b875cef7fc080acebc9654475e35335
MD5 1cb8f2c99fbecede8d59f4346e6dc41e
BLAKE2b-256 40fb4c3d2a3269cde3f3087916de9c3d9fc5d7196b46846d8c3a9ae59ad0a884

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 46e7a10bf04318c7b0c0273791925ae5e1cbe4a11e34aa934d2ef27862058a80
MD5 bc2b33dbf383b9b841e58243b7fcf658
BLAKE2b-256 b18da8479bbb09ff054907d141123d8f52fb6ae5ac39c6dbe39e6a02a8408309

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e78fd4b7b2c5086a38671c9c882c1e643385eccea360b5b1fda4a105e590087e
MD5 3475ed922ace1b43e4f0aa6e45f5ab7c
BLAKE2b-256 be676df3f63ffc48f08126ed0cd2fd2a41092967c3e364f8ec100deae90b6d77

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1036189bd34b0bc1b10a4679321e2c7968af317efe6e8e4c1c5141c4254fb5bb
MD5 c2a8f698f2c49fcb7eeb54cb4f6690eb
BLAKE2b-256 ec250dd4495df3c0e02f6db705312ba85ab9b2dd42257dc23eb0da10066e4844

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ce13c7d233239e739600a57d4a73c1192ad8259e655a4d55aa1a454242bc809d
MD5 e2f256291b164f96a1caba0a8449547b
BLAKE2b-256 4b26e2412f2b998a8c1dfc00c0709ff6ee0c634dd0b0b4f92bdfe9667876b71c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc5789e5ea182b77a38881383ada5347202a6c66f4857d054e075290e80b604b
MD5 c12d33173a6833adc3490a4da2d2f5a6
BLAKE2b-256 76835ab0abed58454909e8dbab45086ac68ee4556d7a8ada26735addc909b903

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d7b349265fad6244013eecd99df8d83c12bf3013943e431f4fadd5bffc37db42
MD5 8da131157ac6d798a15b5e1106e9167c
BLAKE2b-256 a8ddb83537aae4cf61615b9d8b2dbb235c0030ba85457a6d934798273814600f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9ae55d24241fc055f22aea3ac924559069848bd0ad4ea065fdd72d2194685fe8
MD5 7d3a9b4bf19a60d9a2e9832ee316fcdb
BLAKE2b-256 4cffb442415fc4f7f9943b0fc8e8eebaa13923ca73361e167c439ba634eecbd9

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3546ef55b3a074494106508bc6505c73825970d2d9505f7bf53882b3e88b0d1e
MD5 de2e2607f55ab95a3bea3e35c5b4bf35
BLAKE2b-256 070095d39549f86e34425a0412bcbe61708dd1fc46af654e2134a6c4389102ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 88bc5138e53903a85c354e59df7ba73ce306f7b09724cef74dba121e60a88ce2
MD5 905ef14790cec4956acf8882c53c7de0
BLAKE2b-256 a60e1e7f6e833728193958d3ed3d67b5d57c3c7cfa948abf94d4bc553257c954

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp315-cp315-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp315-cp315-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 88381602e379165b66244b2ebc29f9b23ea0851fbe63ae157f91ca324f072d6f
MD5 8a7beffc6afe3b35fcf4e0b2006f556b
BLAKE2b-256 ded599a6c6a1eb5d5ae9f45f59a3c97f4e3b21f310eb404a547fb3e7d2fc054c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp315-cp315-macosx_10_15_universal2.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: websockets-17.1-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 217.4 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d1e2f5fa2b6d01f0d85b4f223fea7ed1d504be282a02a81bd2be4817ef7a2f03
MD5 f7138a9fd7ee8e9f1c82598ba2a4478f
BLAKE2b-256 76a3822005d0c674451d2411027b878cdc128a2b7ea5a30d337d9e279da22eba

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: websockets-17.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 217.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8f6c38cdcaf98a911d7acc25577f2f9e710f3a2fc2bde1563556784320196b51
MD5 9d0503a149ff4a5fe9658eb771e92976
BLAKE2b-256 320a67d5ee08dd8060a37d612fd40a625b5376ad19ae48fe1c8ad428c278b817

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: websockets-17.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 217.2 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2cce251f3e2469b99b6802b55435bcdd07123b41870f54c87b336183af9d7e68
MD5 fcebabef08efafb64edded6d0d1007b6
BLAKE2b-256 28422b95ada4ea19bf3a2072b68669ce4f4afb212690b727d31640576287fd68

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-win32.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b65d5fe48219dc2d5e158de9e6514e75600f379cc7e37108d35f31764c155566
MD5 ecfff407de2818ff880a85c9cbf35914
BLAKE2b-256 14504ef62941111db6b31193f4fabbb65f845a5177579040cb8fe0d774d25034

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e8dc3fa6d6b7ead3f9de57895f41b116a28787548e066365d9d90f7356bcaad2
MD5 9f3c88e0dad79230aa62bc8db0d1e87a
BLAKE2b-256 4805ac569090726dedd6656f3ee28b0c02dfb1ba76e898dceaccc2987a237cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-musllinux_1_2_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6da17fc94bd270f5987b10bee113461ac36a36a98b0481ddcc98056e5a90001a
MD5 c8ad390bac584aabb27abfa7624fb8d1
BLAKE2b-256 283de7a6e9777b29433620167c98f3caaff0d6b08b1239a273ef7f7fd1393349

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ff3e2ba7a9f0a110b0555452e9b5a03a34e11662544e01beea15f144b48ba7b7
MD5 b7d96ec2a9b7155ecf2ebd2e3f611a42
BLAKE2b-256 e2dbe32200f99ce282e728d2929f2c429db353cf3282db7d0eba99eb32c9fec1

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db9d7ee47f3ba531e278be539af39e2c7c7d28fb94897b6cd1120d63b0ef5922
MD5 4081aa9ddf6db02e325fc88e2b5ae20e
BLAKE2b-256 5893ccf1af0a23e5748d4e22292a377d78d15cf294d7e707bbb11a8990ae6bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0014eaff8ad5b3b43feda2279f9d34bf2eaae040720b9fbbb55944b10f40b14d
MD5 74dedbf0f8032af37093128e563efd54
BLAKE2b-256 e18e07ab3f44215d89840d5385fdcaaab1fed8caeffa67c6899e15062957c12c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aec00f018d34c67500ff0438dc314b40277be4a1b983cbacbf53ccf7db63e257
MD5 641a4d1c62319b7f5a66078df724ffe0
BLAKE2b-256 a440ea401c141a79c5b1d0021a0dab9d0df2051c108f1620fbb39a6e7c714c3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 32a2a68d989d6e5b74a9d5095415c51189ebae29fceb7cf2b64a1c0318a81256
MD5 75e0383263d0c23886c0ebeb09476719
BLAKE2b-256 654dda8d2760db53e17aae763738b6ba834b1fcf16813d3632f3edb6951e1ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1c7ac77401227212dc6e849182feee50d57cf456ec6329ffd6979c94bb136c5c
MD5 ae5553406ec2705970040ea799246f3c
BLAKE2b-256 7898ecd8f5e1c5d0e54c08ebc5c66852271112166db68107cb0e17ca1bf25009

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f612dc57f00c07cf4aa2673f7cbceabd654ad2457b7e639f061b794d6e11f9fd
MD5 3bae7ae708181d492edbdaa6832bfbf5
BLAKE2b-256 1a2646da6dd0363c2db2e4876fd59a40fd40c1943a82d7018d0a33afbce47d52

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 8fbf28e639544503b7d1c96452a5e5e043e4108d89b1f3fa02910603622d19db
MD5 62b91b272d29c3645cf7e01b34d52aa7
BLAKE2b-256 b1c9cc1964a096d16f3b73cb1ee5f14f277f5a3bcac07c6e8f9a1dcded99f4c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a74531ce81af587f906ab42f194032388fcff8fc7938402e5917c9147a39441
MD5 1f524d6fe0bf4799d71cdae96c8aa9f1
BLAKE2b-256 40ebed03aa3cae748ebf6397e5d44028f433f746bad09dc568ff754fda3a3c9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 50903d335bfda026c2fa11dd9aed09d8cbee0c451e3a85122a9acb041b7dc69b
MD5 a4ef60ce788e19ac350e0349d450f694
BLAKE2b-256 369d9034e867dc85340be058619751742b895f722326e83100d110063461ca07

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 ea0ed9373b880115911d9d39634bccc95b8ce590c9c42e8589f5cacc3ef3cee2
MD5 f82b481d165625dbd12426e7444b03d6
BLAKE2b-256 ec061381c8fff525041025909eb80ace32489194a00ba22a0a8d428030afcc84

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6de9acef07e3a78e9567fcd26c29011a4da8f050b13004bbf880a0fd82a6eea5
MD5 193ddd0c6f3c6eeb186f7605485fbf93
BLAKE2b-256 046e4587e8406d7c1188e97b9cf466c081e93399380d447f885bfce81626cd37

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 07fa3e7c30e2c577928d359b56bf872a3e0cbcc15553eaa0907c1ee86344b56f
MD5 ffbe2e22b495d8efe1fb00926a755187
BLAKE2b-256 ff354c46d1f620ac1a30f92b6eae78ee40a772a93f568647ca7ccdc5ea283cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d411ea5ca18ac1b12c0c94be88b60c18ca641ac43bcdfdf1c9f79d46cdbe1603
MD5 29453dde078d294e04888df4fc6b3ddb
BLAKE2b-256 b3f0f65644d0e0b2b90918a8c41503841cc4072a58f2bf76c09bc36e751fc0dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314t-macosx_10_15_universal2.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: websockets-17.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 217.3 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 46c0331c9eaaf73a559f3a9e388466be0df96eb83d40f06f1ca6ab6613b35c82
MD5 28918121e057c3f71b7829185d703ca5
BLAKE2b-256 54bb1ae6b91f7f3ac05f5c9f14a72dc2181c115ff370bcd8a7f10f02c174adfd

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-win_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: websockets-17.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 217.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2a4dc6ef83f4559e0d05f313a375cb38f63c986096a9da99fe94fdd779d313e5
MD5 1badc8d6dccdf8cc92b623fd6bbedace
BLAKE2b-256 d00f9e7ac63c5d7cb642952200814f584318e65146df008b7d375d5d9c6b2c97

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: websockets-17.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 217.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 be3f0129c5654517b2abf07dcb75bb1d9479759a4ccfb569e8293579e9fc029a
MD5 3ef3ccaa0c7f46c378953faf2dd10330
BLAKE2b-256 6ad484cf3d1376f5d8207f55f43c1c818babd6b89447f5dcd01f18a6d5526796

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-win32.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d4724255fb8398acd9e583b97eb2279cec20e0bd0f9a94bf75f6056ef9f13da
MD5 21c744baa66ab940044186b7690fd406
BLAKE2b-256 de68c3b234a6a1366b6ab5bbfaa4434a1b946e1dc4e8ddd6824bfd93a8835b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fb88076df585b69c5761c387c0081aa87d7b9eb1b205a6535ca4777e25650d81
MD5 3decee0169c1d6b268d43031faf4cf64
BLAKE2b-256 c262585637cf06d6b321232f79c55dc14d65518d12cf87c94c44f5864068810e

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-musllinux_1_2_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 4e8ffcb486c8490a34a4cef5e4409d8da5a1cb1681e5bf7d786ce5e84aa8540d
MD5 effef157c099918faa4ea2271f955398
BLAKE2b-256 b86a5dc43838c0b02a95f42c47a0de33c5ddd7767a9feeb4d0d8777ac1cfefe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 406b8107943a43ef4649b1e0cb0cdc052bbf08fe1c8905a623c4af9586e5cebb
MD5 22791c3c44bc43c3a243c38111734b02
BLAKE2b-256 9fe649824f1fb4db7656d2f7492b1d8be16147b759d909490e32f4776843ee64

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9fa1ffa08c81a4f809cdab6129f8e55bee4650b9d6d3461019dda73aacd146b6
MD5 a7492e0d880835de8067f965e88fe0e8
BLAKE2b-256 df75274decb9a8253561b5be3261e02a6676fc8ecdf31e95b722e53d5bfb8fd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c65da239a5ad553619804c1f9d65c1a0b3005381c6158ee14da2c7444cbd0c78
MD5 a6d249d5e1163b0b4e579a1272fe6586
BLAKE2b-256 a94c2174181c067b89a74ae18e2650c2ac29959f4b796afe876ab3f4d30d642c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7233eaf441a345a5943a929fd4b5ea3278f11aed35a9ed0f3106b8cb3ca846a
MD5 6221d91601db4963524894409b349dae
BLAKE2b-256 dbd2db76628db0577b783205d9779f64d8e373416b04c62d1546be4b75dc8540

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 455ffeea0879d313205df1e745e5883e1feb7f31ecd26be882f5f0babd3db04f
MD5 55ac5a002f9bc1b804e6e81bcb9a3dcb
BLAKE2b-256 d3b5e9407a91613d1d1cd932414143a1012096b26674a782fc55a0bd23217ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 67258b00302a5aaf0b267771c7014b13429abd7ea17eebc4c55bd935ff101555
MD5 a8c9d88ced7aeaa920f2bf946987834d
BLAKE2b-256 3c43237a99233e5c445759a613831b3a92e91905afc064dc3bd0ad33c35fd1e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5c27336b1a0ac56569493e858497870347854372395f50483725f8cdacc5a45c
MD5 fa88a5daf84e01e36fa7740a8fadf76a
BLAKE2b-256 9b5d4551c2269066af7481ee44605a0813770961615b5b5da3e87a8f5cb859ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 d334d11398086bb5559606cb42d51c013ea7c061c7db701521392373d3c087f5
MD5 c26ceddf239dd2e5ef8b43ad97b3fd45
BLAKE2b-256 346ca9ffa5b903579eed76017870f055d75ecc73988d9d0c9b65a92ba0bf2a27

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f98bf378d7a5be047a044a1a27c987a8f355e10e3b5754617dbe756248cbc5ce
MD5 3771f8f34973a21bb1f86d7b7d13c01c
BLAKE2b-256 127d650355b8f67f908ff99603351d4458d1a0b787d627950a47c38db7e25308

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6f42912fa9eb4cb7c7ec9fde9b3332ba339eb8a8811981043d4029599f3d950b
MD5 1e25355facbbd5efcf4fc4fc957b737d
BLAKE2b-256 46c8d8372256e00c4e3cab1115c45075d1eeedb642a3f2b42bd70c4deae03f06

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 d9fc873e239c5abeb150bc24dbd1a7af23a9254526383ce0a077f5e20adbeb19
MD5 80a9df1cf06aede907ecf1c228bdb698
BLAKE2b-256 dd300204bb86176db02cdfc678ce65ed808a66fab87d250ce61a8790800a60b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96abdecbaae746851b87c3a36cb4a661df93ca3d92f114270f79228bf1d00de6
MD5 cacd70afa5b9bdfde308689e90b42809
BLAKE2b-256 0c36e453e5106e4e2416f008ac222837c2f1637a063b08008afcd1088889b631

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 57b39dc8541cf7ed3f639da82bf7451060483967f9e733da1f8173e4095f0642
MD5 7c2fcb0cdd8e9b0278233af3984b01e8
BLAKE2b-256 97125b12c6168aa269cffbfd24d177cd492b130120403a418c7e89462e27b4ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 0c9982938980e086da59f70d05f9418cd143401a601a0faac10fa48f7bb1cd3e
MD5 fc40973400da69839f9efc4f01975e46
BLAKE2b-256 900d500cf5daea09d4669dff3a7d67159094a0bd6c4ef130381404f6edd3eb5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp314-cp314-macosx_10_15_universal2.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: websockets-17.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 217.7 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7a72efa3bf4fa3a6669a54420a472ad056da3973d827f10e3a536da463f926c2
MD5 28fdc87fb336cd22e39a2c8066fd9e14
BLAKE2b-256 68929b8419584681a12a7534b746dfb2737c466efe2455483e2fbf8b941a04ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-win_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: websockets-17.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 217.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0340bbef6bfbe16da888b3983d666a4db4954ac3253c38f13bc7aba0c7db5a2f
MD5 70959277d54d2f61cd07c9db4a08d509
BLAKE2b-256 2236fb521f0f2994c25509651f169efe5582dddd8713d57a0757ba87859372ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: websockets-17.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 217.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2afb58c7ba48b329d56769f8dfd89f394efe587b65ef806bae810a484d6d3608
MD5 4854694caf9e04a076361a5b68b71346
BLAKE2b-256 74ab3a958c6cbcf74b118f601c20a80ac8bd5e8dfec0bcf7345116feaeefb121

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-win32.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 073c5c3f7e127041fa9d34a9e29ceefee8c3cafbd267ed2927318f425144380d
MD5 11315ec97c31e36b274125502322c8f1
BLAKE2b-256 a16b8525737fe840b38e5f40956c198fb586a4fac1e07144d41a5b949b989cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d8e83333385cac6030a5167fd18bf96cc6c58b914c308e683f05b0cf94bc8dd0
MD5 0f9c6b0ba4e8138d601fc81c166a0682
BLAKE2b-256 1b7e2629609652ece5ca0c7ac235927dd4511b08131e3a5d53439b798fddf002

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 77b37cceca17291897c3c73bd30a7c7c7909593554b5da574ec852af83c1742a
MD5 8a790e4d70a6bbed11f78cfa8892bc20
BLAKE2b-256 9634eb8c658f86dfe562ed49a887a27424bfe9e618c26ea6f865b093d075d3a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a06f3b5085176763182449559e20391d7ce616a8972a9f7a33deda87ea6d4f3c
MD5 0f194ea1a0f5f4a10e69b5b6b14f95cc
BLAKE2b-256 a4cf94865130a336029f46412adc127c4fbe380f46172b90ce251369e35c4302

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4031152769179ab8dcdeafc7b0e58052a49117560a28671700b47b2c7b717aad
MD5 8966e6af08b603fecb55e8867f7c0574
BLAKE2b-256 26b3dfb5c482f7e310a3432fdbb045ddfe6d34114680e89a233d4ff900a32961

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1fce0f43e0d41422e0b2cad6561e1970df22f212f4c7e884967df7cf591b031c
MD5 124e4e60e58ae6a34261e3c266256bd5
BLAKE2b-256 a6f464e2a386c3899b917c2933225c9b47887874229d159797f3bf1a11c20d51

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 43bd0c1ceb924d67f5c1a5254d8361dd9d94246e6331a726064dfa2917880780
MD5 830aa180eb17f25e425d145e9fd6ea86
BLAKE2b-256 0742d1169c2f7f1f0032b0d4b0c00f0711a070cd7c735de37bfeb876bc0f9606

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 3709a1ab30b4b922027d22f68d2b61a0656a91680ac894a537624e6be7dd7f7c
MD5 ff7358cd9638dd0854b7bf004a1d80c9
BLAKE2b-256 cb8365edaf05f7c9b1dea82f4d252fdc37706a84571646f06119a27b0a16fe19

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 29176d8b429cfa0fa443c473878d37a5c06cfd0cb36b71ba4314accc71e05906
MD5 d2703116f354e402831f4863973ee633
BLAKE2b-256 f5bef6fc33cea86b1127fd1297b18c107e81580ab55a73a39f9a934441ef321f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ce0305b702b20d1e1d60a9aaace6bc89970e1753565543f310d549eab22c2435
MD5 5294e88ed3c1ae33fca45945a741ca6d
BLAKE2b-256 0a4a8f6651c8a22093539c9215af0c5bbf217b87b382c99d2112039b92d593c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 00bf34b64501e3477e81fc281532ff3cbf4da26633c10b63979d5085d46602d3
MD5 b1a6109fe7f4dd08310db115f7ddb9e8
BLAKE2b-256 f3dd3c68572d20509648cc2fb6f50ccf3deeb4b87270f2c8966e99476e278ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5f5c7a893507d0e83a80b88aefd6522f7e882cd53f9722c6f23f5a020c9557c
MD5 6e51b0e19efbd6b6c67dac2d5cdba6a5
BLAKE2b-256 bede07c6d48eb3d2069709410c851e7de10ab83d752c4bd09862899627c2729b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c3241d684a76eaaef8b2dc789afde4343cd3aad55ea81e4e8ab3605b529bae51
MD5 cde658f59ccb4eefc2826fe458c19af0
BLAKE2b-256 34c7e1c2e8a67f6cc0aa43abe0046fb3b7a020980649e6a843751dc7ce9eb170

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9f4c0377a83e163a303514fdfab501dbe379bdc13e5b9312a91d112658b29dce
MD5 1e38fe0c5324eb6f7dfbd1eb7c93c29e
BLAKE2b-256 07ce033cafe2d2538562efa876b9149a2c7a0f7787870a4b1bb6e28adc9ceb6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd8f47dbf2e8adb15c847215f83436de3fdb120b51fdae0fbbdf69fd97a3ad80
MD5 122f4f102b26cc775dd3fc30b0a5687d
BLAKE2b-256 466966e5b7d01445e0eeb1d4ab419c30315f2c90cf7a8a8cd4ecc47f894dba54

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 829dba1bc049779de9b332088c1a6a9858e96bd67e50b6b644a95e02b67836bc
MD5 a0d2fcf0f547dd2ead814f691a6b8ebb
BLAKE2b-256 d02ac1b006fc861695d2aa4e35327b842015ce1d98cf8f99241829b3d6460bfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2a0162a6372110a5601cb5c9fd826635cedf69f3e110c545dd19774e040b970e
MD5 13d8059a0fc309ba6e7b4a1943b8ce26
BLAKE2b-256 1d315f6450a7879f4f063ef08897cc385ea3ce3f1fe17f08b11e3fd959abdf27

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: websockets-17.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 217.7 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9f4a08ff7cb68c27b18e09223cc6304e01d0f82d5a240d251266dfd2e6e44729
MD5 1c5b6906bdadaf468b235bece0e1a800
BLAKE2b-256 973d91954e2f7876f74ce1213e9b92c65a63b559cc4b942a931ebeb351cd9932

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-win_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: websockets-17.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 217.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 617243e19a0992095956f406ee9cd3bc4ba92862d83cb1d83bb59ce574412bec
MD5 b1debe3ba7e84faf542910b0fa62712c
BLAKE2b-256 5023493ecfdaf32898e5ea24dc900e33e5e317f9662d5d9ab2d44b2e111b4e1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: websockets-17.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 217.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7e724f843fa6a0614aece65a7c73e51d0f4412ca41dccac13c3caf98e69536bb
MD5 cb8e5537240f0b11c3b72536b6789002
BLAKE2b-256 069aaef0792731df4352e5f417369b532b3325fe434765ca90c193f594ae1e67

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-win32.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccbf3f4a9890d50b3a08ee04029fde30a03bfdeffaa19977628bf17251764e60
MD5 f67fbc9a7013bdeee1438d56d0b2f1e1
BLAKE2b-256 413346c256195a1255079ae23d1b1267b2e1843dc5f46a67f973cdf2a3523dff

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 e4bd7eacb87d8cf3ed70d6392c770a0d92441f05d7d2a3efafb5bc171d5e3067
MD5 ba891685ec25edeeca1e34f66af70977
BLAKE2b-256 27470c30f4eebfd1d93fae779d268f678d48847fb98516f5200849574eee8820

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 dc2b79afc074d2f3e64b26539350f697fe1b85ea1c49ea24eb588f247b053ce1
MD5 aa6a9e9044d242aef5d73fad931d0f30
BLAKE2b-256 0b125710d2482ca5061c1eec5eb46f6313837c760d4115b1795c85b6c08be4e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 655a8e28010f09fd6fa317e857afab3af7647f33e41dee88fa421e92086d1090
MD5 65e530e629263baf610bfc44d5203f25
BLAKE2b-256 bb96faa298ecf2570d35b0eb37caddf4992178d907e108ed74bfffb6bc092c29

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f051f8030a51815dc00e24bd2e5f1435af095c1cc111d747ac6e2a3620d7641
MD5 e4a4cbfb0862a936e5584b7200aac75a
BLAKE2b-256 53675e91d5308ce24fc1ec74f56536c12f4888bad45ff5ea50f3180f8c518c57

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eec113a5b41d124ef42ff56b0d74a6da3fd986400038eab9e58ee42a4024e837
MD5 debd86acfe4ffa6e09ab9a45efd147c2
BLAKE2b-256 e16fc816f332dca11425e9bda7c07f7573eb5c5f8a735849d02b0d81e8ee20fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f62114a54117e4948a1e414e89521f7fe1e3c2f83f2a571a06a4fc6718b0900a
MD5 b00222ce3c0c3e85fefe1824aba2cd0c
BLAKE2b-256 3bc98e891ae342668735eabbbc669895e15195e4b45f24a4beeb58af76f414c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0de501b7f2db11e83739ac20e2d33d46da4604b829f506c24be80e7def069391
MD5 3948a62f81bfed064f4e4d7f4decaed5
BLAKE2b-256 e58a3bd2d0cf6b148c8c866d5d9fdcde30c04bfd81fdfac86813e69377eb4448

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 677014a073bcb1fbaa7e21144786864f16c08f856d66834f611eceb9006cbab8
MD5 c505ca5b89c6518c1b71da5c72be52cc
BLAKE2b-256 d22ba08bcc7fa1ca81a10f84ba32b6e6edd73a913f4b0c2640eed1fd626efacd

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f64e001bb7fa89b9f32cfa600bf8e9ac8ca26759d9b92ae01453ee303d9cd7b4
MD5 db1fea3fc7ef9a481a7f68860f499dc5
BLAKE2b-256 6985413736251cb3ac04ce84cbd90e893d9a36a9698d4820b323aff3aa187e50

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 5aefe78e6a3077fe22b5e64b04666a85a3eb8b934d40e8595a693adcbceb6f11
MD5 7f79c463a06bffe96ce7e9272b0f9f62
BLAKE2b-256 c11ceb8a032285243381b09a221ae384c972d5000453ad136add4d1595cec798

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d41ef69d5416fbc1d98cf96c37be6192d10fd101c3e0f8b3ddc36e09432b3c08
MD5 789b008d9bcd6f9e6aee693330282eda
BLAKE2b-256 8a505cbf677b865290fe36819ff00615826e7edc1df38786f770123ff39a933d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0c863507ada5805517ca6dff1c524dcd42942efe6304dacf06700878398d21a6
MD5 6ba27a3daeab9de1ad846e93f49661bd
BLAKE2b-256 fb059f82d090c8d2d861604147ef6dfb938a90b039f9358d5193f1df62558593

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 882af300d2c6a092b93767d5de03c7bb56dfb06314140c8e872d3f48e09f7b74
MD5 06a595a1eaeff085207c5fcb8a6350f6
BLAKE2b-256 3e92c3fb72f11764812fc648bf3838d224972427b348e8b3989d9e0a9df87da3

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87f0d5e77548b0c40c8464cdb6108792e7e53f487c6400028a4ec28a8afbe5ab
MD5 760b755fed0f455867f472210a2ee9c3
BLAKE2b-256 8fe7df821761772beaa48c211ee0e234930b35c1473778470773823f56d3911b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 581fa678ef46f4277cc8491312468e582f8ad609dbab907ba6096a08c6a0ff98
MD5 b4c77974944f6d37084cc93b41068227
BLAKE2b-256 1386bc1317b1a4d8c4688e2a7e564b5e004dab44c2534d7ca05de6ae9a863fca

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 76dd004f59115087c7b700474cb18f01325e37250032e19396c08ae41448e4b3
MD5 503a2397456df8d6a6c1f85c8653517b
BLAKE2b-256 a60d098f23c4c858e5de9459ffc554fa07d5493fbcfca7f040b5800cf1cecc35

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: websockets-17.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 217.7 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 edadce7a22052056fd4384543019856b34850363c9d387929f677ae01d79709c
MD5 0c0fc404b5092abf9b4ba1a82a90ac3e
BLAKE2b-256 e01351253dbed7d16a4bb87b05110ad3bf12165f410e915f6da1edd4186d8dc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-win_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: websockets-17.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 217.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b1bc819c6db90e8f91a38250a1ab4c058261871aa52d2fe36382eddedf146dee
MD5 36fc321e80220d0b235e09ae71766b56
BLAKE2b-256 01a2cdf3b551f0b9177023afd3a45d3b431a0d4064951008c4321a8b42ac2288

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: websockets-17.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 217.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for websockets-17.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dcb8d5f7edef7a399d322cf28d4c4e6f98dab64d301c8f50581a1080e5198142
MD5 e913711cfb90add70cb0ff7ca65daa51
BLAKE2b-256 3dddaa66e6500188cd40306abeb92c9a738ca6dd7029d8d8532c538055ab5daf

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-win32.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8e822efd54137d8cc8310eb64635ab827a4a6c72ff08691f38aa624776d8ecb
MD5 a57f333bef5584fec211291259ff84a5
BLAKE2b-256 5e208a9a94323bfcfe03bde3f9d98926bea4855856359702fe3ca0d07051ef5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 054c28db2dcec0e857e3b705d8c28012613e555b38c765d6a4f75340a4fc06a0
MD5 c97557802f1c1f1f9d61cc9296fd55b2
BLAKE2b-256 877537c84c4371c6aa668910d7841036c4397ea10554c07030603ccd5e44b02a

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b3b451fd2723ad3191a209afe6f3f4bc86c83e9a85bdc255353b91803ee6aa66
MD5 37eb0f0fe5c334dd83175ab4ff50306b
BLAKE2b-256 1bb2655a4f939388079f80f1b3f8a1b9d40783e70a376e7423988cc9a590a09f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c89406fa3dcd4aa8662c6406cc5c0de1790e9614d2c3aaf03ca53a8a8ccf3405
MD5 efbb7888f3f0a4aa51ece5e655632e91
BLAKE2b-256 88c6fcd91320dd71dda7046df9bc60f60c70ee15c052dee21e31ed6221dc8b5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f47aafd92aa28b941180e6da8a42b0f711851b14b81a5b6bb28dbbb1fa35152c
MD5 87926cb9fb1ccdf8f231d9851e0481be
BLAKE2b-256 fe517379f254730c1dc7d8e4dd8d686868d8f7be55bdc94c6d3a44538840f639

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9fe648abd1d9b89aebfa30407bfdd08a0271ec5dc7d44a4c6ccd1ce22cf562a
MD5 86ea12677b5bd14e067a81e525578853
BLAKE2b-256 4cbbaf2828a1d7f2beb792af6ba56d7b02d56262070266b95d2af9ef391fbfb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00679b7468b4c2b12b0757118174e8eabac56bb2f579a928a104d9554a56e098
MD5 bdc03b905f5c35e5ae786d8c86237325
BLAKE2b-256 3207b9de0400addb542ba7c819022abc3afa46cd7e518068881bceadac69d995

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 469355ab1af100b9380f1afb09985019f4a4b94fa1dd0e9396db4361626d7ab8
MD5 fdb249455f776d648cf60a3952f64c45
BLAKE2b-256 10a6e57925f7a423d90f24559e85bac21a7f0b44c0cf4a5c0babc0759ca54bab

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 84f25e099fdfe3b09f953d84698f729a1f7d1e99101b2787d7a28ed77b323750
MD5 337758500aa933bcaa57fa8ada87be5d
BLAKE2b-256 8e6bcbc27e014d6c292b9b2709cfd32781a2b61eb30cd4c9130e7c57e41a204a

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2d72879819f5145a342d0030c418702496c65a4b913ef81f5ae944dd91dd50f6
MD5 f629a05889c4700de00d378a8ac28899
BLAKE2b-256 e43398549a2afa9d68fe1b5a8e0a61cd461a43ea1ab7209bce675eea67c79190

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 34879e19bb0a3c44f9317679435aea5327fac993933a704cbf353bf1234b10c7
MD5 601e83cc6ce3c39850b634d395a55bc0
BLAKE2b-256 7ee4655be3d93c3edbe1a51606073b5454ea6b1b32d87aa26253a6df952417b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47a62d6045c6eaa0d8f97bc2fb68b8cf90077a0cbfd4e83d6f2d2145611ee134
MD5 d62178edebbad6bf27d7108bbe21e88a
BLAKE2b-256 98e27aeb4e00defa68826f449392922a382ce7fdf542fe52190558dc1714e284

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0c84bdef916556cbe1d5a43b423398be4dd3cba6522b463e53d848578b920695
MD5 8ca15fdf1be24c496dbb845205d6bf80
BLAKE2b-256 5c9a00ae2e147eaa086fe8bdddd36f57216ce72b9a9dfc0b17c717005ebdacaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 65be6bda2b537fefa4b3a5ccd6ab386533ce39dd8fe62433ec90901fdc81752d
MD5 8b8b573ab6db7209bf10e31e87a20162
BLAKE2b-256 ee8708e35ca4a0ffafb500a16ff461bf9561ad2b755362adb5d077d4dba9affc

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 020e271205f8ab3406d7a59cd00de6dec722315924411c421bd00642f18bad86
MD5 49bd8b061ec2420d9ccc23f96cf56279
BLAKE2b-256 2e42bace574b6ae80e1a8d6935b8c5f03fb67236233ec572e976fe826ff719cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 98a5b2589a56a4b4f098b0a958099a4356ab904a7844f1da3841efca469af7e9
MD5 43515396173addc07235ceae27b38522
BLAKE2b-256 701b344ab22cea729e872f759b926441f7b822ab6cd106db527736afc066927f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file websockets-17.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 88b882764ef65147a7a5ae13168dedbe225a04e2ff4858fe543f2c402f093e9c
MD5 35a1b46116ffe1b41772709ec6a60e6f
BLAKE2b-256 7dad66a74d42fb537bd44056483eae6cbb7ebb10b742c300a0bf8cee427556d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.1-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: release.yml on python-websockets/websockets

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

17.1 This release

148 files

17.0.1

108 files

17.0

108 files

16.1.1

109 files

16.1

109 files

16.0

61 files

15.0.1

69 files

15.0

69 files

14.2

69 files

14.1

69 files

14.0

69 files

13.1

86 files

13.0.1

86 files

13.0

86 files

12.0

72 files

11.0.3

70 files

11.0.2

70 files

11.0.1

70 files

11.0

70 files

10.4

69 files

10.3

48 files

10.2

48 files

10.1

48 files

10.0

25 files

9.1

33 files

9.0.2

33 files

9.0.1

33 files

9.0

22 files

8.1

22 files

8.0.2

11 files

8.0.1

11 files

8.0

11 files

7.0

21 files

6.0

21 files

5.0.1

13 files

5.0

16 files

4.0.1

16 files

4.0

12 files

3.4

20 files

3.3

2 files

3.2

2 files

3.1

1 file

3.0

2 files

2.7

2 files

2.6

2 files

2.5

2 files

2.4

2 files

2.3

2 files

2.2

1 file

2.1

1 file

2.0

2 files

1.0

2 files

0.1

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page