Skip to main content

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

Project description

websockets

licence version pyversions tests docs openssf

What is websockets?

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

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

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

Documentation is available on Read the Docs.

Here’s an echo server with the asyncio API:

#!/usr/bin/env python

import asyncio
from websockets.server import serve

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

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

asyncio.run(main())

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

#!/usr/bin/env python

from websockets.sync.client import connect

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

hello()

Does that look good?

Get started with the tutorial!

Why should I use websockets?

The development of websockets is shaped by four principles:

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

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

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

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

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

Why shouldn’t I use websockets?

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

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

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

What else?

Bug reports, patches and suggestions are welcome!

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

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

Participants must uphold the Contributor Covenant code of conduct.

websockets is released under the BSD license.

Project details


Download files

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

Source Distribution

websockets-14.2.tar.gz (164.4 kB view details)

Uploaded Source

Built Distributions

websockets-14.2-py3-none-any.whl (157.4 kB view details)

Uploaded Python 3

websockets-14.2-pp310-pypy310_pp73-win_amd64.whl (164.5 kB view details)

Uploaded PyPy Windows x86-64

websockets-14.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (162.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

websockets-14.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (161.8 kB view details)

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

websockets-14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (161.9 kB view details)

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

websockets-14.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (161.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

websockets-14.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (160.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

websockets-14.2-pp39-pypy39_pp73-win_amd64.whl (164.5 kB view details)

Uploaded PyPy Windows x86-64

websockets-14.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (162.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

websockets-14.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (161.8 kB view details)

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

websockets-14.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (161.9 kB view details)

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

websockets-14.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (161.0 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

websockets-14.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (160.8 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

websockets-14.2-cp313-cp313-win_amd64.whl (164.4 kB view details)

Uploaded CPython 3.13 Windows x86-64

websockets-14.2-cp313-cp313-win32.whl (164.0 kB view details)

Uploaded CPython 3.13 Windows x86

websockets-14.2-cp313-cp313-musllinux_1_2_x86_64.whl (169.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

websockets-14.2-cp313-cp313-musllinux_1_2_i686.whl (169.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

websockets-14.2-cp313-cp313-musllinux_1_2_aarch64.whl (170.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

websockets-14.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (170.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

websockets-14.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.2 kB view details)

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

websockets-14.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (169.7 kB view details)

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

websockets-14.2-cp313-cp313-macosx_11_0_arm64.whl (161.0 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

websockets-14.2-cp313-cp313-macosx_10_13_x86_64.whl (160.8 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

websockets-14.2-cp313-cp313-macosx_10_13_universal2.whl (163.1 kB view details)

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

websockets-14.2-cp312-cp312-win_amd64.whl (164.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

websockets-14.2-cp312-cp312-win32.whl (164.0 kB view details)

Uploaded CPython 3.12 Windows x86

websockets-14.2-cp312-cp312-musllinux_1_2_x86_64.whl (169.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

websockets-14.2-cp312-cp312-musllinux_1_2_i686.whl (169.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

websockets-14.2-cp312-cp312-musllinux_1_2_aarch64.whl (170.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

websockets-14.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (170.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

websockets-14.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (170.2 kB view details)

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

websockets-14.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (169.8 kB view details)

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

websockets-14.2-cp312-cp312-macosx_11_0_arm64.whl (161.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

websockets-14.2-cp312-cp312-macosx_10_13_x86_64.whl (160.8 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

websockets-14.2-cp312-cp312-macosx_10_13_universal2.whl (163.1 kB view details)

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

websockets-14.2-cp311-cp311-win_amd64.whl (164.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

websockets-14.2-cp311-cp311-win32.whl (164.0 kB view details)

Uploaded CPython 3.11 Windows x86

websockets-14.2-cp311-cp311-musllinux_1_2_x86_64.whl (169.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

websockets-14.2-cp311-cp311-musllinux_1_2_i686.whl (169.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

websockets-14.2-cp311-cp311-musllinux_1_2_aarch64.whl (170.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

websockets-14.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (170.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

websockets-14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.9 kB view details)

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

websockets-14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (169.5 kB view details)

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

websockets-14.2-cp311-cp311-macosx_11_0_arm64.whl (161.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

websockets-14.2-cp311-cp311-macosx_10_9_x86_64.whl (160.7 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

websockets-14.2-cp311-cp311-macosx_10_9_universal2.whl (163.1 kB view details)

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

websockets-14.2-cp310-cp310-win_amd64.whl (164.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

websockets-14.2-cp310-cp310-win32.whl (164.0 kB view details)

Uploaded CPython 3.10 Windows x86

websockets-14.2-cp310-cp310-musllinux_1_2_x86_64.whl (169.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

websockets-14.2-cp310-cp310-musllinux_1_2_i686.whl (169.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

websockets-14.2-cp310-cp310-musllinux_1_2_aarch64.whl (169.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

websockets-14.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (170.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

websockets-14.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.3 kB view details)

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

websockets-14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (169.0 kB view details)

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

websockets-14.2-cp310-cp310-macosx_11_0_arm64.whl (161.0 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

websockets-14.2-cp310-cp310-macosx_10_9_x86_64.whl (160.7 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

websockets-14.2-cp310-cp310-macosx_10_9_universal2.whl (163.1 kB view details)

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

websockets-14.2-cp39-cp39-win_amd64.whl (164.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

websockets-14.2-cp39-cp39-win32.whl (164.0 kB view details)

Uploaded CPython 3.9 Windows x86

websockets-14.2-cp39-cp39-musllinux_1_2_x86_64.whl (168.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

websockets-14.2-cp39-cp39-musllinux_1_2_i686.whl (168.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

websockets-14.2-cp39-cp39-musllinux_1_2_aarch64.whl (169.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

websockets-14.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (169.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

websockets-14.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (169.1 kB view details)

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

websockets-14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (168.8 kB view details)

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

websockets-14.2-cp39-cp39-macosx_11_0_arm64.whl (161.0 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

websockets-14.2-cp39-cp39-macosx_10_9_x86_64.whl (160.7 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

websockets-14.2-cp39-cp39-macosx_10_9_universal2.whl (163.1 kB view details)

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

File details

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

File metadata

  • Download URL: websockets-14.2.tar.gz
  • Upload date:
  • Size: 164.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for websockets-14.2.tar.gz
Algorithm Hash digest
SHA256 5059ed9c54945efb321f097084b4c7e52c246f2c869815876a69d1efc4ad6eb5
MD5 26d1dc6e53395f537667d66ba1832ea7
BLAKE2b-256 94548359678c726243d19fae38ca14a334e740782336c9f19700858c4eb64a1e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: websockets-14.2-py3-none-any.whl
  • Upload date:
  • Size: 157.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for websockets-14.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7a6ceec4ea84469f15cf15807a747e9efe57e369c384fa86e022b3bea679b79b
MD5 048d6c8fecc3af3b8b3dd74b766c1660
BLAKE2b-256 7bc8d529f8a32ce40d98309f4470780631e971a5a842b60aec864833b3615786

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-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-14.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dec254fcabc7bd488dab64846f588fc5b6fe0d78f641180030f8ea27b76d72c3
MD5 564cc0705955deaa3e61e18f3723abef
BLAKE2b-256 ff1ee47dedac8bf7140e59aa6a679e850c4df9610ae844d71b6015263ddea37b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp310-pypy310_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-14.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd475a974d5352390baf865309fe37dec6831aafc3014ffac1eea99e84e83fc2
MD5 1d29744294ea9fd378b0467efb0e93b1
BLAKE2b-256 ca357a20a3c450b27c04e50fbbfc3dfb161ed8e827b2a26ae31c4b59b018b8c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_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-14.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d7ff794c8b36bc402f2e07c0b2ceb4a2424147ed4785ff03e2a7af03711d60a
MD5 895efca1a9baca0d2a56498df27981eb
BLAKE2b-256 3f37260f189b16b2b8290d6ae80c9f96d8b34692cf1bb3475df54c38d3deb57d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_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-14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c6c0097a41968b2e2b54ed3424739aab0b762ca92af2379f152c1aef0187e1c
MD5 122c60dab2c524d0f3a23727b6bcf045
BLAKE2b-256 e89ce3f9600564b0c813f2448375cf28b47dc42c514344faed3a05d71fb527f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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-14.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c76193c1c044bd1e9b3316dcc34b174bbf9664598791e6fb606d8d29000e070c
MD5 fd5b8faa0a6a48daa3b91a1a69a6ca96
BLAKE2b-256 337ccdedadfef7381939577858b1b5718a4ab073adbb584e429dd9d9dc9bfe16

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp310-pypy310_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-14.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d7d9cafbccba46e768be8a8ad4635fa3eae1ffac4c6e7cb4eb276ba41297ed29
MD5 21aeb125845ffeab213bf7635d9a2aa4
BLAKE2b-256 103d91d3d2bb1325cd83e8e2c02d0262c7d4426dc8fa0831ef1aa4d6bf2041af

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp310-pypy310_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-14.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3c1426c021c38cf92b453cdf371228d3430acd775edee6bac5a4d577efc72365
MD5 8b65d8db9acbf9cca153d13f9258b3b1
BLAKE2b-256 cdccadc9fb85f031b8df8e9f3d96cc004df25d2643e503953af5223c5b6825b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp39-pypy39_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-14.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 577a4cebf1ceaf0b65ffc42c54856214165fb8ceeba3935852fc33f6b0c55e7f
MD5 d9e7a063cb2805cace2b34d0fe0df47c
BLAKE2b-256 f310b90ece894828c954e674a81cb0db250e6c324c54db30a8b19e96431f928f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_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-14.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f390024a47d904613577df83ba700bd189eedc09c57af0a904e5c39624621270
MD5 66ca1728c8324464a8f26526f038e487
BLAKE2b-256 32abf7d80b4049bff0aa617507330db3a27389d0e70df54e29f7a3d76bbd2086

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_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-14.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad1c1d02357b7665e700eca43a31d52814ad9ad9b89b58118bdabc365454b574
MD5 f478528fefadd03aa4aceca46e195ab9
BLAKE2b-256 52931147b6b5464a5fb6e8987da3ec7991dcc44f9090f67d9c841d7382fed429

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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-14.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3c4aa3428b904d5404a0ed85f3644d37e2cb25996b7f096d77caeb0e96a3b42
MD5 3e7b1a15736595e80ba199e0d79845e8
BLAKE2b-256 5a6ec9a7f2edd4afddc4f8cccfc4e12468b7f6ec40f28d1b1e966a8d0298b875

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-pp39-pypy39_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-14.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bbe03eb853e17fd5b15448328b4ec7fb2407d45fb0245036d06a3af251f8e48f
MD5 cf494850d4fc3542c29edb24b14ab1fe
BLAKE2b-256 f7c08e9325c4987dcf66d4a0d63ec380d4aefe8dcc1e521af71ad17adf2c1ae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b439ea828c4ba99bb3176dc8d9b933392a2413c0f6b149fdcba48393f573377f
MD5 211360d1d608587bd69dc4c624dff561
BLAKE2b-256 14138b7fc4cb551b9cfd9890f0fd66e53c18a06240319915533b033a56a3d520

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: websockets-14.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 164.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for websockets-14.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a9e72fb63e5f3feacdcf5b4ff53199ec8c18d66e325c34ee4c551ca748623bbc
MD5 22c9b18a31cdaa652ad18d63e8a9e7d1
BLAKE2b-256 17b11ffdb2680c64e9c3921d99db460546194c40d4acbef999a18c37aa4d58a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab95d357cd471df61873dadf66dd05dd4709cae001dd6342edafc8dc6382f307
MD5 2f308d34c6d0c3e11596a47acbef4468
BLAKE2b-256 c8c967a8f08923cf55ce61aadda72089e3ed4353a95a3a4bc8bf42082810e580

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2066dc4cbcc19f32c12a5a0e8cc1b7ac734e5b64ac0a325ff8353451c4b15ef2
MD5 071a424ad05ee28a0a25b45f0d35b72b
BLAKE2b-256 79dd699238a92761e2f943885e091486378813ac8f43e3c84990bc394c2be93e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eabdb28b972f3729348e632ab08f2a7b616c7e53d5414c12108c29972e655b20
MD5 3876552288ccae6bb0caa9127954e31a
BLAKE2b-256 752d83a5aca7247a655b1da5eb0ee73413abd5c3a57fc8b92915805e6033359d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86cf1aaeca909bf6815ea714d5c5736c8d6dd3a13770e885aafe062ecbd04f1f
MD5 9b8309b723f4a38ce91c51b4989c5ffa
BLAKE2b-256 f579036d320dc894b96af14eac2529967a6fc8b74f03b83c487e7a0e9043d842

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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-14.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 669c3e101c246aa85bc8534e495952e2ca208bd87994650b90a23d745902db9a
MD5 eb744c1c4c0429172f9b2656a74d448c
BLAKE2b-256 2c3cbf9b2c396ed86a0b4a92ff4cdaee09753d3ee389be738e92b9bbd0330b64

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_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-14.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9b0f6c3ba3b1240f602ebb3971d45b02cc12bd1845466dd783496b3b05783a5
MD5 b7352ef8f9e9e7a262001e77dc64ab2e
BLAKE2b-256 63755737d21ee4dd7e4b9d487ee044af24a935e36a9ff1e1419d684feedcba71

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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-14.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8a86a269759026d2bde227652b87be79f8a734e582debf64c9d302faa1e9f03
MD5 2c49847c645e8bb0b21c2d8a0967d445
BLAKE2b-256 a3a4edb62efc84adb61883c7d2c6ad65181cb087c64252138e12d655989eec05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4da98b72009836179bb596a92297b1a61bb5a830c0e483a7d0766d45070a08ad
MD5 21322b9da1fbe38425c607d24958db5c
BLAKE2b-256 8eb77484905215627909d9a79ae07070057afe477433fdacb59bf608ce86365a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 6f1372e511c7409a542291bce92d6c83320e02c9cf392223272287ce55bc224e
MD5 b456134c0e40d771611c58ac7122fa7f
BLAKE2b-256 82944f9b55099a4603ac53c2912e1f043d6c49d23e94dd82a9ce1eb554a90215

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 44bba1a956c2c9d268bdcdf234d5e5ff4c9b6dc3e300545cbe99af59dda9dcce
MD5 921b6e8d901203d4ded37a36c7e9282f
BLAKE2b-256 b37d32cdb77990b3bdc34a306e0a0f73a1275221e9a66d869f6ff833c95b56ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: websockets-14.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 164.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for websockets-14.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 20e6dd0984d7ca3037afcb4494e48c74ffb51e8013cac71cf607fffe11df7205
MD5 ae323892d0acd26f425d21ea8ae1a940
BLAKE2b-256 b63288ccdd63cb261e77b882e706108d072e4f1c839ed723bf91a3e1f216bf60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9d0e53530ba7b8b5e389c02282f9d2aa47581514bd6049d3a7cffe1385cf5fe
MD5 b751f4942b2e199fa6c8b2b8744ae300
BLAKE2b-256 a3aee7d1a56755ae15ad5a94e80dd490ad09e345365199600b2629b18ee37bc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 065ce275e7c4ffb42cb738dd6b20726ac26ac9ad0a2a48e33ca632351a737267
MD5 5eb1325939a90a4e96feb1c84d15c353
BLAKE2b-256 66d38275dbc231e5ba9bb0c4f93144394b4194402a7a0c8ffaca5307a58ab5e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a6f3efd47ffd0d12080594f434faf1cd2549b31e54870b8470b28cc1d3817d9
MD5 ca281811bbc054c15300dba147d8b281
BLAKE2b-256 31e0812725b6deca8afd3a08a2e81b3c4c120c17f68c9b84522a520b816cda58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 091ab63dfc8cea748cc22c1db2814eadb77ccbf82829bac6b2fbe3401d548eda
MD5 1a597434555b72c6ee474ad21042ea0c
BLAKE2b-256 a6bcf6678a0ff17246df4f06765e22fc9d98d1b11a258cc50c5968b33d6742a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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-14.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a39d7eceeea35db85b85e1169011bb4321c32e673920ae9c1b6e0978590012a3
MD5 7054b77a059c6f27a610b681bc8f0e5f
BLAKE2b-256 81da72f7caabd94652e6eb7e92ed2d3da818626e70b4f2b15a854ef60bf501ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_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-14.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b374e8953ad477d17e4851cdc66d83fdc2db88d9e73abf755c94510ebddceb95
MD5 741c5d24071c58b5a7dd8a261eb9a14a
BLAKE2b-256 d8b28070cb970c2e4122a6ef38bc5b203415fd46460e025652e1ee3f2f43a9a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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-14.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6af99a38e49f66be5a64b1e890208ad026cda49355661549c507152113049990
MD5 23e962f92eb3716dfd10b78e13758f09
BLAKE2b-256 e58cd130d668781f2c77d106c007b6c6c1d9db68239107c41ba109f09e6c218a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 647b573f7d3ada919fd60e64d533409a79dcf1ea21daeb4542d1d996519ca967
MD5 3ee10f24a20a1ccbb0c0a2324f2013ae
BLAKE2b-256 ecc5de30e88557e4d70988ed4d2eabd73fd3e1e52456b9f3a4e9564d86353b6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 1f20522e624d7ffbdbe259c6b6a65d73c895045f76a93719aa10cd93b3de100c
MD5 6a0bd6b707e6388cadbdf0cc4e800a15
BLAKE2b-256 c18104f7a397653dc8bec94ddc071f34833e8b99b13ef1a3804c149d59f92c18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 862e9967b46c07d4dcd2532e9e8e3c2825e004ffbf91a5ef9dde519ee2effb0b
MD5 1055d12b848dc65200d5968209315a8a
BLAKE2b-256 94a50cda64e1851e73fc1ecdae6f42487babb06e55cb2f0dc8904b81d8ef6857

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: websockets-14.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 164.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for websockets-14.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 02687db35dbc7d25fd541a602b5f8e451a238ffa033030b172ff86a93cb5dc2a
MD5 062f6ac6cfda8c2c49ab3ec5add434eb
BLAKE2b-256 aa2e2b4662237060063a22e5fc40d46300a07142afe30302b634b4eebd717c07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34277a29f5303d54ec6468fb525d99c99938607bc96b8d72d675dee2b9f5bf1d
MD5 fac1ff949dec7019662ee45ff9481039
BLAKE2b-256 6422e5f7c33db0cb2c1d03b79fd60d189a1da044e2661f5fd01d629451e1db89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1a5a20d5843886d34ff8c57424cc65a1deda4375729cbca4cb6b3353f3ce4142
MD5 0a350b605058baf189ec34d8935d4279
BLAKE2b-256 7657a338ccb00d1df881c1d1ee1f2a20c9c1b5b29b51e9e0191ee515d254fea6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 efd9b868d78b194790e6236d9cbc46d68aba4b75b22497eb4ab64fa640c3af56
MD5 e1564b9f6324d79b8dd9cd2001830c37
BLAKE2b-256 60d5a6eadba2ed9f7e65d677fec539ab14a9b83de2b484ab5fe15d3d6d208c28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a52a6d7cf6938e04e9dceb949d35fbdf58ac14deea26e685ab6368e73744e4c
MD5 c2fcc8b86dd9c8b32bb4cc6b78e0c917
BLAKE2b-256 9663900c27cfe8be1a1f2433fc77cd46771cf26ba57e6bdc7cf9e63644a61863

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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-14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22441c81a6748a53bfcb98951d58d1af0661ab47a536af08920d129b4d1c3473
MD5 f14b68a206029583db2e4f3ac27edc97
BLAKE2b-256 6ba937531cb5b994f12a57dec3da2200ef7aadffef82d888a4c29a0d781568e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_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-14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9f05702e93203a6ff5226e21d9b40c037761b2cfb637187c9802c10f58e40473
MD5 a35c6bb37b1c2c67f20c97617e39585f
BLAKE2b-256 008bbec2bdba92af0762d42d4410593c1d7d28e9bfd952c97a3729df603dc6ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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-14.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c9b6535c0e2cf8a6bf938064fb754aaceb1e6a4a51a80d884cd5db569886910
MD5 6f0f36567786f10d07d88dc2ac181303
BLAKE2b-256 a1c61435ad6f6dcbff80bb95e8986704c3174da8866ddb751184046f5c139ef6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c93215fac5dadc63e51bcc6dceca72e72267c11def401d6668622b47675b097f
MD5 80463d0cebe716a426d5cb04f62ed72e
BLAKE2b-256 8126ebfb8f6abe963c795122439c6433c4ae1e061aaedfc7eff32d09394afbae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for websockets-14.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3bdc8c692c866ce5fefcaf07d2b55c91d6922ac397e031ef9b774e5b9ea42166
MD5 3a67cbeb426382b5842226edff4ee175
BLAKE2b-256 15b6504695fb9a33df0ca56d157f5985660b5fc5b4bf8c78f121578d2d653392

See more details on using hashes here.

Provenance

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

File details

Details for the file websockets-14.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc45afb9c9b2dc0852d5c8b5321759cf825f82a31bfaf506b65bf4668c96f8b2
MD5 5256c614f8d03620fa880b3cce4a6b16
BLAKE2b-256 c05b2fcf60f38252a4562b28b66077e0d2b48f91fef645d5f78874cd1dec807b

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp310-cp310-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-14.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: websockets-14.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 164.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for websockets-14.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 75862126b3d2d505e895893e3deac0a9339ce750bd27b4ba515f008b5acf832d
MD5 ba850df415312b0adcbd5cf342591f34
BLAKE2b-256 4897173b1fa6052223e52bb4054a141433ad74931d94c575e04b654200b98ca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp310-cp310-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-14.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a570862c325af2111343cc9b0257b7119b904823c675b22d4ac547163088d0d
MD5 ac77781020533ccdd3e725a082672107
BLAKE2b-256 738d80f71d2a351a44b602859af65261d3dde3a0ce4e76cf9383738a949e0cc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp310-cp310-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-14.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc63cee8596a6ec84d9753fd0fcfa0452ee12f317afe4beae6b157f0070c6c7f
MD5 86cfbe48134002369ebed0b6776550bc
BLAKE2b-256 42e20375af7ac00169b98647c804651c515054b34977b6c1354f1458e4116c1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp310-cp310-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-14.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4daa0faea5424d8713142b33825fff03c736f781690d90652d2c8b053345b0e7
MD5 f114504f51771a2fba54329519aa5ed1
BLAKE2b-256 9317dae0174883d6399f57853ac44abf5f228eaba86d98d160f390ffabc19b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp310-cp310-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-14.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2e53c72052f2596fb792a7acd9704cbc549bf70fcde8a99e899311455974ca3
MD5 25873ea16db119c4045d74103b100181
BLAKE2b-256 637cc655789cf78648c01ac6ecbe2d6c18f91b75bdc263ffee4d08ce628d12f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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-14.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b27ece32f63150c268593d5fdb82819584831a83a3f5809b7521df0685cd5d8
MD5 184bf99289406865f1538ce7836226c9
BLAKE2b-256 cd33aa3e32fd0df213a5a442310754fe3f89dd87a0b8e5b4e11e0991dd3bcc50

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_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-14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3fbd68850c837e57373d95c8fe352203a512b6e49eaae4c2f4088ef8cf21980
MD5 fd09f481441d82ae4b4c3a8e3ca504a2
BLAKE2b-256 fb5b013ed8b4611857ac92ac631079c08d9715b388bd1d88ec62e245f87a39df

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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-14.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 714a9b682deb4339d39ffa674f7b674230227d981a37d5d174a4a83e3978a610
MD5 4c9a696b33d731bbe048e08acaa7fa3c
BLAKE2b-256 72f760f10924d333a28a1ff3fcdec85acf226281331bdabe9ad74947e1b7fc0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp310-cp310-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-14.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d8c3e2cdb38f31d8bd7d9d28908005f6fa9def3324edb9bf336d7e4266fd397
MD5 843f353d97b1382f9f6cb3c3a1c60227
BLAKE2b-256 9e00ad2246b5030575b79e7af0721810fdaecaf94c4b2625842ef7a756fa06dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp310-cp310-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-14.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e8179f95323b9ab1c11723e5d91a89403903f7b001828161b480a7810b334885
MD5 66ed12ff0b409dcbcb5363f6ab3b09f5
BLAKE2b-256 28fa76607eb7dcec27b2d18d63f60a32e60e2b8629780f343bb83a4dbb9f4350

See more details on using hashes here.

Provenance

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

File details

Details for the file websockets-14.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: websockets-14.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 164.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for websockets-14.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b4c8cef610e8d7c70dea92e62b6814a8cd24fbd01d7103cc89308d2bfe1659ef
MD5 dcf18872021c1ef169830343d2651870
BLAKE2b-256 63a7a1035cb198eaa12eaa9621aaaa3ec021b0e3bac96e1df9ceb6bfe5e53e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-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-14.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: websockets-14.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 164.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for websockets-14.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2e20c5f517e2163d76e2729104abc42639c41cf91f7b1839295be43302713661
MD5 f9f667630cb58c8cff585447c65044f3
BLAKE2b-256 8816715580eb6caaacc232f303e9619103a42dcd354b0854baa5ed26aacaf828

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-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-14.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80c8efa38957f20bba0117b48737993643204645e9ec45512579132508477cfc
MD5 18bdebea9a232ff8d2bf8d7dae1d7ca0
BLAKE2b-256 c03d5fd82500714ab7c09f003bde671dad1a3a131ac77b6b11ada72e466de4f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-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-14.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6af6a4b26eea4fc06c6818a6b962a952441e0e39548b44773502761ded8cc1d4
MD5 be0a74824493f38b3d7479d660b06d08
BLAKE2b-256 a411300cf36cfd6990ffb218394862f0513be8c21917c9ff5e362f94599caedd

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-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-14.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89a71173caaf75fa71a09a5f614f450ba3ec84ad9fca47cb2422a860676716f0
MD5 f0528e2700c37f1321bbcd81a7beb5c3
BLAKE2b-256 a67375efa8d9e4b1b257818a7b7a0b9ac84a07c91120b52148941370ef2c8f16

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-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-14.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3ecadc7ce90accf39903815697917643f5b7cfb73c96702318a096c00aa71f5
MD5 87384e3d3e927206028ac60c9ce5115d
BLAKE2b-256 b9b19149e420c61f375e432654d5c1545e563b90ac1f829ee1a8d1dccaf0869d

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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-14.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dddacad58e2614a24938a50b85969d56f88e620e3f897b7d80ac0d8a5800258
MD5 a764e4c188816a04a19dbe4b4f2f71df
BLAKE2b-256 be3dc3c192f16210d7b7535fbf4ee9a299612f4dccff665587617b13fa0a6aa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_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-14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1979bee04af6a78608024bad6dfcc0cc930ce819f9e10342a29a05b5320355d0
MD5 20781fe6ee3303b35b35ff5244947274
BLAKE2b-256 2b330bb58204191e113212360f1392b6b1e9f85f62c7ca5b3b15f52f2f835516

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_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-14.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da85651270c6bfb630136423037dd4975199e5d4114cae6d3066641adcc9d1c7
MD5 0d9d2f68e81b7e5cbb4d3610a2ad95ec
BLAKE2b-256 5cdbb4b353fb9c3f0eaa8138ea4c76e6fa555b6d2821ed2d51d0ac3c320bc57e

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-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-14.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec607328ce95a2f12b595f7ae4c5d71bf502212bddcea528290b35c286932b12
MD5 2be1d881eff5788856776ba50f6ff5b0
BLAKE2b-256 96f71f18d028ec4a2c14598dfec6a73381a915c27464b693873198c1de872095

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-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-14.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for websockets-14.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7cd5706caec1686c5d233bc76243ff64b1c0dc445339bd538f30547e787c11fe
MD5 b76d88566a068f21e27ad9c822b6de99
BLAKE2b-256 6feb367e0ed7b8a960b4fc12c7c6bf3ebddf06875037de641637994849560d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for websockets-14.2-cp39-cp39-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 AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page