Skip to main content

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

Project description

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.

Project details


Download files

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

Source Distribution

websockets-17.0.1.tar.gz (183.3 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.0.1-py3-none-any.whl (206.7 kB view details)

Uploaded Python 3

websockets-17.0.1-pp311-pypy311_pp73-win_amd64.whl (213.4 kB view details)

Uploaded PyPyWindows x86-64

websockets-17.0.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (212.2 kB view details)

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

websockets-17.0.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (211.3 kB view details)

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

websockets-17.0.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (211.4 kB view details)

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

websockets-17.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (210.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

websockets-17.0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (210.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

websockets-17.0.1-cp314-cp314t-win_arm64.whl (213.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

websockets-17.0.1-cp314-cp314t-win_amd64.whl (213.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

websockets-17.0.1-cp314-cp314t-win32.whl (212.8 kB view details)

Uploaded CPython 3.14tWindows x86

websockets-17.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (220.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

websockets-17.0.1-cp314-cp314t-musllinux_1_2_s390x.whl (220.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

websockets-17.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl (219.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

websockets-17.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl (221.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

websockets-17.0.1-cp314-cp314t-musllinux_1_2_i686.whl (220.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

websockets-17.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl (219.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

websockets-17.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (221.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

websockets-17.0.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (218.6 kB view details)

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

websockets-17.0.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (221.0 kB view details)

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

websockets-17.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (222.3 kB view details)

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

websockets-17.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (223.9 kB view details)

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

websockets-17.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (221.7 kB view details)

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

websockets-17.0.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (220.6 kB view details)

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

websockets-17.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (220.3 kB view details)

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

websockets-17.0.1-cp314-cp314t-macosx_11_0_arm64.whl (210.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

websockets-17.0.1-cp314-cp314t-macosx_10_15_x86_64.whl (210.5 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

websockets-17.0.1-cp314-cp314t-macosx_10_15_universal2.whl (213.0 kB view details)

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

websockets-17.0.1-cp314-cp314-win_arm64.whl (212.8 kB view details)

Uploaded CPython 3.14Windows ARM64

websockets-17.0.1-cp314-cp314-win_amd64.whl (213.0 kB view details)

Uploaded CPython 3.14Windows x86-64

websockets-17.0.1-cp314-cp314-win32.whl (212.6 kB view details)

Uploaded CPython 3.14Windows x86

websockets-17.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (220.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

websockets-17.0.1-cp314-cp314-musllinux_1_2_s390x.whl (219.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

websockets-17.0.1-cp314-cp314-musllinux_1_2_riscv64.whl (219.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

websockets-17.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl (221.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

websockets-17.0.1-cp314-cp314-musllinux_1_2_i686.whl (220.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

websockets-17.0.1-cp314-cp314-musllinux_1_2_armv7l.whl (219.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

websockets-17.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (221.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

websockets-17.0.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (218.2 kB view details)

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

websockets-17.0.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (220.9 kB view details)

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

websockets-17.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (222.1 kB view details)

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

websockets-17.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (222.9 kB view details)

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

websockets-17.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (221.5 kB view details)

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

websockets-17.0.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (220.3 kB view details)

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

websockets-17.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (219.9 kB view details)

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

websockets-17.0.1-cp314-cp314-macosx_11_0_arm64.whl (210.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

websockets-17.0.1-cp314-cp314-macosx_10_15_x86_64.whl (210.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

websockets-17.0.1-cp314-cp314-macosx_10_15_universal2.whl (212.6 kB view details)

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

websockets-17.0.1-cp313-cp313-win_arm64.whl (213.3 kB view details)

Uploaded CPython 3.13Windows ARM64

websockets-17.0.1-cp313-cp313-win_amd64.whl (213.3 kB view details)

Uploaded CPython 3.13Windows x86-64

websockets-17.0.1-cp313-cp313-win32.whl (213.0 kB view details)

Uploaded CPython 3.13Windows x86

websockets-17.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (220.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

websockets-17.0.1-cp313-cp313-musllinux_1_2_s390x.whl (219.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

websockets-17.0.1-cp313-cp313-musllinux_1_2_riscv64.whl (218.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

websockets-17.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl (221.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

websockets-17.0.1-cp313-cp313-musllinux_1_2_i686.whl (220.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

websockets-17.0.1-cp313-cp313-musllinux_1_2_armv7l.whl (219.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

websockets-17.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (220.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

websockets-17.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (218.1 kB view details)

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

websockets-17.0.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (220.8 kB view details)

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

websockets-17.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (222.1 kB view details)

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

websockets-17.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (222.9 kB view details)

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

websockets-17.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (221.4 kB view details)

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

websockets-17.0.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (220.2 kB view details)

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

websockets-17.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (219.9 kB view details)

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

websockets-17.0.1-cp313-cp313-macosx_11_0_arm64.whl (210.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

websockets-17.0.1-cp313-cp313-macosx_10_13_x86_64.whl (210.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

websockets-17.0.1-cp313-cp313-macosx_10_13_universal2.whl (212.6 kB view details)

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

websockets-17.0.1-cp312-cp312-win_arm64.whl (213.3 kB view details)

Uploaded CPython 3.12Windows ARM64

websockets-17.0.1-cp312-cp312-win_amd64.whl (213.3 kB view details)

Uploaded CPython 3.12Windows x86-64

websockets-17.0.1-cp312-cp312-win32.whl (213.1 kB view details)

Uploaded CPython 3.12Windows x86

websockets-17.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (220.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

websockets-17.0.1-cp312-cp312-musllinux_1_2_s390x.whl (219.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

websockets-17.0.1-cp312-cp312-musllinux_1_2_riscv64.whl (218.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

websockets-17.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl (221.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

websockets-17.0.1-cp312-cp312-musllinux_1_2_i686.whl (220.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

websockets-17.0.1-cp312-cp312-musllinux_1_2_armv7l.whl (219.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

websockets-17.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (220.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

websockets-17.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (218.1 kB view details)

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

websockets-17.0.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (220.8 kB view details)

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

websockets-17.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (222.0 kB view details)

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

websockets-17.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (224.2 kB view details)

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

websockets-17.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (221.4 kB view details)

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

websockets-17.0.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (220.2 kB view details)

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

websockets-17.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (219.9 kB view details)

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

websockets-17.0.1-cp312-cp312-macosx_11_0_arm64.whl (210.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

websockets-17.0.1-cp312-cp312-macosx_10_13_x86_64.whl (210.3 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

websockets-17.0.1-cp312-cp312-macosx_10_13_universal2.whl (212.6 kB view details)

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

websockets-17.0.1-cp311-cp311-win_arm64.whl (213.3 kB view details)

Uploaded CPython 3.11Windows ARM64

websockets-17.0.1-cp311-cp311-win_amd64.whl (213.3 kB view details)

Uploaded CPython 3.11Windows x86-64

websockets-17.0.1-cp311-cp311-win32.whl (213.0 kB view details)

Uploaded CPython 3.11Windows x86

websockets-17.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (219.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

websockets-17.0.1-cp311-cp311-musllinux_1_2_s390x.whl (219.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

websockets-17.0.1-cp311-cp311-musllinux_1_2_riscv64.whl (218.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

websockets-17.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl (221.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

websockets-17.0.1-cp311-cp311-musllinux_1_2_i686.whl (220.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

websockets-17.0.1-cp311-cp311-musllinux_1_2_armv7l.whl (219.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

websockets-17.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (220.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

websockets-17.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (217.8 kB view details)

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

websockets-17.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (220.4 kB view details)

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

websockets-17.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (221.7 kB view details)

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

websockets-17.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl (224.4 kB view details)

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

websockets-17.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (221.1 kB view details)

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

websockets-17.0.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (219.9 kB view details)

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

websockets-17.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl (219.6 kB view details)

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

websockets-17.0.1-cp311-cp311-macosx_11_0_arm64.whl (210.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

websockets-17.0.1-cp311-cp311-macosx_10_9_x86_64.whl (210.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

websockets-17.0.1-cp311-cp311-macosx_10_9_universal2.whl (212.6 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for websockets-17.0.1.tar.gz
Algorithm Hash digest
SHA256 5baa9bc0dfbae8c507e51c8cf1b6d4628086f7a87bbd3a9952bd5f035451f1cc
MD5 81f77eb26bb68a6163575bebcfce5729
BLAKE2b-256 f796e01084f83a64bcb3a27994bd0cb0db68ff29d9c6707fae37ec19b18ba990

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-py3-none-any.whl.

File metadata

  • Download URL: websockets-17.0.1-py3-none-any.whl
  • Upload date:
  • Size: 206.7 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.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c6be9cba65c65cc76dfa3d4619e359ff02a4476c74e179b215236c11a0b32345
MD5 4be4b736e4a5e6c6d7a2377ef38dd8c5
BLAKE2b-256 09ce3929538b2b9918f5eee623fbf3346893973191f6df93f19bbda097bd7bb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 afbce6e3f0fac32dc87c2a0d84869d1a706460d64f39f3889386413e6e4d3d26
MD5 3e7a6d745e8a99ad751ab4c6b2439097
BLAKE2b-256 bfe391e297e41381d9131f3142a9c1a50389fd96b98125ce9b81526fa4e14b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6740be6d1bab69f08ab52cb15b08f76c143b6fe61c580ba62bd929f3ab7a1d42
MD5 9614477666bd6157b41d83524a81a4f5
BLAKE2b-256 0252b85a676b161991e5c0d884252376435f60510789e7740e3da73489d22a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.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.0.1-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2437d4ca208cc0f246d3a2297ae7474b4ba18261aaf5b9c79c84c031ecf348e1
MD5 f6751e5f7e3c1e87147907b25569891b
BLAKE2b-256 88282d671e23a20359a1cc142848384659813b49028d46cb0acdc28e81ac59b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-pp311-pypy311_pp73-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 a39ce3a7b0e6059be093213d637963101380157bcbad355916738fafb490698d
MD5 3b143ea24303bae15984da9c3e5aa65b
BLAKE2b-256 531ad4437d3cb0691eeac2c6064e21c83a9eeda04f6ef0261abfc0dde708590d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d69fd559f9f0e8a52d2fce6f04ee143f86e70df0a189cd95164eddac599e810f
MD5 48e0c7f097e40f6eaf1fe5b35603ec4c
BLAKE2b-256 efab6160542ee644f72b865af13ddfff23740c95595b237e16312262cafdb641

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 49266e4488309b38783257293a38298942b9a03aa106fcb45195377a77c0c1e2
MD5 3f4faf108d22e8c53a59f9d09a16b178
BLAKE2b-256 517763b4abd29f15107d856f010de6f35434faa7c49ef89151e051d2807a9c40

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 dbfae8e75b342e31fc6fd1a8bbb393b7cbb91d6cfd581650300a94381e7b7e2b
MD5 2412a2dd3b66330c9bf8035d748f5ba1
BLAKE2b-256 5b24a585e7573e128070605d003b5544729bcd58d9756c7e99d550818ca4b916

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bb31f42ea095ea826463c770829aa188a86c9a5c976b1467cbbf583c811de833
MD5 c2f69aa5cd47c2d59362e16890ea28e0
BLAKE2b-256 f12c9d9c1da5a7ea9af307b386d25f64d1dead4729644198d2b92e36db5dfd41

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: websockets-17.0.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 212.8 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.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 17ac37716c0244e82c9e384c41653c090b1864c6610224ca3857e7f7b58fce10
MD5 7aa7acd9b1a8ec11a0761376703167d0
BLAKE2b-256 269370f6516d85b9744f7eac224c4b1b9ef4e84133f80b53be02080cb1c3e663

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 810cb3fb5fa6e447216f4e82d9a85cb8aed0929ae3538153ddfe8a6e3121a58d
MD5 a444e4b60648b54990f7f1199ad2b470
BLAKE2b-256 e12e6183dd2c0370287ecf4afe0bb33aca364208e5e7b0e1a286adcaecc0c78b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 733e3cc7171fa1b899edbe725ef9382d0e960657dc1fd933f3281ae910c01dab
MD5 1de897c2e2b96ffc98a0fe96aa5f12b9
BLAKE2b-256 946ad5f88033c69932af6cdaa72da62516ade47c257e3bf69f4c0ba5f40e12a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f991247276797d0c61ab7770bc9791eadc16f683b4d83517f624932adc1a8bab
MD5 dde6e993b7e7638ef698cab3adc91cf0
BLAKE2b-256 0416ee73fc2083a2938ac6209f4ec804960496835b20a0068dbcfe8424957c04

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4d41c0a1d47a478bc432b3b9068097bee1ce0c5b19327ea6f75c2ab34ab1f2fb
MD5 6271317f79cc37bb5b69e159391217e7
BLAKE2b-256 e5708946188c2a68d67251859b589a3634918cf7867bf0b891347a5ecaa43d30

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54cdcaa56f5d3eafd57058f0fa4a3de93a310b43a3c4699f06efc4c0bd054a5a
MD5 fa682f72297054948d25b5533f3ae38f
BLAKE2b-256 5734404e83a6cc7b0efcac810b7041bffd72ff76900e6fd0aa45a26c92fb2ffe

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8208f2729cba030ff872a92064c97584eeb9502f53d32a05a0f05d5a17ca6c6
MD5 69a0363de994de5310c5724f86a91336
BLAKE2b-256 bc31f966e8472337974f74d788b3ef6c6f3b8b9a5f201efd16a843c91d269fa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a60fa1a25cca1bcc2bf87b8d6be37a741f0a3239fb5e9cfb7a37173b68ffcf87
MD5 219325bdbf35ee47d8300eecfaa46139
BLAKE2b-256 96cb6a372c8553976f0d8f97f5115826ed47e34b3be6b8bf0d0249af249a7416

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 884af729b8ab50486acd94d9768c2b60914bf39b579ebba0a5cb73bfdfd61fd2
MD5 400c2b1fb525601df5ba9dcef4e29d25
BLAKE2b-256 9084bd6d67d6bc65f0de0cb50de55dab42f256a9876a351c4736522eb168fda0

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bd1470d2c53fe53269bf5619da7725d30dd9b9693f1689f7a85eab8dea734442
MD5 a2f4079f1c68689fc9edd27e20b78ba6
BLAKE2b-256 074c82cb722afa5428fed981331210c4c07600570db01bb1620579f655b5adaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8e387adb0c692c6b5571bdeafc8ac9d1901ea30f10309134780b16ecd35e6605
MD5 6adae05bc5a31b303fa8635475bfa458
BLAKE2b-256 f8e9657fb70c6eb6bcd01adfa5d2b06496e9911e1c1a8813d353b8c00f7591cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 e98ec9ec61cce5bc4b8b218322ad090b0994eb060bb04da704c62ef0a3d864e6
MD5 9b0f00a5ec1927ef6282d43f6c8a4f3e
BLAKE2b-256 9950838deb7937a8225c4925dd4a977eafea473fabf444178a99de0bc7e92bb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22bd00f8bae2bccdb5dbe41e20f58ba44ca9fff0b4b561aaf39099c35da762ed
MD5 ce6ecb3ee3ea6d078410cdaa64470ae3
BLAKE2b-256 1fbded48eca15725743ee7e2dc172e15c61de29e85ec98dace7b14257f366836

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.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.0.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 28012a54510fe8301bb893ef143cec30a2780a2d3bc20b7bbdf4379d7a63945d
MD5 427bfa31a7171579635d354d00f92634
BLAKE2b-256 f5af43c3e3c3ea7ba4693c2181743f3221957df28bededadcbd9fc8a0661bde0

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 2503c7e2a5049a12d5dac917a46d5d52591283a766165b8176bb167560421b38
MD5 4aa152e90647a4e2d0b8e7ef70706484
BLAKE2b-256 48187a77a82ce9d6f831c07b176da3942f7e71acd0f115f3ecdb1d00a040eb01

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a434e59962a4fb9016bea327e1d14d6cd67670ecfb8942b4f4a0c24036634ce
MD5 fa5903f65778cba6357b767e1ff55793
BLAKE2b-256 cdd8ad2b3e8f867e1e8cac3077e2f33ffb60b71bd763d6cfc71bd916f113c3bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 20a92f78ac8250984ed459faa9ca48c285adbfc0038ddc3fdac6046990a9c9ed
MD5 e4d20b427b8bc08aa0b1e3c878f95ca8
BLAKE2b-256 02de4b03ed316c9dee180365286c298219809ff247be39beeaaf9958b21167ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314t-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314t-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 ab56439c9f74c52770690c7b2f616b3bf775cb3920453ee355ac765c032d8bbf
MD5 dcc471ebd5b5df0199505a284b17b0c0
BLAKE2b-256 13c1142f5186ee7dc3beee0426b998a79e223e067b7689afcaa95890d64aa800

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: websockets-17.0.1-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 212.8 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.0.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 efe0ae052a8d023b87198921e8a7ce1dc7768816bcd2fbc20df171ac73a04891
MD5 cf0c22ca7cd2187f32cefa2f616f40cf
BLAKE2b-256 8efd8c98a1e431960661c5769ab1a4dd66494e87ab02d791cc79e51e0d9a289f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: websockets-17.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 213.0 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.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 81ce19c6046ace11da7001781be7317bb1dc389f399af4b2ed962190f76f9add
MD5 7a96f6237fb40e769f9a6254f8d5d4bf
BLAKE2b-256 fa9591cdd8c192287d7ea741f37cf7d64fdc1a14410f06f73805e428a1a590af

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: websockets-17.0.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 212.6 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.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 599b03beb77633bffc095334338fad79cafc2b01fbd58953838130a9ae967d7b
MD5 7b1dab7b98ba291747173bea07b7aa21
BLAKE2b-256 55f9cba32dc9dd856565263d6272f594255bd0e2781deb8cd982c026a54760ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 90973a3a00f23afdfd1c9b06fb84289bf0220f247ef8a62501a1967c7af54f7b
MD5 158ec6dd41917503fd522d39b031f767
BLAKE2b-256 85b96c0da301f6118502e079cf92f4e864adf28e56b3f8c0f6085076ced7b876

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d7d72843691f50b91127c50688df10cb72ec6f4c4b1d7e2c11ab33b16acf8e51
MD5 c0c45e3b9e39ee4fa46de4600078520c
BLAKE2b-256 d4b9819ec2dcdf69031d7e9cab11247f3a6ff9bbc8c7c53ada1dbcb9055b227b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 10b1587c599fa0f2c89154587c80e0fda98ade6c9fa8c0260a2823fb1800b685
MD5 a319049659c4673e582135783bb0eae6
BLAKE2b-256 da8f473d5fc4e3836e375b0233c6ef26777e6e5e3f7bfc84ccd524eae4090ed5

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 1b363bfd72a52c0658a3154a4cff219f15a474b35a235057d38853bf151acce7
MD5 9b4cb52fc8d471616f18ab560443fc5f
BLAKE2b-256 7d87e47a6a278cc1dfade38444c893ce18322943c25d4b780a74450d9d164be1

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57d2ee9b24b404ce75f3814f92073c0ed88106c950148d2427fe8d25ca254d1f
MD5 bef860f849883ec366c2863815350f0e
BLAKE2b-256 030ec3a4020673ffc17c82cf1a467835038a196a555d3b4f2a50f0f063cf8ccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2bc14b481e05e331811108daa1aeb41a5e237a5564ef2f02ec5a356a0f102f78
MD5 410b8a716640206e50dcd6b27b612663
BLAKE2b-256 ebf54ac3cab3d5e8a830657a822f64a8910e3803229c6783e59c3fd9a3487427

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f3fd9a1f87f8f0f3f8e9f9bd0195f7516562d13f5b178db8c5784d1f60b60bed
MD5 5f86a72a64a5cbb0bc185330914a54ef
BLAKE2b-256 092e43db785d6ed9ae7594fae7b62bbc9cb4dfee2b015e06a1005f1e5ce283b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2abb1ba0a5133b7d2ef3c1c9f4b0c1e8a101012dce0b594ab2b2888d9a64820e
MD5 3d21d16812c79f5ea406a14cf7b244d7
BLAKE2b-256 f030e7d0889c790a854156de424575fd67af79ddbaed9ff3157ae863dfd1c1dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9f7747d3daa41a11f25f7cca5dc988fc51da97b311bed4c9d843860f79779283
MD5 e99e69412814147ce849a7b12c865b84
BLAKE2b-256 35a5e1b57a59da92ade37fd021567a17b518ea8267b28e5530075844cdb525fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 8c07f145d0b9e90cbd96035f31fb79199aef4da1872854e36ebeb258e3d57594
MD5 8e85d43fa273e1ebf022f78d0f9759ff
BLAKE2b-256 42f4deccf3439f35df953ec35e13fe07986821c5f1ab5785d69614283bdb9034

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 ab9f962a5b64a5c3c845d556b7dc4e6fb683f7b67179f8205e814bb2e0213ffe
MD5 3ce687b6c4055a52b1cf5de98cb02914
BLAKE2b-256 9bb5f46931269b3ff3bde65d27c65ddb22f9bb8ce92ac2c6c4df0910128f6219

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6fd88365da261c53d3e943fb37e0d0721b9cde119f6b2e3fc84369b6ab234d63
MD5 c94bafb896cb43dd871cb7b921c1a690
BLAKE2b-256 192ea5166149f363d2449c1cb2dde6486a245521979509d53b87a09f3e79662b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.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.0.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 72d7f2a5aeb4e82daa4ee18f125b4277f427033359be5c745ad709608446cc2c
MD5 4d1822285e967b468120f2cb99f6415d
BLAKE2b-256 fef2ff27eaefa15851a5cf7f004ab827a022bf2d6632cb520f89cb100db7e84b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b3ff0ad440ad52dda64138f16895f66403f40192365e39b1010e889f289746b0
MD5 99f4d64b11c7d54ef5fc21035e8b1bbe
BLAKE2b-256 cfe388dc159d2ae66743c669443246243f28d873b0c5e58271b8cc1ca0440334

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cddc675ec31bca65473321f9a9794e488b43b3b8de5d02c8ef4810c5d5792163
MD5 5d98de80f1cc10261e4f1445660b73f6
BLAKE2b-256 2f4d943ede39b53744768edf1ed84a3f9401527388228a3d6c1249c02c3d6bd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5f33a649bfcb8312524173cc4bbafa7dbb236e18eee9aa31a1d324ca0ddda28c
MD5 a3c4ee7c483eea4aca4da599630916bb
BLAKE2b-256 167ab034d13ca181211bbd58bb50835cb196a7784cd505b5a2079d4d03374f9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 53b90c00bc6201ab6695c7ff51a04d0e425514c37515e9eeecd2c1b978ac6c0e
MD5 5fa78118fd45053e8c069b3f01100461
BLAKE2b-256 98dccadab608924ac605647031472fb1f8792d7d4ea07565ba1899ec42028e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: websockets-17.0.1-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 213.3 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.0.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 90246fa9e6cb192a778ce6ce024057ec54317a894db7899c922dcdc1f4cbf6a5
MD5 728b5bf68c7ceb96ba14dac7c22ffffb
BLAKE2b-256 e6c7b956ed9151c3c74530ebc62d716fbfdbde7507a6acc6423a64f9ecfb6b8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: websockets-17.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 213.3 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.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 409d93efcaa14f7a99592c5baaef5ec6ca94fba0f5aec1a86f693977c69c9c1c
MD5 174791873d22bf69a1158446235d352f
BLAKE2b-256 812fea1380f72bb11b64fc5bc7ae0d42de5bbf3e6dc13b965706b2a1d4e17cdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: websockets-17.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 213.0 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.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 846a4a8b0833e3cad57523d9e3bd50ec8ea05ab9d06c582f82a1340ba096af5f
MD5 b0bfb9dff76b7a0d9d8db96a7f847846
BLAKE2b-256 f62a25a9f8f2e5a6ef34e911d2f55d9f756bdeb92b4c28cfb77b8430bbc73cb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f11a398d8170b7ac5000baf7f258dcda579ef3ea744e0cc6a165e0dfbc0d3198
MD5 0eee50f639610230fdbf26e43a6407d3
BLAKE2b-256 3bdbc7abd6639a93a40279cd1ddc57e09e1c4f8381c4cfccdb775aa5aac9770a

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 aadc298969ad229d8e3029fc5cc751fdad286696230f9cf014e90ff9cd8e6ea0
MD5 9c652e51a7533230d6f8c04259a3c36e
BLAKE2b-256 183bbf8e855e495dcca63f2b8aa019cf2ada3160e1fa66d833c7417f3b1f7f38

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 c395bda8e7d8f51a02e80261fb57127979e5c472675d9a96b2860619ad47da48
MD5 8f2dcf9ed571cec9b41e6a5e6c091aef
BLAKE2b-256 cf29ad0d85c01db5dcf22898d51648bd2c25af0dd0a4a41c550b11acddeeeba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 7002d5f9e1c3ddd991cdfdbfee18cc8c8b196b2445022892badacd6cb338bbbc
MD5 05a1146ee831a3a2717f0337b157458f
BLAKE2b-256 fc049693f191d968a93f37326a17301a101d49580889c688f466699f89ecdee1

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a855b6dfe21c4d3420be265ae031829ba8ba0be0ea350d9f7c3ef30ae63ebe2
MD5 88a24ed5e847cdc69dcf9e302326bf28
BLAKE2b-256 5bdafb37ac09dcd7c69dd73bac979ed393df35f78a3c232e293d1ff3bd586d24

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eab6de8a98b9a7772cf686d00b4de439fc7efb8ab05ae106ef227291d06f87c5
MD5 ee3bcf1768ada0e4b082672373774740
BLAKE2b-256 944dca73c2ac82c00f50c529784bacb323e42da4816333211bc1543d90c9cf11

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02ed63bf26dda9fa27df730a41f6664586c4ee05972c8fb667ce1725b3fd13d3
MD5 7d1484f482cc71c2ea44fe05c3581498
BLAKE2b-256 c08c9c9dedd14c3919435df9b35cdee7111268c751252b87652f3a6a4f56e760

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 4d1d99db29b5444e3982f1ce2ba8a833508ad44b2f1fbd0bd99e81d825c0b461
MD5 2f95f87b2bc3c016f3e2d4f8748b17e6
BLAKE2b-256 cb5796e94e384442247bbed5d3ab67381c7257355c2d66b62c3ad33a17f5d385

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 759adeb5b0c5775b563254ec63b5b79089fc0045b479143a0b1b8c0ebaae1253
MD5 c779c2b7fd38c582fef6b90cdfea0e59
BLAKE2b-256 6c9c14e6391de777ddb39c439c450deb551406d445e25a5877d6fa25c49d4544

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1df81d174c1561292de9e40b141cafc04f69077272f6c352afe1d743e20810df
MD5 fe8e4e3bbe704574edc57e8242c9921d
BLAKE2b-256 321b4cb0eec2fee310007104687493175af190019f705940c864f9c523fe9f6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 872273e629ca7e3d35f16a2dc6ede84e1d5c831e616b8277de6e4f83114e7c58
MD5 5370d4b0301c4e45bec39a6d05c7773c
BLAKE2b-256 bfbebb14328614c068ab09569962fbf218fc00413ce3febc6d2684c764b6f37e

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1bec5d6a19f5fbe87e4940739cfc65e7bb53d8b353e1029b8037a1653b321bc
MD5 62f1311d45f9911dfc2b7925784d0b7b
BLAKE2b-256 155610ed4bc4dd75f204e3c62bd4898e44a8742a27773c80b188cfa7888aad2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.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.0.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 18ded646ce98cdd3c0235825b3252f1df55765ba49b616bb10282f758667b4d0
MD5 cdd79f800d75ebfe58553dcd9dddb1bb
BLAKE2b-256 165064eee3d25a47fe744a9490e0627cc373dca096755db740f91c28bd61cd35

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 9493314a99e599163c854fb5900ad7f7ea38c5cb9d9103aa30b3c6b8181c01fa
MD5 bde617a474eaa8e53d6bc4a9260c94dc
BLAKE2b-256 8732fbf2d132f63ba3e67f675bccf333469786a24e0418969ce1d8e6ff9e6f02

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 734d20364dc2cfe03674883cafcf580b6e431c5ce42b476312b9285310230cf9
MD5 b8155b2b07335d85d1aa854f649d0cb0
BLAKE2b-256 a2efcc994494bf7d97e41833f6ff55c24f535e4d527a10370b9631737e9c2f00

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c1c118a6b0e25bfc9a6802075d748fa6321714ffbdf3c88d29d9a0e3c7386c75
MD5 19a5042537b53f7037ea992f86ef4715
BLAKE2b-256 db99e1cfaf419bb3b2fcfd6792a846f1d936293132b0b9a56530ced016c83c7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 55b12e47dcee83673a40d07686cfb6f9d6dfc285976ade9463f61d2bef3fad22
MD5 010b16c07bbc395124efb42943162170
BLAKE2b-256 baa879c577bc2f874ee22f6f5ccdab97ba9ce6b96806be3fcc3a6d8490f88a21

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: websockets-17.0.1-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 213.3 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.0.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 41d6aa06b5ab832aee72fedf47a149535b121ac900b6bb4d3fe14712afac9a79
MD5 398a700aafb91b91e88c52135e6d231c
BLAKE2b-256 7b25e1b8824bd632c8a5a62d504b61e9e35e470b67e4be0206f5c28f90c7f86d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: websockets-17.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 213.3 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.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2b3f3020171202b135ca078e20434977c6b2b02af647130d6980c9e39b9462e3
MD5 79bb96f966b32895689070a93adc56a5
BLAKE2b-256 82d8c3a78cccc74a554780e9e76e323d5cde891048627025f0f82623e22dc3df

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: websockets-17.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 213.1 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.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bc0bca48ba24c6c866847fd20478a51dd547fa0ad258dab9615c414ec534bbc0
MD5 e2cee3ac3ae711cad15e0cdb20c15617
BLAKE2b-256 b0ad4bac01fa41aca54307157b9c9f68b066a6bb51fb18716ba618078a67b283

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6db9e5bf3649ab506c6ae8a3ac85a00fb1ae3816d75962771b2df8adbc5d40d2
MD5 dfd8782d6743994e2f4bc0d8518f7ca9
BLAKE2b-256 786e2e8bc06e546f49b32a58a2bc2957902d1809ecc37552d3d7ccd6639a126e

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5033ffe6804dd53afafa7d08e8c3eef2d2431f34d58ca30507a8442dd04a033a
MD5 9ad365da29131cc21daa7120b85ef49b
BLAKE2b-256 2d4855b0331cd5bec9ce29748f79edc00075805450a47011d0c8e3b1c61dbf04

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 b580794e926cab7ff42ee4371ef14e0b22cb2bb722a607f77769136468f49a3f
MD5 c99020b221b7f3ce2d8bf1760cabb104
BLAKE2b-256 633021a7e326c6ad2eb526cd5b816383d59cdeb28b8805b65a543c3cfbd8e8ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8cd3369e42c0246afaf9d669cfc19797e3a49e8c0a639544459c57597108b966
MD5 8849d1fdb87fb09032da01c061008f9c
BLAKE2b-256 7a4fd41847227a44b9ad87c3d5a9fddbfad8b7c4d6032878d8460d9d37c2d44f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cd526c8228e759c1006c4b7c9ac71dc4e925ced1a6a6a5a8e94643709738f63e
MD5 0584e0e739ffd51452a6d8fe08877622
BLAKE2b-256 9d316ff1fee057bd7e9dd5237fc064a749615378d003aa045b5bfc2d12b2f4f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e95e321d0d763f2b6633512605f6112ebd70d5746f3ce05c941909d4a25233f2
MD5 0b06a43b1b2d1ecd08a7a7f48861d817
BLAKE2b-256 c5e6f46571f38765dbc4cbc0d0b47de8db65768006dbbd4340e6f5f51bc1d895

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffad64ce7ad3703d652a3fd9af26238377d24ce52c6ad8ff35d26d82f61f493f
MD5 ab92fd3df8270d64957385611aae6dcd
BLAKE2b-256 b3097574778b095b99cfa0856583462f56568df784f9b41485145169b2ec9c64

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 07d78a509c3333f5908c83d7f78144ea68a6c9ec28110f5c54d81d8fcdc262c4
MD5 60082d4ce51b4a51665b3b20d3a011d2
BLAKE2b-256 c05e69c02174fbcf1c40c6adc45d3c316a401558392fe7bab8969ef8c46f1689

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 769ce7e2acfd9a89f2bed3a9c0da229459516bbc00bd4c9e2ca492c613ae4861
MD5 32ba1352cffaea79b845fec16774a661
BLAKE2b-256 d972e3144b2d79276fab9798ed7d4aea2f0847434f186800b6f56a1eddcb3114

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 07abc3bd196a48af476a82fd47f3f79a6a3f70937a9f930cef703cfa0c9d83b6
MD5 1332510cd0004e8fb07f421ae67db186
BLAKE2b-256 26fbe2a893be6fae4fddfe50ddc3035a331d3f381103d5467b7900026bdb3a64

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 2604de7228506b13a44a256a9d223943340c0e725af5d367dc068e192b027761
MD5 f3a2d1f27676a5ea6393257f04f7eff6
BLAKE2b-256 47e1f60a891c1a4b3420d5052333a84eb7241e1fb4a71866dec1562f5fa30027

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8848c207049ad49d318e5f64a3d4d7bb189f8328d0d98e65647788f2a085785c
MD5 63ba6295ae03f778274859e1cc498bd5
BLAKE2b-256 f4a4850c699a16bbc451723856360c59bd997bec075e637154f3fa96e80d5760

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.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.0.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f47b0815af3948ec6a440b3afa02f05b18cc0939549e91b5c677b5d9c2c8472a
MD5 d0900a7c72aba1623fc567e052e0e104
BLAKE2b-256 42289ec976c16d63cc51c28dfec74b66854048c0b8b6579946e902f91b69e8bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 c09e097d0e46e3c289bedab9a475ae344b70c30ff5646e46af22b4e6fdc97b21
MD5 cabcc148c2ca230cd8ca8db9eea5f6a0
BLAKE2b-256 cd2f2940e57080cf56f28190287516400126d5a76b52b9a61dc10ba6f6400dbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c23e532c8a2325a1e7486de8763a60dc43e83f01bcaeca07e3ba79652c156db1
MD5 6c9d3393b0af1ebe3b03785c7f1cbc3e
BLAKE2b-256 d982123660edc759c225626b3b91952c7625f85c77a8362acbc35a4623120f7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cffc84ddec6da7f447677266fee2a3c40ecc78172f00752aa1150b8a8d65df1d
MD5 b8069f7cc6327a3a86f4beb70119da95
BLAKE2b-256 547e439a962bcada88dcf586da77a1b2385f91e2d2910e9359540934c827156b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 10f461191125c63902ea7394ae9e752b1b5785641850c1d365bb30b0f88bc53f
MD5 898c6d47fb12f0db1a72b7f510f76a96
BLAKE2b-256 50ff6199a52d864215750af8668d84b0274775011a90052081f5a9495807a92b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: websockets-17.0.1-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 213.3 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.0.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1bdd8c4be420905dd732e00dcd669852d8128cc723efa585a0c0e51adb00a28a
MD5 25295b1be39964f1593e9eff4e2b68ce
BLAKE2b-256 839eabfdde9cbd57f0b5867a70e3426ac63341e1a21557b273c39bb6d2ccf8b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: websockets-17.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 213.3 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.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 02f0b037a737d0cb0c33866c97bcd1a0b73170dfbf42d69d8fb86f51002fd5ae
MD5 6a69aa634cc5e0eabb61aa855b613382
BLAKE2b-256 7bb1ba0ce59681db38c320a6d485f95a497ddea20356d9a9e8e70615ddd867b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: websockets-17.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 213.0 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.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1d4cf7e8e5b8b1fa40758ac7524843a00237b124ab217e227542cafcfeb7a946
MD5 889475aef1ba4fc59d446612c8aa2333
BLAKE2b-256 b81e3495161b1827941258545604fdf72e3e053d03f25bb61752228a784c26a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 246927ae9ae06ca0d42a483a4bdb80d4862e1ee5b4cab37c354a5e1ad8356448
MD5 9b0bd379796cfa3d4c49deedf55b033b
BLAKE2b-256 91eb103d81d655bab3ffd5c7d5d4b08f92c374499decd1d4be6035ce715b385b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a8af570fc29cd998a921c7131c8ac81d9434466d6d25300cb12a690fb56a8a08
MD5 afba43cbd19a29457c535ced618634e5
BLAKE2b-256 1567ff8bc4b8a6ec235ed8985de12fecc59ad2cd68cc8fc79b97deaa42e412ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a68e604c6d1b0338e46652e2688cbce8096ad9c03548b075fda9e2ea19a9b7dd
MD5 6f5bdce2dbbe235d087abf321d454a7f
BLAKE2b-256 de5c4d14eaf7b2f1448d1af24c1641f04eb74c1632a5802952aac4b7e068b8e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5508f38c98ac29def9e747b87543b008a58b075df6da70b2cf2e0b47073d33bb
MD5 fbbf9576aa7bfc9889735bcf9c596e6f
BLAKE2b-256 7c67cd7cc6849a86cf8c9979c0c570b6b6ccee75d2872854238d8d54e77be6ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15920057a6b723f84734f0641403bca163a4b176e5af809ee4f0c4a1e75e9fed
MD5 46e366f63fd181304ad9b3bfcad8f5b8
BLAKE2b-256 e6004e9ae886bdb1647537176ca33fca66d79dddb3773d213ac98ddc6bba9ab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 038cfad5d5417f8bb09295abe986029a26d22f34bda622ccc79b670efd4dab56
MD5 919eeb6402ed2a064c0293f4d522a250
BLAKE2b-256 d576d3eaf120710d1a791d1c7a4963f0b50a589df8ba675394fd2a97dfea3746

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 55383d8177b3c99fd873ee5db0e0193f4c1dd4a3feaccf1a4a03c1b7cf539cac
MD5 204443fee764da34b715708420fa58f2
BLAKE2b-256 2f700fe58cdac988dfc0066786cc07b09dfd72b48b0c01e5de667721192b2e6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 2fa2cb465a131c347ba6717a78c887746e73edb1c131d01c982d6ef0d68b82e0
MD5 dae737b475cf3f7fe3942752cd5acdcd
BLAKE2b-256 6d04289e00b8001b622b0c397a6901fcc4aa8f34a6d2ed42be17f2704f2faae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5661f868ef191d33dfc6a0cc7c5b3d495f0cc8bb3f8b30d87bda8755c61c95f5
MD5 821deaf14d5bfed02f7afaf90c60fe8b
BLAKE2b-256 0185ab27d62103e8a150f3657e043e5fc711ad3e018c8cd8a715093e93d7640c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c356dbddab0a529ed7574f78f559d75a223735c321c28f6f587fbf02b11ed301
MD5 ca92c232a4d9a65e59829b1b89a2546b
BLAKE2b-256 01279efba1e7a8df48e405d017e67513c6b2a8f0b59c8500b820c47cd5f3dea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.manylinux_2_31_armv7l.whl
Algorithm Hash digest
SHA256 b85b960a4507b0714c0a1246d031be9118d908ee974dc085257297a955205f1d
MD5 40e8ce5ab39e076caa4c714f6461db19
BLAKE2b-256 098d357afa2ffd29686536109e7e3cb2a94f2d09e535df4cf3989393dc506a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9aac6081513f02eac3f8caace800dbfc5c608b69e4a7bef69e414eabfc95aa1
MD5 19f28a628e60235d65230a989c582614
BLAKE2b-256 3b7192e6146d3588d145136c0e0e16d106bbb855bb5047e13ec3fdee39cce770

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.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.0.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d41e9845514754a42d1d83b2fca9d27fee2ca7b3b0bee6843ba5a9bb2b6e25ac
MD5 fa4d8fd741d71d556b47854c36c1f259
BLAKE2b-256 45a12b100e71aa1fe283ec8fb73f8b74a8576d855486a49117903b100dd3b78d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-manylinux1_i686.manylinux_2_28_i686.manylinux_2_5_i686.whl
Algorithm Hash digest
SHA256 b98860aefbd3d9bc8e3c7f0eefb83b11142b16110739c68cd33d3b4d6e84e536
MD5 92ae5ac460cc5236d81af4fa9287208f
BLAKE2b-256 a4ab13a856b488dbac7fd3c5473e38098897cda0baa04e3ca3b34ec6c8a32b46

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b52c76b8a870b141b7ca0705289452183ce7a523101954ccfe29a25986a673f
MD5 dc1149e12bf5ac865945aa94e6fd5f91
BLAKE2b-256 872d68439a174c74969fb51619bbe9af9496826610883b828a2edd2f022c94fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70d438268e49f1a4bd096b6b6f7010f3ab48b5db2574dbf7d8c864c46ce7a06a
MD5 0c5e9a824cb23df9dcefdd62aada2287
BLAKE2b-256 781beaefeb695b217d8c735fc377ab53c6b00bc9ed64a01a3f6f797096ac0ee8

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.0.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for websockets-17.0.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c38515cb54902f7e97d0239e81ef46c4444f9475f4807fb9bbdb789b4089abcf
MD5 a18c412ef4691a8326d67078f91d9783
BLAKE2b-256 cb54b2bce5b754b91b727b852e78af6d7193d4fe985e420dc54e6c2abe161c1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-17.0.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.

Supported by

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