Skip to main content

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

Project description

websockets

licence version pyversions wheel tests docs

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, it provides an elegant coroutine-based API.

Documentation is available on Read the Docs.

Here’s how a client sends and receives messages:

#!/usr/bin/env python

import asyncio
from websockets import connect

async def hello(uri):
    async with connect(uri) as websocket:
        await websocket.send("Hello world!")
        await websocket.recv()

asyncio.run(hello("ws://localhost:8765"))

And here’s an echo server:

#!/usr/bin/env python

import asyncio
from websockets import serve

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

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

asyncio.run(main())

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 a HTTP health check.

    If you want do to 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-10.2.tar.gz (83.4 kB view details)

Uploaded Source

Built Distributions

websockets-10.2-pp37-pypy37_pp73-win_amd64.whl (97.8 kB view details)

Uploaded PyPy Windows x86-64

websockets-10.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

websockets-10.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (98.0 kB view details)

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

websockets-10.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (98.0 kB view details)

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

websockets-10.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (96.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

websockets-10.2-cp310-cp310-win_amd64.whl (97.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

websockets-10.2-cp310-cp310-win32.whl (97.2 kB view details)

Uploaded CPython 3.10 Windows x86

websockets-10.2-cp310-cp310-musllinux_1_1_x86_64.whl (110.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

websockets-10.2-cp310-cp310-musllinux_1_1_i686.whl (109.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

websockets-10.2-cp310-cp310-musllinux_1_1_aarch64.whl (110.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

websockets-10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (106.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

websockets-10.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (110.8 kB view details)

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

websockets-10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (109.9 kB view details)

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

websockets-10.2-cp310-cp310-macosx_11_0_arm64.whl (96.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

websockets-10.2-cp310-cp310-macosx_10_9_x86_64.whl (96.5 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

websockets-10.2-cp310-cp310-macosx_10_9_universal2.whl (99.2 kB view details)

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

websockets-10.2-cp39-cp39-win_amd64.whl (97.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

websockets-10.2-cp39-cp39-win32.whl (97.2 kB view details)

Uploaded CPython 3.9 Windows x86

websockets-10.2-cp39-cp39-musllinux_1_1_x86_64.whl (109.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

websockets-10.2-cp39-cp39-musllinux_1_1_i686.whl (109.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

websockets-10.2-cp39-cp39-musllinux_1_1_aarch64.whl (109.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

websockets-10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (105.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

websockets-10.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (110.5 kB view details)

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

websockets-10.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (109.6 kB view details)

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

websockets-10.2-cp39-cp39-macosx_11_0_arm64.whl (96.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

websockets-10.2-cp39-cp39-macosx_10_9_x86_64.whl (96.5 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

websockets-10.2-cp39-cp39-macosx_10_9_universal2.whl (99.2 kB view details)

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

websockets-10.2-cp38-cp38-win_amd64.whl (97.8 kB view details)

Uploaded CPython 3.8 Windows x86-64

websockets-10.2-cp38-cp38-win32.whl (97.2 kB view details)

Uploaded CPython 3.8 Windows x86

websockets-10.2-cp38-cp38-musllinux_1_1_x86_64.whl (109.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

websockets-10.2-cp38-cp38-musllinux_1_1_i686.whl (109.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

websockets-10.2-cp38-cp38-musllinux_1_1_aarch64.whl (110.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

websockets-10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (106.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

websockets-10.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (110.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-10.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (109.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

websockets-10.2-cp38-cp38-macosx_11_0_arm64.whl (96.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

websockets-10.2-cp38-cp38-macosx_10_9_x86_64.whl (96.5 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

websockets-10.2-cp38-cp38-macosx_10_9_universal2.whl (99.2 kB view details)

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

websockets-10.2-cp37-cp37m-win_amd64.whl (97.8 kB view details)

Uploaded CPython 3.7m Windows x86-64

websockets-10.2-cp37-cp37m-win32.whl (97.1 kB view details)

Uploaded CPython 3.7m Windows x86

websockets-10.2-cp37-cp37m-musllinux_1_1_x86_64.whl (110.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

websockets-10.2-cp37-cp37m-musllinux_1_1_i686.whl (110.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

websockets-10.2-cp37-cp37m-musllinux_1_1_aarch64.whl (110.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

websockets-10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (106.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

websockets-10.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (111.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-10.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (110.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686 manylinux: glibc 2.5+ i686

websockets-10.2-cp37-cp37m-macosx_10_9_x86_64.whl (96.4 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: websockets-10.2.tar.gz
  • Upload date:
  • Size: 83.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2.tar.gz
Algorithm Hash digest
SHA256 8351c3c86b08156337b0e4ece0e3c5ec3e01fcd14e8950996832a23c99416098
MD5 b917be5391934f872145c0473d8d8e41
BLAKE2b-256 b47b0960d02701f783bb052ec69ea32789d878d2cce05a03950adbd75f164758

See more details on using hashes here.

File details

Details for the file websockets-10.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: websockets-10.2-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 97.8 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 56d48eebe9e39ce0d68701bce3b21df923aa05dcc00f9fd8300de1df31a7c07c
MD5 aae0667d06c2a3b0b2e14647000999a0
BLAKE2b-256 4b52e4b34c9fdc51b2b51c8435cfd951dc848d61ff12e00c4223b47acb789cfb

See more details on using hashes here.

File details

Details for the file websockets-10.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: websockets-10.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 98.3 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6e56606842bb24e16e36ae7eb308d866b4249cf0be8f63b212f287eeb76b124
MD5 2011ded237403509371a01e63a1c9efb
BLAKE2b-256 2a787268e1463baf2fc20627320d07c7ec0164ce38a9c839372ab412001529d2

See more details on using hashes here.

File details

Details for the file websockets-10.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for websockets-10.2-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0cd02f36d37e503aca88ab23cc0a1a0e92a263d37acf6331521eb38040dcf77b
MD5 3c3eef5b5d9cfc34e9d6ad009a61dd6e
BLAKE2b-256 e6056c3276c915b2af5c2e214a01ce5ae1a3b33442b9fa4227dde5922ac92c08

See more details on using hashes here.

File details

Details for the file websockets-10.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for websockets-10.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0f73cb2526d6da268e86977b2c4b58f2195994e53070fe567d5487c6436047e6
MD5 767b773e4327372af2857a1dc6b23230
BLAKE2b-256 373b2e4b33b5732116b81e717a0b4648f3f3170e1b1f8e17f5a332f81efbcee1

See more details on using hashes here.

File details

Details for the file websockets-10.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: websockets-10.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.3 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a38a0175ae82e4a8c4bac29fc01b9ee26d7d5a614e5ee11e7813c68a7d938ce
MD5 7bca733c56a5342fbde38186fa63b24f
BLAKE2b-256 6e3b009b01bd44ccb5b8a1af2a670f62f00903eff3dbab719977b39da61a8950

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 97.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c21a67ab9a94bd53e10bba21912556027fea944648a09e6508415ad14e37c325
MD5 10d8441920a18e45d3d10418281e19e0
BLAKE2b-256 2425569bcf0669bae1a60364d229ef8a40c8872fc965af6967e7921b91dd7719

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: websockets-10.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 97.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cef40a1b183dcf39d23b392e9dd1d9b07ab9c46aadf294fff1350fb79146e72b
MD5 b97aee11ce46c9d2f103fc96c2b098e7
BLAKE2b-256 306b129c0bcb05150ca24e2194bf0e53b58e40cff11e4bd8663e738168e70075

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: websockets-10.2-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 110.0 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b7fe45ae43ac814beb8ca09d6995b56800676f2cfa8e23f42839dc69bba34a42
MD5 165caff690d0a10bedb249ffb455012b
BLAKE2b-256 2dd24993be862fc44fbdb012c53dc36572e3a957d0951160a8d64c88aef70c95

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

  • Download URL: websockets-10.2-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 109.4 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2aa9b91347ecd0412683f28aabe27f6bad502d89bd363b76e0a3508b1596402e
MD5 b3f3ce7cb068a97029e19db9f49eb82b
BLAKE2b-256 053f351c2d8ef2091971a36d9cd0603acf37b95a6b04a91d03054f4a4d13186a

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: websockets-10.2-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 110.1 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7b38a5c9112e3dbbe45540f7b60c5204f49b3cb501b40950d6ab34cd202ab1d0
MD5 bc11257f915d147002b13781c430be62
BLAKE2b-256 b5d526b7c2bd3feda9891045846b9a703cfed8940b97ba3f8c8f41615330cbd8

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: websockets-10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 106.1 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5c335dc0e7dc271ef36df3f439868b3c790775f345338c2f61a562f1074187b
MD5 9355f62a0ad33c591e2119e1c79e15f3
BLAKE2b-256 041aa9fe06cbf00f6623feaa054fddc0d6be14178196fbab300211befb55aad2

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for websockets-10.2-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a10c0c1ee02164246f90053273a42d72a3b2452a7e7486fdae781138cf7fbe2d
MD5 0e7459b548cf78dc60113c040ab4254a
BLAKE2b-256 aea8e033bbd387d5902433c79fb3b401e4ef2b7a998e1939c7568823a33a354b

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for websockets-10.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6a009eb551c46fd79737791c0c833fc0e5b56bcd1c3057498b262d660b92e9cd
MD5 fd3629e019daa7b6d216b4f1332406de
BLAKE2b-256 d5e07c4b89e60b15cb1e24c1b6b05184f6162cc35ba7aa9d46045c22d5464560

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: websockets-10.2-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b04270b5613f245ec84bb2c6a482a9d009aefad37c0575f6cda8499125d5d5c
MD5 cf8c4b0c2ba240c24dee84a6ab90eaf9
BLAKE2b-256 832c53777af86b61acc3f979a28dae4ce0c767ce76a5a3fa8241e0cf9f936a4d

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: websockets-10.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b22bdc795e62e71118b63e14a08bacfa4f262fd2877de7e5b950f5ac16b0348f
MD5 3f03811f6840b3e519b68feb6d3246bf
BLAKE2b-256 51347f4ac6e241b858d5f01731e03e177fa06983e83b8c953c20a494feac875e

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

  • Download URL: websockets-10.2-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 99.2 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d5396710f86a306cf52f87fd8ea594a0e894ba0cc5a36059eaca3a477dc332aa
MD5 398bb4df77bc6809236bcb5ebcfc65f4
BLAKE2b-256 1013b639558d8f8e24c5f571780647ce8718119013b52def0dcae112a514f63c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 97.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1c1f3b18c8162e3b09761d0c6a0305fd642934202541cc511ef972cb9463261e
MD5 3ec1c5429993a299f7d1b7c02037de07
BLAKE2b-256 c52831fa208d8915d02829a6e6a39bad6a33eebef34289a950f84f6481947f40

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: websockets-10.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 97.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 bef03a51f9657fb03d8da6ccd233fe96e04101a852f0ffd35f5b725b28221ff3
MD5 c133382f95bcfdd31eb9414ecfeec785
BLAKE2b-256 0fee387b94d98a1c3f1d4a07a30535cfa6de631fc508a5ed527e4f3b068e7f73

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: websockets-10.2-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 109.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2349fa81b6b959484bb2bda556ccb9eb70ba68987646a0f8a537a1a18319fb03
MD5 29b3d608b5364853dd46bf3599cbc108
BLAKE2b-256 cb64a07a60b838c89ffe8efcf1473c48824e727ff1b7a225ce5141c77176cd47

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: websockets-10.2-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 109.1 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f09f46b1ff6d09b01c7816c50bd1903cf7d02ebbdb63726132717c2fcda835d5
MD5 1965e2e74e13678f1f7fcf2115907270
BLAKE2b-256 614c449658d875bb5aaffe7ddfd47bf18625e8723caf7e5f5d807285f4f9c9b9

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: websockets-10.2-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 109.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 038afef2a05893578d10dadbdbb5f112bd115c46347e1efe99f6a356ff062138
MD5 de477fc686a2bac24a52ee7ab6645643
BLAKE2b-256 7783e9e2f3016ad89420df6c57e80f4be3f682b0f70b3ed9948b707b81f7b9d4

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: websockets-10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 105.9 kB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97950c7c844ec6f8d292440953ae18b99e3a6a09885e09d20d5e7ecd9b914cf8
MD5 8a271c8d74d9795a08f7a95754e1b6a1
BLAKE2b-256 739e399e6ad1009d5f957270f5cd99a0b3f3dcea3aba86f6bff178b85c936273

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for websockets-10.2-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 a72b92f96e5e540d5dda99ee3346e199ade8df63152fa3c737260da1730c411f
MD5 3c4c5fbd966beb725e9b071e6dffc41c
BLAKE2b-256 ec6e99b55bbb97f8126262845f0ed74addb9e4148d56732d9509199579a4f745

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for websockets-10.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 98f57b3120f8331cd7440dbe0e776474f5e3632fdaa474af1f6b754955a47d71
MD5 a7e104edf22eaf238957410e4d55307f
BLAKE2b-256 a0579c1d09f5295d0f97d3e9a6d65a267baa39a49079a71ca3b20261875b0e9f

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: websockets-10.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ca2ca05a4c29179f06cf6727b45dba5d228da62623ec9df4184413d8aae6cb9
MD5 c64cfa8c3d501f8eeae70d6301771ef6
BLAKE2b-256 011ada5abede8ebcd07f079bc970ab65e704058386e925d26d3c3e5541335a0c

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: websockets-10.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4059e2ccbe6587b6dc9a01db5fc49ead9a884faa4076eea96c5ec62cb32f42a
MD5 808c09cfef86d14b74859f79cf0ceddd
BLAKE2b-256 445207a529d482ab25e7fc5fa2fc94e139aafcb7e5a6874183af77c94ae01265

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: websockets-10.2-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 99.2 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ac081aa0307f263d63c5ff0727935c736c8dad51ddf2dc9f5d0c4759842aefaa
MD5 9d51ceea850d3a27fbe9dc75950f605b
BLAKE2b-256 cff258494345bbfd7d4166c4a0ca93dff49d43556d2813b0c4207c6ad527dc5a

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: websockets-10.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 97.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0b66421f9f13d4df60cd48ab977ed2c2b6c9147ae1a33caf5a9f46294422fda1
MD5 8406f1b1326feae8d652e06983060796
BLAKE2b-256 d775479d6d47b7c14328b829f8b2dab297ea59bc1a020a6ab788f55fe6992fa1

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: websockets-10.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 97.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 117383d0a17a0dda349f7a8790763dde75c1508ff8e4d6e8328b898b7df48397
MD5 2d893e8ac68ad87df3b29c06b69ad093
BLAKE2b-256 51c47f74d8d9800db066c855f76ae118a3cf76f3d0be74716ca4094a37dcb770

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: websockets-10.2-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 109.8 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d4d110a84b63c5cfdd22485acc97b8b919aefeecd6300c0c9d551e055b9a88ea
MD5 acb127527fbb709129c406771783a31d
BLAKE2b-256 5454ef47920a512374fbcf1fb76fd48b7c0a949a23156f8cc0c9e6f9eb95825e

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: websockets-10.2-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 109.2 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bffc65442dd35c473ca9790a3fa3ba06396102a950794f536783f4b8060af8dd
MD5 6c8766ab62e938ead3f1cb0fd444f948
BLAKE2b-256 a82083787a5647ddf08ae26d4d7ef69ff368d22d4a7c97681e6f0bd62b21d0bb

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: websockets-10.2-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 110.0 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 669e54228a4d9457abafed27cbf0e2b9f401445c4dfefc12bf8e4db9751703b8
MD5 84a4e065e1e2e799dde6a082f5316370
BLAKE2b-256 bc1be63683993d8cbeb75ea213065055b54823bddbabd07cef2ecbed84ed4e03

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: websockets-10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 106.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82bc33db6d8309dc27a3bee11f7da2288ad925fcbabc2a4bb78f7e9c56249baf
MD5 85e330f69e214ee0fce808f328a0c3ff
BLAKE2b-256 694bda2505e781a0969787c61893f4d17374ac0366dda4e39be4c0fbc00706c2

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for websockets-10.2-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cf931c33db9c87c53d009856045dd524e4a378445693382a920fa1e0eb77c36c
MD5 f0d1db80302111c76a9a125e321bbbd1
BLAKE2b-256 89e07133206fe80bf6f6970e55d8735400499a5e6c190018dabe4000d91b8b1e

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for websockets-10.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 24b879ba7db12bb525d4e58089fcbe6a3df3ce4666523183654170e86d372cbe
MD5 40166500c302883aff22ee82929c3f24
BLAKE2b-256 a76b51e7d319e77bb1c9f230404bcdf6eff499b8ae29f6baf185f94f5e1739f3

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: websockets-10.2-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c9031e90ebfc486e9cdad532b94004ade3aa39a31d3c46c105bb0b579cd2490
MD5 f081eb0e90e5f8e0e2462fb31ad9eb18
BLAKE2b-256 f0f4f10c0c4fdae56101e3d95f6a5b9d36b466bddcbf13702219d20187be2ec2

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: websockets-10.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.5 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05f6e9757017270e7a92a2975e2ae88a9a582ffc4629086fd6039aa80e99cd86
MD5 39fe02e67a6a11dab8d855391ac8c8bd
BLAKE2b-256 9769539639be1ddb526623e5b937c23bee1c7d3b576e9a8d9c6ce125f056dd86

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: websockets-10.2-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 99.2 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7bb9d8a6beca478c7e9bdde0159bd810cc1006ad6a7cb460533bae39da692ca2
MD5 374c0e042bbbfeabd3056f21440c8d43
BLAKE2b-256 2ff49d4b8fdb69bf9dfd4e6509a5210a73ffb43ec02b72a1c7d136bb994181cb

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: websockets-10.2-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 97.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f8296b8408ec6853b26771599990721a26403e62b9de7e50ac0a056772ac0b5e
MD5 5e524f8cf4991696dc553a8ea6aa5d0a
BLAKE2b-256 6bd4a23c87c28081798907820776caa2109fe70c7340836abdba1339bbe9b620

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp37-cp37m-win32.whl.

File metadata

  • Download URL: websockets-10.2-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 97.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 a03a25d95cc7400bd4d61a63460b5d85a7761c12075ee2f51de1ffe73aa593d3
MD5 4cf6bc81a480292a28974260a0586d6f
BLAKE2b-256 f154e8f7c2e08973604f4b6e23d665de12381af5c440ae70b06c32738d1ee8ac

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: websockets-10.2-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 110.6 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c67d9cacb3f6537ca21e9b224d4fd08481538e43bcac08b3d93181b0816def39
MD5 cc4c36e05a13b7f13671700863162a2b
BLAKE2b-256 975c60dbeeaa900e4f5bdbec2ad46a8e9c2e1a6753e23891659e5e0133ed9bd0

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

  • Download URL: websockets-10.2-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 110.0 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8beac786a388bb99a66c3be4ab0fb38273c0e3bc17f612a4e0a47c4fc8b9c045
MD5 b86dde518756e087c0397703ab6c2522
BLAKE2b-256 b9067777e8b8f96cb8e1908001a661cf37bd760750a762398455863c101f1bd2

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: websockets-10.2-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 110.8 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6193bbc1ee63aadeb9a4d81de0e19477401d150d506aee772d8380943f118186
MD5 d150d5bae6de025e296b3f78e6fc0056
BLAKE2b-256 40630d15a3e792aa19d0f413732ae0cc694c4cc223ccbb3a1d0a4ffcbeef8d0a

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: websockets-10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 106.0 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f14bd10e170abc01682a9f8b28b16e6f20acf6175945ef38db6ffe31b0c72c3f
MD5 422ec22f3573a91ad46aa98a33e1aed9
BLAKE2b-256 7b435e8b839d4bd413e092a78f78a12100c2f536c7769c1e9d70fd62674c872a

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for websockets-10.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 71a4491cfe7a9f18ee57d41163cb6a8a3fa591e0f0564ca8b0ed86b2a30cced4
MD5 9788acf51ffd4025e3081d2d2bf096bc
BLAKE2b-256 994507a8837d041a4b4ac5ccd1c2a0e0f0f56f2bf327acd70db10a18189769bf

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for websockets-10.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fa35c5d1830d0fb7b810324e9eeab9aa92e8f273f11fdbdc0741dcded6d72b9f
MD5 bcb72e555adce57d961fa83ab08bbec2
BLAKE2b-256 e4fc58037985048281e5c32a2383e00eb5fb999291f1ad1973eda1f731997fbb

See more details on using hashes here.

File details

Details for the file websockets-10.2-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: websockets-10.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.4 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for websockets-10.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cb316b87cbe3c0791c2ad92a5a36bf6adc87c457654335810b25048c1daa6fd5
MD5 d54cd34cad6ce9f392597d67ad5b35de
BLAKE2b-256 f1a7b1e2e81bc808f9bc9908926f0ff5cb1102599470395c57ceb0a453b43b65

See more details on using hashes here.

Supported by

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