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.1.tar.gz (83.1 kB view details)

Uploaded Source

Built Distributions

websockets-10.1-pp37-pypy37_pp73-win_amd64.whl (97.5 kB view details)

Uploaded PyPy Windows x86-64

websockets-10.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (98.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

websockets-10.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (97.6 kB view details)

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

websockets-10.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (97.7 kB view details)

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

websockets-10.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (96.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

websockets-10.1-cp310-cp310-win_amd64.whl (97.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

websockets-10.1-cp310-cp310-win32.whl (96.9 kB view details)

Uploaded CPython 3.10 Windows x86

websockets-10.1-cp310-cp310-musllinux_1_1_x86_64.whl (109.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

websockets-10.1-cp310-cp310-musllinux_1_1_i686.whl (109.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

websockets-10.1-cp310-cp310-musllinux_1_1_aarch64.whl (109.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

websockets-10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (105.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

websockets-10.1-cp310-cp310-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.10 manylinux: glibc 2.12+ x86-64 manylinux: glibc 2.5+ x86-64

websockets-10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (109.6 kB view details)

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

websockets-10.1-cp310-cp310-macosx_11_0_arm64.whl (96.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

websockets-10.1-cp310-cp310-macosx_10_9_x86_64.whl (96.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

websockets-10.1-cp310-cp310-macosx_10_9_universal2.whl (98.9 kB view details)

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

websockets-10.1-cp39-cp39-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

websockets-10.1-cp39-cp39-win32.whl (96.9 kB view details)

Uploaded CPython 3.9 Windows x86

websockets-10.1-cp39-cp39-musllinux_1_1_x86_64.whl (109.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

websockets-10.1-cp39-cp39-musllinux_1_1_i686.whl (108.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

websockets-10.1-cp39-cp39-musllinux_1_1_aarch64.whl (109.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

websockets-10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (105.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

websockets-10.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (110.2 kB view details)

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

websockets-10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (109.3 kB view details)

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

websockets-10.1-cp39-cp39-macosx_11_0_arm64.whl (96.2 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

websockets-10.1-cp39-cp39-macosx_10_9_x86_64.whl (96.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

websockets-10.1-cp39-cp39-macosx_10_9_universal2.whl (98.8 kB view details)

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

websockets-10.1-cp38-cp38-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

websockets-10.1-cp38-cp38-win32.whl (96.9 kB view details)

Uploaded CPython 3.8 Windows x86

websockets-10.1-cp38-cp38-musllinux_1_1_x86_64.whl (109.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

websockets-10.1-cp38-cp38-musllinux_1_1_i686.whl (108.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

websockets-10.1-cp38-cp38-musllinux_1_1_aarch64.whl (109.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

websockets-10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (106.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

websockets-10.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (110.3 kB view details)

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

websockets-10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (109.4 kB view details)

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

websockets-10.1-cp38-cp38-macosx_11_0_arm64.whl (96.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

websockets-10.1-cp38-cp38-macosx_10_9_x86_64.whl (96.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

websockets-10.1-cp38-cp38-macosx_10_9_universal2.whl (98.8 kB view details)

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

websockets-10.1-cp37-cp37m-win_amd64.whl (97.5 kB view details)

Uploaded CPython 3.7m Windows x86-64

websockets-10.1-cp37-cp37m-win32.whl (96.8 kB view details)

Uploaded CPython 3.7m Windows x86

websockets-10.1-cp37-cp37m-musllinux_1_1_x86_64.whl (110.3 kB view details)

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

websockets-10.1-cp37-cp37m-musllinux_1_1_i686.whl (109.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

websockets-10.1-cp37-cp37m-musllinux_1_1_aarch64.whl (110.5 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

websockets-10.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (105.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

websockets-10.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl (111.1 kB view details)

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

websockets-10.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl (110.3 kB view details)

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

websockets-10.1-cp37-cp37m-macosx_10_9_x86_64.whl (96.1 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: websockets-10.1.tar.gz
  • Upload date:
  • Size: 83.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1.tar.gz
Algorithm Hash digest
SHA256 181d2b25de5a437b36aefedaf006ecb6fa3aa1328ec0236cdde15f32f9d3ff6d
MD5 2fb7626dd49097a547cf3662a09006e0
BLAKE2b-256 6977591bbc51a5ed6a906a7813e60a9627f988f9546513fcf9d250eb31ec8689

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1dafe98698ece09b8ccba81b910643ff37198e43521d977be76caf37709cf62b
MD5 82030461409d12355151954e9b1d9082
BLAKE2b-256 e0a27cb9cfb4f201b91c2add7c5964136a58836baa3231d0367d1c93db667ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for websockets-10.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 baa83174390c0ff4fc1304fbe24393843ac7a08fdd59295759c4b439e06b1536
MD5 a9b187e20bf2e52ac86733b285a953d6
BLAKE2b-256 d86384a7f6da547f3fff7b9eb96087813bbc273f94901be7a5d5a71a826c22e5

See more details on using hashes here.

File details

Details for the file websockets-10.1-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.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 816ae7dac2c6522cfa620947ead0ca95ac654916eebf515c94d7c28de5601a6e
MD5 70bcb22e1e74cd35aaffb5f2e550f72e
BLAKE2b-256 ce62fd0a9a35de987ac25d62bc78f8bf1fa72842de2cd8bd17f3a580104b7bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for websockets-10.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 483edee5abed738a0b6a908025be47f33634c2ad8e737edd03ffa895bd600909
MD5 9ae8ba000a62a133201b1870778a61f5
BLAKE2b-256 05de8c91177bdd1ea01d7e55d6f6f9e163586e4a08b4cbbabbba32bfa94af1f3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.0 kB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10edd9d7d3581cfb9ff544ac09fc98cab7ee8f26778a5a8b2d5fd4b0684c5ba5
MD5 469cde7a455e8554430145e454d97587
BLAKE2b-256 2811d2f6a370409de7e3450ea20688ac0617de5c007112e8a3cc122e53a543cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 97.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b68b6caecb9a0c6db537aa79750d1b592a841e4f1a380c6196091e65b2ad35f9
MD5 23375ea30ab00143870c7e64170bcd8d
BLAKE2b-256 cb43f8ba4167640b716a6a04f793f15296e48f0295756d28902d05c2bdc0671f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 96.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d0d81b46a5c87d443e40ce2272436da8e6092aa91f5fbeb60d1be9f11eff5b4c
MD5 250887eecab48bd3b9c6336ae594dcee
BLAKE2b-256 552d0596f3512452ea583c35a8f04bec64903540b81e9745c54264f37a262515

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 109.7 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 468f0031fdbf4d643f89403a66383247eb82803430b14fa27ce2d44d2662ca37
MD5 6929f80fd40f4b5845f3c49e35d96b4a
BLAKE2b-256 d583214361421ed3fc77dda83e4dddd8d7c290512c22a5ee5af887bba5824140

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp310-cp310-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 109.1 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 667c41351a6d8a34b53857ceb8343a45c85d438ee4fd835c279591db8aeb85be
MD5 fd1cc86b268bfba3a96205cb0336a086
BLAKE2b-256 c062fe56120b62991c147c1da2f69847a1a26e99a1f264ddb42dfe9ac66be018

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 109.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5560558b0dace8312c46aa8915da977db02738ac8ecffbc61acfbfe103e10155
MD5 57119ffc86870ba4afa4372b0b0fcc7e
BLAKE2b-256 0ff8767082ac41e21adac985c7fc16b29163c653d68724d659999488a934181f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for websockets-10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb01ea7b5f52e7125bdc3c5807aeaa2d08a0553979cf2d96a8b7803ea33e15e7
MD5 8958339e248be1c697390cbb535e358b
BLAKE2b-256 56f3056802e202420e9511f4a3a590eefe379d657d1f6370e3c69b4166159f44

See more details on using hashes here.

File details

Details for the file websockets-10.1-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.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3bbf080f3892ba1dc8838786ec02899516a9d227abe14a80ef6fd17d4fb57127
MD5 7df49f3be6de07ed7a300c53eeca61f2
BLAKE2b-256 018f3d1cc1bc9b611143142f18195960f583c78b4f7378b530d7e3b465d85c73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for websockets-10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9fd62c6dc83d5d35fb6a84ff82ec69df8f4657fff05f9cd6c7d9bec0dd57f0f6
MD5 c2febb6f77b5c1a20dfced25faeecdb2
BLAKE2b-256 e4d9e605c1e5b6b588936b74fa1cac0b7cf1193b10baffa0c1595662cb5216b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 96.2 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3477146d1f87ead8df0f27e8960249f5248dceb7c2741e8bbec9aa5338d0c053
MD5 5a495db089ae7900fcbd937156b99303
BLAKE2b-256 97f19d432335a5133373f87b50bc315802f6800665045a0fde32190cc84d6d5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.2 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e1b60fd297adb9fc78375778a5220da7f07bf54d2a33ac781319650413fc6a60
MD5 06ae5cc04b5161c8aaa0baf3b0f8a45c
BLAKE2b-256 f10258a8df47a0db00553259bf87c6f8cbfebe5defd90dbe359970ce18229ca4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp310-cp310-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 98.9 kB
  • Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 38db6e2163b021642d0a43200ee2dec8f4980bdbda96db54fde72b283b54cbfc
MD5 cb52e6965a58138890a29b3fcfff4900
BLAKE2b-256 1af8a75e1dc628a01a73317d7c0580223e298feb4ab14522f980d3eebd32a6c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 882c0b8bdff3bf1bd7f024ce17c6b8006042ec4cceba95cf15df57e57efa471c
MD5 2b821ef5dafb162b35309cd509b582e0
BLAKE2b-256 435fb237bebc4c483a17c2a2104fdcc2ed4322ac7fcb067917714b366480ce56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 96.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d9b245db5a7e64c95816e27d72830e51411c4609c05673d1ae81eb5d23b0be54
MD5 fb5e19fbb8eab046e86ea412e3ed8751
BLAKE2b-256 689073fc4d024f35057dc4cbfb46f0703e3afa5cd55f2533bb66a8338f326737

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 109.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d93b7cadc761347d98da12ec1930b5c71b2096f1ceed213973e3cda23fead9c
MD5 1704096b9c1e9bcdd79fd899ddea5d99
BLAKE2b-256 07c721d632039a17c4afde555473c04bff6fd3a88a24269a6374589f8d15a0db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 108.8 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 531d8eb013a9bc6b3ad101588182aa9b6dd994b190c56df07f0d84a02b85d530
MD5 7cf92e60b4a0151174098c107a871150
BLAKE2b-256 711f673f3ac7ace63b45b419925ebd13dca940cc40e9c31324709bb0b1d7353e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 109.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6fdec1a0b3e5630c58e3d8704d2011c678929fce90b40908c97dfc47de8dca72
MD5 4228e8c76b0774cd057d9b39d324919e
BLAKE2b-256 c7347de70125a2c8e0f6ac04835d5573554cb34a71ada405b05cb44b9696e30e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for websockets-10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05e7f098c76b0a4743716590bb8f9706de19f1ef5148d61d0cf76495ec3edb9c
MD5 ccdbf5d82866ff256e7f436f5faeac36
BLAKE2b-256 0540735d7bfe28ca48a716c3ab1176154246f983ff549490f85a4e0dce030f1e

See more details on using hashes here.

File details

Details for the file websockets-10.1-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.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 888a5fa2a677e0c2b944f9826c756475980f1b276b6302e606f5c4ff5635be9e
MD5 f77826443da0da4ce87710aa1fc358ee
BLAKE2b-256 f8ad97acfaccdc96c0305337164d47d34478c377549d53c1e8a67459f0bbe56d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for websockets-10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5bb6256de5a4fb1d42b3747b4e2268706c92965d75d0425be97186615bf2f24f
MD5 7215b4ea1e23a971cf3e966fbbe6012c
BLAKE2b-256 ca299cdafe3779b2793b33c6a35fc0a95b89800c9915fbe285097f6e68e9f1cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 96.2 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4819c6fb4f336fd5388372cb556b1f3a165f3f68e66913d1a2fc1de55dc6f58
MD5 66f01f5088b9d7fdbdb04756b23ec389
BLAKE2b-256 4521cf8eab8fc5e7a337a00130101579e5e26928ba49e7991b57411a73ef14e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.2 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 14e9cf68a08d1a5d42109549201aefba473b1d925d233ae19035c876dd845da9
MD5 8e3caa00b6c802573dd35a40a19d96b8
BLAKE2b-256 b35f786c0d3007f0141b3a2e472910aadd040a4b76f5a07ae983debfb2983d7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 98.8 kB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ddab2dc69ee5ae27c74dbfe9d7bb6fee260826c136dca257faa1a41d1db61a89
MD5 92fdaac1c243e6d0eab5c45af692dfbd
BLAKE2b-256 506d6728d41f21cb1a46a3896f3b368f6f1e73a997f2ebcf9b1913b4f40e74c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7d6673b2753f9c5377868a53445d0c321ef41ff3c8e3b6d57868e72054bfce5f
MD5 170154895c7fe661805212552f408ff9
BLAKE2b-256 4519fd181b8f76311934167512abe296f2bf030e6f078737550b7f5061fb7d05

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 96.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3a02ab91d84d9056a9ee833c254895421a6333d7ae7fff94b5c68e4fa8095519
MD5 a71ba0df59daeada003375623f57116f
BLAKE2b-256 790894dce7204943f811e8a2856b9e89e6897879bd9ff70e0df91fe2ec74ede2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp38-cp38-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 109.5 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 98de71f86bdb29430fd7ba9997f47a6b10866800e3ea577598a786a785701bb0
MD5 7cd90ba74d1bc8cf647714234bfa76ea
BLAKE2b-256 038f0a7508de475edbf8837287baef4af3a238dbb5a991db96fa0554198b6065

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 108.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6b014875fae19577a392372075e937ebfebf53fd57f613df07b35ab210f31534
MD5 cdc26bc527209945f24a275008cc639d
BLAKE2b-256 269e294b533899b07530a4dc865754d12b1fd9b62b85312072c7576bd2dbcda6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp38-cp38-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 109.7 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e259be0863770cb91b1a6ccf6907f1ac2f07eff0b7f01c249ed751865a70cb0d
MD5 7e003f3e72aecee38fc3623fa3d363a9
BLAKE2b-256 2786670dfb382866e3c85f1009d3126b59c04a42a20507c03a5ca1aeab1ebba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for websockets-10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c9407719f42cb77049975410490c58a705da6af541adb64716573e550e5c9db
MD5 adefe266d4397ffbfce88376f9b4e422
BLAKE2b-256 7ff24e84569fc12df22d395fcfc7e981ed67e09f37bd7df2bec0682e950715fe

See more details on using hashes here.

File details

Details for the file websockets-10.1-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.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7bdd3d26315db0a9cf8a0af30ca95e0aa342eda9c1377b722e71ccd86bc5d1dd
MD5 71a85e51b3a32c61e66c234a43ccf6b1
BLAKE2b-256 8f43cf737c90e8a32b4fbc12f69f8dd4f9c736205c8de0e5dcaa650cb009bafc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for websockets-10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1d858fb31e5ac992a2cdf17e874c95f8a5b1e917e1fb6b45ad85da30734b223f
MD5 dfe6612d2529311622c31c8f35afd4f2
BLAKE2b-256 791d81c6407272a90ced6c1d04e3c0a30e76616ff7bc2f4c9f148f8d61f48d0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 96.2 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97b4b68a2ddaf5c4707ae79c110bfd874c5be3c6ac49261160fb243fa45d8bbb
MD5 b1876e762dbd4f716ec4e1bb6babb1d6
BLAKE2b-256 320a02ad45a26722d67fb45371f071df342b2ce93c9146a57adeb96f51aad871

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cfae282c2aa7f0c4be45df65c248481f3509f8c40ca8b15ed96c35668ae0ff69
MD5 dba5f7ca0b53b56768d3083dcdc31db3
BLAKE2b-256 46209c654209dfa0ef7d5ee7b4c5acb2bdff7f12301ebd3fe71795e1260f99f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 98.8 kB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 002071169d2e44ce8eb9e5ebac9fbce142ba4b5146eef1cfb16b177a27662657
MD5 c774ac484044a561df19a50cb9ae4851
BLAKE2b-256 9eb5e8a2e9e3aafdb03cd52c07199c551115b963fdca96f1231683be086b4743

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 97.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 89e985d40d407545d5f5e2e58e1fdf19a22bd2d8cd54d20a882e29f97e930a0a
MD5 2ea0a9c0317860bbc5cdc06b5b0d4b62
BLAKE2b-256 22d7e049472bdde709a1d90ddc7404d229195855b1d44725bc97f49a26d38820

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 96.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 3ef6f73854cded34e78390dbdf40dfdcf0b89b55c0e282468ef92646fce8d13a
MD5 9ed0fb9b8869ceb34a015be44dde2b8f
BLAKE2b-256 565616bc4c4a52b11bdcd287db9af006eab017b9dc7c363ebdf010958b080a71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp37-cp37m-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 110.3 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 08a42856158307e231b199671c4fce52df5786dd3d703f36b5d8ac76b206c485
MD5 766864396075f3100f595b1b5f7b29d6
BLAKE2b-256 7e59d838b4880bf84c93c8262e874a7ad7a280798a13bf1eb8a2e89e6a9911ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp37-cp37m-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 109.7 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 189ed478395967d6a98bb293abf04e8815349e17456a0a15511f1088b6cb26e4
MD5 623b394f177a7b5c6a4f012cd15cbc4f
BLAKE2b-256 e4b104c08d6ba819a3864970301c49d2beb08565045fbf3aa85926df397570ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp37-cp37m-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 110.5 kB
  • Tags: CPython 3.7m, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9f304a22ece735a3da8a51309bc2c010e23961a8f675fae46fdf62541ed62123
MD5 4f25cdf017c0903c8ab6ca53907fdae6
BLAKE2b-256 c7e5e70f74ead63c51daef2c5a3f71107bf306dcf6363c2473249b5190ac0b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for websockets-10.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8877861e3dee38c8d302eee0d5dbefa6663de3b46dc6a888f70cd7e82562d1f7
MD5 6f6e380bfd821eebfe76bdb9f9649844
BLAKE2b-256 4629d3149fad6c8f74385eb3671f2439ff8d45a736a5365b02921bdece8aa3b1

See more details on using hashes here.

File details

Details for the file websockets-10.1-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.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b66e6d514f12c28d7a2d80bb2a48ef223342e99c449782d9831b0d29a9e88a17
MD5 339b7592922a322d029c02624e85649a
BLAKE2b-256 d57ecd3e43c7b6e6d32e303f0733c459e30376fd853bcf2ece0a029052d866a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for websockets-10.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e3872ae57acd4306ecf937d36177854e218e999af410a05c17168cd99676c512
MD5 97191d724756810783415d1333f85f95
BLAKE2b-256 b3ee296bd40dc0fcdb9bb5d623b35279c25a2f3738499ffe09e53d2aedabcbe4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: websockets-10.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 96.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.8

File hashes

Hashes for websockets-10.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a249139abc62ef333e9e85064c27fefb113b16ffc5686cefc315bdaef3eefbc8
MD5 f30ba7b644202eab2952a0e38d85f9e8
BLAKE2b-256 632bac947d5fd0f1041a41338095327e013fcffd78048810a748e5569fbc469f

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