Skip to main content

A Python library for connecting to Loxone Smart Home systems via WebSocket

Project description

Lox WebSocket Client

A Python client for connecting to Loxone Miniserver via WebSocket with optional encryption and token-based authentication.

Adapted from PyLoxone.

Features

  • Asynchronous WebSocket client (aiohttp)
  • Encrypted communication and secured commands
  • High-performance Cython parsers (auto-selected per CPU)
  • Token acquisition and refresh
  • Message and connection event callbacks

Installation

pip install loxwebsocket

Using uv:

uv add loxwebsocket

Quickstart

import asyncio
from loxwebsocket import LoxWs

async def main():
    ws = LoxWs()
    await ws.connect(
        user="your-username",
        password="your-password",
        loxone_url="http://miniserver-ip-or-host",
        receive_updates=True,
        max_reconnect_attempts=5,
    )
    # ...
    await ws.stop()

asyncio.run(main())

API Reference

loxwebsocket.LoxWs

Client that manages the WebSocket lifecycle, authentication, encryption, message parsing, and callbacks.

Constructor

LoxWs(version: float = 15.0)
  • version: Miniserver compatibility used for auth hashing selection.

Lifecycle

  • await connect(user: str, password: str, loxone_url: str, receive_updates: bool = True, max_reconnect_attempts: int = 0) -> None
    • Establishes the encrypted WebSocket connection, acquires/uses token, and (optionally) enables status updates.
  • await stop() -> None | int
    • Closes WebSocket and HTTP session. Returns -1 on error, otherwise None.
  • await http_ping() -> bool
    • Returns whether the Miniserver base URL is reachable (HTTP 200).

Note: The client performs automatic reconnection when the connection drops.

Sending commands

  • await send_websocket_command(device_uuid: str | bytes, value: str) -> None
    • Sends an immediate command, e.g. "jdev/sps/io//".
  • await send_websocket_command_to_visu_password_secured_control(device_uuid: str, value: str, visu_pw: str) -> None
    • Sends a command to a visualization-password protected control. The client requests the required salt/key and sends the queued command.

Advanced

  • await send_command(command: str) -> str | bytes
    • Low-level encrypted request/response helper for Loxone commands.

Subscriptions (callbacks)

Message callbacks receive parsed data and the numeric message type. Callbacks must be async callables.

async def on_value_update(data, message_type: int):
    ...

ws.add_message_callback(on_value_update, message_types=[2])
  • add_message_callback(callback: Callable[[Any, int], Awaitable[None]], message_types: list[int]) -> None
    • Registers a coroutine callback for the specified message types.
  • remove_message_callback(callback, message_types: list[int]) -> None
    • Unregisters a previously added callback.

Message types

  • 0: Control/text updates
  • 1: Binary payload (not parsed)
  • 2: Value updates (high-frequency)
  • 3: Text block updates
  • 6: Keepalive responses
  • 4, 5, 7: Other/unparsed

Connection events

Define async callbacks and subscribe to connection lifecycle events via add_event_callback.

from loxwebsocket import LoxWs

async def on_connected():
    ...

ws = LoxWs()
ws.add_event_callback(on_connected, event_types=[LoxWs.EventType.CONNECTED])

Event enum

  • EventType.ANY
  • EventType.INITIALIZED
  • EventType.CONNECTED
  • EventType.CONNECTION_CLOSED
  • EventType.RECONNECTED

API

  • add_event_callback(callback: Callable[[], Awaitable[None]], event_types: list[EventType]) -> None
    • Registers an event callback for selected events (or ANY).

loxwebsocket.LxToken

Container for token details used by the client. Typically managed internally.

Properties

  • token: str
  • valid_until: int (seconds since 2009-01-01 in Loxone epoch)
  • hash_alg: str (e.g., "SHA1" or "SHA256")
  • get_seconds_to_expire() -> int

Exceptions

  • loxwebsocket.exceptions.LoxoneException: Base package error
  • loxwebsocket.exceptions.LoxoneHTTPStatusError: Non-OK HTTP response from Miniserver
  • loxwebsocket.exceptions.LoxoneRequestError: Error during HTTP request

Performance notes

The client uses Cython-based parsers for high-rate value updates (message type 2). At import time, a CPU capability check selects an optimized or compatible parser.

Requirements

  • Python 3.10+
  • aiohttp
  • orjson
  • pycryptodome
  • py-cpuinfo

Development

git clone https://github.com/Jakob-Gliwa/loxwebsocket.git
cd loxwebsocket
pip install -e .[dev]
# or using uv
uv pip install -e .[dev]

License

MIT License – see LICENSE.

Contributing

Issues and PRs are welcome.

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

loxwebsocket-0.6.0.tar.gz (159.8 kB view details)

Uploaded Source

Built Distributions

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

loxwebsocket-0.6.0-cp314-cp314t-win_amd64.whl (207.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

loxwebsocket-0.6.0-cp314-cp314t-win32.whl (204.5 kB view details)

Uploaded CPython 3.14tWindows x86

loxwebsocket-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl (418.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

loxwebsocket-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl (216.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

loxwebsocket-0.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (221.7 kB view details)

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

loxwebsocket-0.6.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (422.8 kB view details)

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

loxwebsocket-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl (115.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

loxwebsocket-0.6.0-cp314-cp314t-macosx_10_15_x86_64.whl (207.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

loxwebsocket-0.6.0-cp314-cp314-win_amd64.whl (204.2 kB view details)

Uploaded CPython 3.14Windows x86-64

loxwebsocket-0.6.0-cp314-cp314-win32.whl (200.7 kB view details)

Uploaded CPython 3.14Windows x86

loxwebsocket-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (372.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

loxwebsocket-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (192.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

loxwebsocket-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (194.7 kB view details)

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

loxwebsocket-0.6.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (374.6 kB view details)

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

loxwebsocket-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (113.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

loxwebsocket-0.6.0-cp314-cp314-macosx_10_15_x86_64.whl (204.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

loxwebsocket-0.6.0-cp313-cp313-win_amd64.whl (200.2 kB view details)

Uploaded CPython 3.13Windows x86-64

loxwebsocket-0.6.0-cp313-cp313-win32.whl (196.7 kB view details)

Uploaded CPython 3.13Windows x86

loxwebsocket-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (371.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

loxwebsocket-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (190.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

loxwebsocket-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (193.5 kB view details)

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

loxwebsocket-0.6.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (373.6 kB view details)

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

loxwebsocket-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (112.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

loxwebsocket-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl (201.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

loxwebsocket-0.6.0-cp312-cp312-win_amd64.whl (200.3 kB view details)

Uploaded CPython 3.12Windows x86-64

loxwebsocket-0.6.0-cp312-cp312-win32.whl (196.8 kB view details)

Uploaded CPython 3.12Windows x86

loxwebsocket-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (373.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

loxwebsocket-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (191.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

loxwebsocket-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (194.7 kB view details)

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

loxwebsocket-0.6.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (376.6 kB view details)

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

loxwebsocket-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (112.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

loxwebsocket-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl (201.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

loxwebsocket-0.6.0-cp311-cp311-win_amd64.whl (199.8 kB view details)

Uploaded CPython 3.11Windows x86-64

loxwebsocket-0.6.0-cp311-cp311-win32.whl (195.8 kB view details)

Uploaded CPython 3.11Windows x86

loxwebsocket-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (358.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

loxwebsocket-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (185.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

loxwebsocket-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (187.7 kB view details)

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

loxwebsocket-0.6.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (360.4 kB view details)

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

loxwebsocket-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (111.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

loxwebsocket-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl (200.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

loxwebsocket-0.6.0-cp310-cp310-win_amd64.whl (199.6 kB view details)

Uploaded CPython 3.10Windows x86-64

loxwebsocket-0.6.0-cp310-cp310-win32.whl (195.8 kB view details)

Uploaded CPython 3.10Windows x86

loxwebsocket-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (348.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

loxwebsocket-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (181.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

loxwebsocket-0.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (183.6 kB view details)

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

loxwebsocket-0.6.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (350.8 kB view details)

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

loxwebsocket-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (111.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

loxwebsocket-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl (200.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file loxwebsocket-0.6.0.tar.gz.

File metadata

  • Download URL: loxwebsocket-0.6.0.tar.gz
  • Upload date:
  • Size: 159.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for loxwebsocket-0.6.0.tar.gz
Algorithm Hash digest
SHA256 7db41cacec4132161c259197dbd0dc0024ef3316f33bff2a63fa6421e5b73096
MD5 5ca86dd642a1e294176147b20e403812
BLAKE2b-256 93abdf38e2ce20e93192d00e47a2acaeaa62a2eb8e61ae754770bf6db543b477

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0.tar.gz:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a5cb8d6c4e21f57b2cf47c79fad289163b3105fad35d132fcd4e0c00580f2ef5
MD5 0fae7627fc21f71c1870ce8bb0102bdd
BLAKE2b-256 4cf4cc21cff54501feac37518a32301b8459a78287a84d54b7d1e02166eecf57

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314t-win_amd64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: loxwebsocket-0.6.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 204.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f58d9fba5f2a9ebe284750db7632f7368558fe374bbc3ed7f58bdd1ff8e75791
MD5 6b22943348df6fdc956095787c9c0ec2
BLAKE2b-256 cf76d05168760fdb228f672b12435c8cb97de5f144c886513cfc01c16fe42278

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314t-win32.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3dcd6e2400f4bbac4f3c3412b2a1b807c83711e6545d5f5ff654ba5bcfac29cf
MD5 26ee79a91bb3e2e3be72917950d05337
BLAKE2b-256 1e2509cf4c0b9b9ba4e03b3eeecd6bf047f106f4c5ac399c29f690d1d5a16300

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4c4ba4266326b0dd4f08c613986ca8c164b179cc420a88e514cadc493b7deeb9
MD5 617a14361d70be7705551806a595dbd7
BLAKE2b-256 a98067c15654f1940ec58cfce4edb32e49872769b3a49319e24e20cc91447923

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d33044c1a6f07083d8a0cb7a6942b7b630a41a49dd934e8f7ce4d3d1a0c67be8
MD5 9f1c27b85112b5a3d84a971390fe4f0a
BLAKE2b-256 ddf2a857c5fffe9be1fcec7382ded99f37c479626dbfe9d58d2d5f0a9a134c71

See more details on using hashes here.

Provenance

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

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ae8697dbae7b450489ae0e8e1af80187cbfcea89230118ffc6b12f6dc1eedf8d
MD5 49f3b4030bb74458beed8c6f4116c290
BLAKE2b-256 f5b6be8c06f5a18c2ec2a035dc21d211e077d83a2bb9bc269ed0a16ca9324936

See more details on using hashes here.

Provenance

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

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b3a135a4f2b7a5cd37481000b674f5047674e53324b3f9051d4c815e9c1392a
MD5 1e77a75c72656430d046676e43179b33
BLAKE2b-256 07809037542b31ba952276da8dbd7d8ef4ea542112028bfb87c73a9cb478a927

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4ec44a21a39a1af197591fcfecb1c972bad531af636701afeb487aef7a279182
MD5 83aa483dd94d8945f5fb31b08bda0019
BLAKE2b-256 33e3d91086ca57b743dfc854c5038843cbd73b6f403d4830eac3540efad2d5dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 15d2007e8919e08dc4e10eb7ca0fa4b8e87c6e35c5f5ad216b0f5f8cb1f2e374
MD5 c20b09d04f0a488d437b2e5d9ed18d97
BLAKE2b-256 488c161485caab0f059383c8f0c17220c9c93a499d284dc83335c0f387afe96d

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314-win_amd64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: loxwebsocket-0.6.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 200.7 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a52c4bdfb4a45a589817cda51f03766d4dc7dba44c37a11f2271a921d5b47602
MD5 544cf39ad2690e0458cfd16f1763bceb
BLAKE2b-256 79fef6e31dcea20861b7700332771fb5a4004ae856f6b07d6824aaca016d3f13

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314-win32.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ca344f7e06f565bb07362805320f60645e2354ac47bd437d8924d53cb3f16ec
MD5 cc2aa3ae259b5037eefa0adae1a1da06
BLAKE2b-256 915a030c270bf7e9c9d474a41efd715bedf3f71a59f78f723c4c1529ce5e6c99

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b883dd09b1ae4fdf23f092adfef80f00f9e883d94ddbe018ebe9bd62856dcc19
MD5 4871335191bb9d7b8053ddbcfbd8c766
BLAKE2b-256 78a593c06991379b2d44b365d00b1643a5a9ef959725825ad7892485f3a474f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2f5bb142e09e83567ffe155699ac78417da45ef7b5238dfd1110c6a161ad349b
MD5 0c23e69fca2206ce7dfcc9292c13c4f0
BLAKE2b-256 c34dbb7149dd9b40e972d8478e25ad4e1c344d92d1d82717da011622664ab8aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f7adca0a4447f3e9b4ae53132c06cef68a43d7535d42df8c928cdac4f4723228
MD5 ccff76dc5fb936708a5d8a9519dffd23
BLAKE2b-256 1a1b174a34913184090c9e047d6d6a7da8d4cf4484ef0c90bd573a9671fd5938

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9748e84f6eb440642c026290454138b55593116c503599ba0d576a8b40f1536a
MD5 6912711d7eeff723c6308b2c3d7fd15d
BLAKE2b-256 70ae14ad33616c2c1c352ee6329a6d8f23c8bbf492ae54127ede8434fca99074

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dd88212a64fed000e393d058e3b3107b57d1e264f215ee46e7af75fb4441b3cd
MD5 87188861915d69c818aa3894ec229d2e
BLAKE2b-256 28704d1d0d7206ba39ed749a9eb07e09a148ae8d245cb6091186ac41978f50d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 bd5248801853f972716d8f65fa12a07651868707c6d039306eb660a8eba6e104
MD5 55d363472256829fce1fa7d86ea15df4
BLAKE2b-256 5decc3fa0e743ed499ae9e4cc42d18cadf6998145eca79fd0ee6b66e556ab58b

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp313-cp313-win_amd64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: loxwebsocket-0.6.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 196.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for loxwebsocket-0.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 37e093d9f41bb7f4ee36771f40790d5769afdc198563d809dad39a50cb76df22
MD5 99d92fdb09d27e044ce920a282118a43
BLAKE2b-256 1d26d376adea825340d85233890ad73a593eefd6efb5c908759453b32b0ea992

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp313-cp313-win32.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ffa56bd9c25e5ae0b2f9506de58045b84d42a32c047748b84b56774a9d3acc05
MD5 6405a144aec998353426fb6ba4b9ca87
BLAKE2b-256 3917840bfb1d20882dfaf66945472a164533bb94031265348a25eccaccc2f002

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 44e1bb0bb971f8ba281adcce14d498da2945415ed9b002fd2fc222953dcd1990
MD5 d97c6a1e4bfbc5e063ac3575133cf928
BLAKE2b-256 5a2b85bd2895b826ab8cd1320d559ecb41f5add894fc797f8ca6879c65112f52

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8aefa736b71b1d32d4bd25af79108ba3a92564bdf2b733015d612109a0b4adfc
MD5 22633951c2569fecc7ee1fcbfa09b1b4
BLAKE2b-256 bb6dd7148903eed446514b8dc764e1d1e20f74dd0073571264c8515cb3978311

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1f139e4715cb05dfb9e4f06b219830546ed60f503425f4751195839183b94d43
MD5 2339ca98277fcd8dbf25a1f4092eb244
BLAKE2b-256 710814bb18e088b51c337ea8c0ccc51a3e5395f7b864e9fd5892b4160d71276d

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 001ea696f344e6573bd49a69f0e21f0552db0730fccac1f29e5349506731797f
MD5 baffc7e8ef8855d5d954b9489dd662c3
BLAKE2b-256 139f6c32ff8f265c10187dc8e05025fdf377a3b1a61caece6c9fbe3ba9b2c9fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b6ebc6603d5ed9bc6b267da8f0c54697764d3eb60fd01f4f2301e5b8a7c91843
MD5 85441f153e4e13b6dabcba2cd0ff49e4
BLAKE2b-256 bbb9bbdbdca9bfffcb7cf0270b69503fc9fb14269d73131c84aac9fa0c7528e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1177c3a74d776a3fabfd346b51b8dab0745025bc9000c64b83c8e68659e8f69c
MD5 f4c99924b2e841312578d67376904c92
BLAKE2b-256 f1a14c1c5b30e1e64fe309ba809c5b99f8440ca48f0fc04cfd4b0f6f6f5c86d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp312-cp312-win_amd64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: loxwebsocket-0.6.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 196.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for loxwebsocket-0.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6e0234e578acc4bbf76c7abd046ebe7031ff69fd1b8cd679c0fc313665a4073f
MD5 26584bb207f6d656b914b340518aa247
BLAKE2b-256 8b1c6eb5a54e50bd43bd6caa6356a0a74670fa6cf28a0e29a1c7837e59082860

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp312-cp312-win32.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ca1e129107c92cbe1f30240ab4c120ccf9b6651419802900d61270616d76a47d
MD5 77c17b707b44256e24e54a34f5252acd
BLAKE2b-256 321ca07600f07f6cacbbf1ea607b0dbbe5916693d0343125a8cbc4357e50e203

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08857bfe05136136847cffa2879c556f549b6fd9f978a7205b4361c8378a3b6b
MD5 8adf9b828d17adbf6a1065aae29b0362
BLAKE2b-256 cbbc3a458c8cb2eac647e16709e63b1ab7fd6ac19c3a726df9b92a0b545b7dbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2e176982d5a967084380dc92717cb9618a99a4bf8c98e79bea0eb2bbf4e473ce
MD5 4b66846614cbb54082491d1c9a99a836
BLAKE2b-256 330b8b59886f2645b1d7998153b3927b68dcb9801d441bcbda1afcd40c6fda51

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1a9d17cbfb384c27864456995c410829b292962f5cb42081354730938547dcc8
MD5 7bf6f42eda31184c580e53208cbdb53a
BLAKE2b-256 3f23423c95d6e33b57e09ac792ef42f2a7f003c4d46003705785fb18a90886d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdac56476af1deda8ed8fdeef94cd8b49065a3da8e638a2460d4fc7677d26b17
MD5 2516c8bac149421b2b2df2c7d59ecf96
BLAKE2b-256 1c747b859672933e889badf2460d66cc3c5883cf188041486983608b5edd04ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 19b9cc785eb35d61e7ec59aa6d36890bdfab4b48125551fec2e2e4dd5c456a66
MD5 c487423ad74b9c45c0041387af3a93c2
BLAKE2b-256 c273a9107040edcf8560e979c8793a98939605faae89f4403b253b61fc4cfc9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a2ecf9738d96ebb3d9b5a35bcbffef41d163e7188ca72c4d324cdb9edf4a1ac5
MD5 cbe90920d0014c614577592cecdaa582
BLAKE2b-256 d7d8ac48d14d25ebda9dfb9a652827f001092b039b70653a724614951136ba9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp311-cp311-win_amd64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: loxwebsocket-0.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 195.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for loxwebsocket-0.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 46157c2d8df2718965efe1634d00333fab29c012ee48fb317ed52c9fa2d44fca
MD5 2b08fa8338c902af32118257a7d400d2
BLAKE2b-256 51f7b141f2ece146a11ea95dd09bab84b71637c9b961997a1df74e35d4ace6b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp311-cp311-win32.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e744c0bb4b1448ee2327dfd7b0bf4c1c52fdfaa507a89ab6a03d3c1c4b0627e
MD5 d2cbec69edeaf2788fd173257cc96a94
BLAKE2b-256 88caed0edecbda83bd6c92f83d219e4ab4bd80d0fd5a258da68305ab46fce25f

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb9f8dff0c8f59b80d8041365366bd76f88737fbd75c9e53da022cc07e793f4c
MD5 7b531ecce127d5d511c2d82b652cd3a1
BLAKE2b-256 8dd47e2eabe16d17c4a0cc415ad6d302a769aa9db2123359b9cf36fa20947655

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8ba037ac70684e44036905992feb9fa8269cdb8245115941d985b4fd3080b89
MD5 821c5a7f58a719423679e50aa8b97784
BLAKE2b-256 04395345b7d8c51b135fa897c37a1435cdf8270540b2d98262ac0277e049ad6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a32c888b0b418f8fc5451ef8f4aa02504d38375563147bb0ae15eb89c8c411dc
MD5 092090eadbbeed26a5ac3b9d45e8ddcf
BLAKE2b-256 f6fbcb307d4cb8dbb813ce7be04d932e34ccca66f10997050aabc7f277f5696f

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39a7308e83daccc6244dfbebb14c500cb0bffa52a429c6e4a0024aa1dd436bb8
MD5 95d7325accf5660b31af09425d58a778
BLAKE2b-256 2d4b4535709dc966aa470cd02641c223c502dd723b9bee68f3997364b1a380e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b6a2c967d4ec2d198f19290578f775b17f6642147b7f31c29c1a0c9fedd465e
MD5 cc00764993959f84a3b2e808646cacac
BLAKE2b-256 64b4e400a16f154529b6a72c827f01f6ca136eaefeb71a36f2fcd63b96c13f9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0b2aa73d89d25ae6f5e58faec3406e2a57d3f89f0be4f885e47ae1a0e7b61eaa
MD5 6aec4c92e03f2893ffa489f40dcff257
BLAKE2b-256 816c95d989bb6b664b3d0a1c6f81d91e2f8975aaa9359ec431fed57601a9ccdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp310-cp310-win_amd64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: loxwebsocket-0.6.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 195.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for loxwebsocket-0.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 31ea6e148ff9df342e3790a1f11c461765a549e4a7e184acad776845d3818c3b
MD5 d401478e8b06bdca8a78ace149a23378
BLAKE2b-256 4d18b011dd66581999ccb6d9c0590b41d704b4d88d82eb60c076b41988fb476f

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp310-cp310-win32.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e7cae7ce55186ecd7bbf134c27e9765b13e45438b7dc340b3260c5b07093f8b
MD5 43c755b40496f31cecbbd333b7164f4d
BLAKE2b-256 ff8a7a2c09b0af72809b6e64e2a5879c038c00793294899a760cf586db333fb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c44a36e6ee77692c6dc88a61d2dbc798aaeea04a5c350d1658ac0b8d87a6d2bb
MD5 2c422b83106e9b4ffc45a1aa019c33fa
BLAKE2b-256 358c175f8115210cf1b8c9cb0c35b63fb90bcde7be89523fd30812f87d81d77e

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 642f9c8d69e06246ccb2c0df2edf257cfd5ca735639311855b486f7af61b43ff
MD5 54fef80f908f8b7da8e062240ce72e63
BLAKE2b-256 1b3f34fe0375d0f25a1b297ba0785f893d6a0acd0b6359fe55a3cdf25ef90b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e0e8235e95c4166c3f364cf91d08c175466cb9399be9d88158b0230177c52721
MD5 248d2e845f2e9a042d93138b8843503c
BLAKE2b-256 aa475adb78098ed9ba3b47f6e0d3eda99579012450ab54fc00716e7838a4e465

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1f8f02cf93ad5192d008b759df0bb20f73e9ad6f1ee5eaee37303d7350271b7
MD5 20896758616806b4ef423e12c9ed84af
BLAKE2b-256 b30122ac122db10e637da304d596aa0de7513344cd0397b978cec359ca970756

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

File details

Details for the file loxwebsocket-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8135ea4ae6e32cd848d7864dbc38828f192f4ba4da51d09f7918c5fea41b3a2e
MD5 8a67ee8ac1921f0a641d1a11517b70d1
BLAKE2b-256 61d380a7ce04cb44dba1a2b41e28649c8cd5e6a23115f4215710e641395978c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: python-publish.yml on Jakob-Gliwa/loxwebsocket

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

Supported by

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