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.8+
  • aiohttp
  • orjson
  • pycryptodome
  • construct

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.5.2.tar.gz (152.3 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.5.2-cp314-cp314t-win_amd64.whl (204.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

loxwebsocket-0.5.2-cp314-cp314t-win32.whl (198.8 kB view details)

Uploaded CPython 3.14tWindows x86

loxwebsocket-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl (398.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

loxwebsocket-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl (272.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

loxwebsocket-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (275.8 kB view details)

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

loxwebsocket-0.5.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (400.2 kB view details)

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

loxwebsocket-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl (108.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

loxwebsocket-0.5.2-cp314-cp314t-macosx_10_15_x86_64.whl (198.9 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

loxwebsocket-0.5.2-cp314-cp314-win_amd64.whl (197.9 kB view details)

Uploaded CPython 3.14Windows x86-64

loxwebsocket-0.5.2-cp314-cp314-win32.whl (193.9 kB view details)

Uploaded CPython 3.14Windows x86

loxwebsocket-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl (355.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

loxwebsocket-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl (249.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (250.5 kB view details)

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

loxwebsocket-0.5.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (354.7 kB view details)

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

loxwebsocket-0.5.2-cp314-cp314-macosx_11_0_arm64.whl (106.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

loxwebsocket-0.5.2-cp314-cp314-macosx_10_15_x86_64.whl (195.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

loxwebsocket-0.5.2-cp313-cp313-win_amd64.whl (193.9 kB view details)

Uploaded CPython 3.13Windows x86-64

loxwebsocket-0.5.2-cp313-cp313-win32.whl (190.0 kB view details)

Uploaded CPython 3.13Windows x86

loxwebsocket-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl (353.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

loxwebsocket-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl (248.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (250.7 kB view details)

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

loxwebsocket-0.5.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (356.2 kB view details)

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

loxwebsocket-0.5.2-cp313-cp313-macosx_11_0_arm64.whl (105.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

loxwebsocket-0.5.2-cp313-cp313-macosx_10_13_x86_64.whl (192.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

loxwebsocket-0.5.2-cp312-cp312-win_amd64.whl (193.9 kB view details)

Uploaded CPython 3.12Windows x86-64

loxwebsocket-0.5.2-cp312-cp312-win32.whl (190.1 kB view details)

Uploaded CPython 3.12Windows x86

loxwebsocket-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl (354.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

loxwebsocket-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl (248.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (251.3 kB view details)

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

loxwebsocket-0.5.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (357.6 kB view details)

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

loxwebsocket-0.5.2-cp312-cp312-macosx_11_0_arm64.whl (105.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

loxwebsocket-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl (192.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

loxwebsocket-0.5.2-cp311-cp311-win_amd64.whl (193.0 kB view details)

Uploaded CPython 3.11Windows x86-64

loxwebsocket-0.5.2-cp311-cp311-win32.whl (189.1 kB view details)

Uploaded CPython 3.11Windows x86

loxwebsocket-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl (341.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

loxwebsocket-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl (242.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (244.3 kB view details)

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

loxwebsocket-0.5.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (343.3 kB view details)

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

loxwebsocket-0.5.2-cp311-cp311-macosx_11_0_arm64.whl (104.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

loxwebsocket-0.5.2-cp311-cp311-macosx_10_9_x86_64.whl (192.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

loxwebsocket-0.5.2-cp310-cp310-win_amd64.whl (192.8 kB view details)

Uploaded CPython 3.10Windows x86-64

loxwebsocket-0.5.2-cp310-cp310-win32.whl (189.1 kB view details)

Uploaded CPython 3.10Windows x86

loxwebsocket-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl (331.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

loxwebsocket-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl (237.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (240.2 kB view details)

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

loxwebsocket-0.5.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (333.8 kB view details)

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

loxwebsocket-0.5.2-cp310-cp310-macosx_11_0_arm64.whl (105.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

loxwebsocket-0.5.2-cp310-cp310-macosx_10_9_x86_64.whl (192.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

loxwebsocket-0.5.2-cp39-cp39-win_amd64.whl (193.0 kB view details)

Uploaded CPython 3.9Windows x86-64

loxwebsocket-0.5.2-cp39-cp39-win32.whl (189.3 kB view details)

Uploaded CPython 3.9Windows x86

loxwebsocket-0.5.2-cp39-cp39-musllinux_1_2_x86_64.whl (331.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

loxwebsocket-0.5.2-cp39-cp39-musllinux_1_2_aarch64.whl (237.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (240.0 kB view details)

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

loxwebsocket-0.5.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (333.6 kB view details)

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

loxwebsocket-0.5.2-cp39-cp39-macosx_11_0_arm64.whl (105.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

loxwebsocket-0.5.2-cp39-cp39-macosx_10_9_x86_64.whl (192.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for loxwebsocket-0.5.2.tar.gz
Algorithm Hash digest
SHA256 e303029f939cfa4b18bb64efaf632e8116fe821932b07f4ad224c57b5278e7bc
MD5 114adf860e72ac401b17cf3c06491b46
BLAKE2b-256 293d417a3aa1fa9e68de396af2b145d03e06f489db8bdf125fb6c46e86b3e2fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2.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.5.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a16fe09dcf53e7ca864ad22ea00abacd4d179427bb177c17cd900cf06f31c441
MD5 a44fc5e9e7c63f92247b8d8e8bd00303
BLAKE2b-256 9fe9612da7e803a502a2cff6298fc2aabd2333671e3868c5512a6933228baf4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 017877eb60aa1e33ab786882b7b9b33f845e1015ea35b94b237dbba1ea3958eb
MD5 0de5175a392705872e57d49bd7f7089b
BLAKE2b-256 edba415ccd07c3cd7f6d17376612a1d394ad965554c80f98bd390434707f0551

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccde12c2f5d15c0e34f73d792abc5c501d21c2094bed252d587e7fa80d8f24e3
MD5 9a5c031f4c7c65b70b0cc495ec32b56b
BLAKE2b-256 220b4a0ef20f1221aef3ea2abdc40e2f4860c96487ba0a3b09183e1456c2cbe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 210550f125f88270bd1b74de269d40311023684a1d25a9c138a38bdfd6ebb8e0
MD5 5b3bd40c24cabd48859ccd27a3012019
BLAKE2b-256 2cb12672db87da4855089cf4c244ce46dbb1ab767c6ab9dab7d2c3c9c2115325

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b9253fbaa6627be54a6bcf0e48a47a1be3ffed7665b101cca317cf7f390cb63
MD5 db63905af466147a66368a96a7410602
BLAKE2b-256 4cc2510a5fa97b97b2a50cb077afc379ba8c675285c3bb10d62b187f2a0e7a8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 42e7f7f1bd6b76139b822c5499d0f9e123b35a7e9a959b2e9d09a0daf9963fd8
MD5 ec2cc0b8da5317adac75f49e816f4505
BLAKE2b-256 d25afffaa5bf0cc8fb8d5980a387dd093d46469cf254c86a294b24120fe4c01f

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed8da13336553cca13f444a3a5ef7b07dbe50e6a07e1e39174dc40f648413ec7
MD5 e8b99635aed16740529a9779e4c53ec0
BLAKE2b-256 96c77d5fe8b0fb695ca5d9e2897a0255a3d0f4349bcc8b522525a21a4e12ac70

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 62db123385313726c97eb4fd04a55e1b6f8d3c50578c83ea821fee1e262a69eb
MD5 298ad5e5e914dd35e404ed90dcfd6ece
BLAKE2b-256 72e2009cac0768faf684f83e092cb7df50cbe029122c1162b770030611464c95

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d07c1621b74a31d42ffcbc7519abb9c5953c00d18d95448c17745aa25079eac3
MD5 4000aa1ce186bdd833594fe4524e1d0f
BLAKE2b-256 946f69a71aa5da096ca5b1d86abbd3cd66d1cf561a31b89d68f93565d034411d

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 118bc54bb7f64fad99ee48725c137a44446b36bdf0c036730472cf34c2438a49
MD5 c7f7f8a0b0790a8a5db99cfc569f4822
BLAKE2b-256 1fd20c56aa6108893231d8e1581a9bf3559f6619660982126bd0fd4e0be9c669

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 924fddc0f8939b9051199a1cbed22f71029c74f99211b2b452093278b70f9305
MD5 8c09b23bf37c1600ba3c6aeb06e67796
BLAKE2b-256 3df7f66fb24cbad47fd9900af0c1206923f992ce0dab11e2334111978b49708b

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ba0472fd8dc580cd40b384940fa6b1cece6c49ae6380d6b038b9b1fffde5f45
MD5 b7832bcd19a2ceb6f870c720e7960f42
BLAKE2b-256 1a57a67fc859408bb21630decad7127fcb0a2c80f7e449f3440c6c0c1ac976f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c20435876b75998f7acde67fd5d06a825b5650d6b2cd2e826be0b86629300191
MD5 514bc38b7204e59a9fe4fe0d6d9dcc23
BLAKE2b-256 7455d34b51bbca3f7dfc61ea2d17b0172b4c487e626fd20b55579f9613e67a6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 37a3b5b3621f0b65baac14b69c51fd502d3862375b633d327a6af9563843a5d8
MD5 bd4c9486930d5188c0a06d66fefc56ca
BLAKE2b-256 af746e38111fd00647aa4c157d14993228eeee015048be866fc792290939baf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df56d5983b9325d8c42f58659c21b75cf88f6fd443841451ce92fd5193211a8d
MD5 5b5f5ab1da870e91f4fafbedc8651f7e
BLAKE2b-256 80bfb45b88ee88d31ed2c6bc535a2e78c15f33b9d1d0dd599c036325879456ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6abac5791d1b89617dac738b7a69a00d5c4ebb2385ce269f7bcddc9499edbe72
MD5 8cacdd1de94b82208c141576c6302548
BLAKE2b-256 e79519a1d6c92309d11fd082f495137f9f20de705a132ced5f3314c4c1a3dc94

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43ccbdc6411b33c394498ce106c9bdcc3659d9d1b7ab128d769372fe2b97d1cd
MD5 739e12ba69f95c0a82b77b09b3ba923a
BLAKE2b-256 d4633b404b37aec1c7d583ccd9714af2745f820b1039ee2acc9e43fbc59e2d9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for loxwebsocket-0.5.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 32ec1c4fa239bd9f895512ae2b51befd80ea5e28674abd5efef482115e901755
MD5 6334875bd75522961254f6b10b94ff6d
BLAKE2b-256 c6c8b467a8a8904489c9a82698d194549c2634ae2074e56bec624457a74153e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05ec6b7f2c37a35d3544d229cc204b1b6906e1e37d352d4cb0b5ad6a22d63ce3
MD5 e35afe44cee1e7c903b1a5739748a6f1
BLAKE2b-256 2b4e870d8bda2c27cd939e3ed0d42cdbe72327edf2f49c99a938ae6fc04ee35b

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2d87a024aa66a9c2ef0d30eb96a8891544fb14e889c69522a9848bce158751a
MD5 a2ed1bac2bf1810118d28f2c95cdbda2
BLAKE2b-256 6e65c67a4d68a60e7cb1f9fa2ca170867c54f39b33df51b489cbe818b0b65a4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15040c85330a2e1682720688231780eb8b660803bfe1fc1a779af314eb09a4d2
MD5 3eb3ed7547706b5fde17237481191439
BLAKE2b-256 eb5ab7a8d35a18da6e87db006c044034e3cee8d5d9c561389586970334b14f96

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 93cee835f97c28c046900d91f4365d71f7230104772b5526ac367a9656a1ad33
MD5 1d0a015b1cac7535a892a9f9a50089b6
BLAKE2b-256 0f7769d204e66ecc9b20b483000d8618b9241ba079bbb4914e7386ff5a7313cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b0708cc4fe85f5e3e93d58a5559f0d80d598319be0bb4e6a914dcf4129224c0
MD5 b40e6224a4fe77cde8cc1e268de8e0a3
BLAKE2b-256 be76a56ece83076cb1daa37da60c83d26c41427718a1fbdd43c398077f14917b

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 015ad5c08eb5db4ef6a574e59725677cc1f357ca6e5bcc7418695d12cd40dcb5
MD5 28074ef33dbdee5272ea58f78a61ce72
BLAKE2b-256 fa94e654647e25552e36a1e06515e196ecafabf1463444b73dd9c22264bfc4b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 98fee14e80a35763ce9cf4856c165ca8a9b374106c4b6bb53465f84ebb9f1754
MD5 3ff53d7c153a1a5c84152b4957b1833f
BLAKE2b-256 2d3d48c7b996302d869c7db219850e69c99f70f2fe1e75072e8e13fbe998344a

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for loxwebsocket-0.5.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7210dace7ea7af09246190162d30d140898c423e071685e761fb73caaf6003e2
MD5 0ea3538ffaf987d4c255e0b54ffd98c4
BLAKE2b-256 60edfd8802281599fec40b6109615147c9b11586ee58714dab8393751ea8f42f

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c65d59b5fc627df1c210512243af870d734df88e7037fee96155f38315e10356
MD5 041b2bec2bec6f21075f500fb6f578dc
BLAKE2b-256 68d9336670d710fe0bd49e4eace16536a20ef0afacab93b9573baaba29cbc0e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a39e4d672ab2ac4ed57bb8c0d61d592a4af3ced02c39ba39a0c31b471f10958
MD5 bb48080d3c4c4303e30eff8367b9acc0
BLAKE2b-256 c35d00301e10135ee12ab0472e9a39663a21bf810dd73bb8e122eb23582b96ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8404bb79e09c12156531423d38cf0277ce65ba16a7d7c98ee3ee52a9ef73dd00
MD5 be2a6d51234dfe88efbde3d4652ce773
BLAKE2b-256 207c5d19ee12069e0b0c04e368fb6f6f101c00a9c7e234c9b8e5f831683f534d

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e1a203be0a841cb2f3a7f9a74dd62cc5f8093095fa7dab7dd48423518bbb85e2
MD5 f0ac2d858810d12776196346fa383336
BLAKE2b-256 73e93d78a55fe4be17f0e881c1c8eb175cc8a0991ecfacd0268d17c1d9312a6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ac0c4a22d3196b1a7cce010a8e00ef0c87424d1d59e5cad16c8e166f2f3a3f9
MD5 6c91658fd7b96c2de843eb713b4693d6
BLAKE2b-256 dd86169228d5e1b5c7ca80f7ead073339305db5cd5d3d90359530123df8fceb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 408e455ae6d29565c837aab2b3897e514e429a70f01413175a3e301c7ee85475
MD5 935b662385df9fd9fbdfa72c4d9eb511
BLAKE2b-256 e22670f5bce8c83af9a071b8a20f7628d7f986357e64617a774072f60a23f529

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ecbbb2d3cc5952ca0e84e7a5b854b0c69f1f6dcc2af35096329ffce5c92e200
MD5 91d1b4699f14922e71f61fffd0283db3
BLAKE2b-256 9fa00b3f85d5afce82adf85f1fdf125861146ad122602be15d7265ccecd1fc48

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for loxwebsocket-0.5.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 200b11e940ed5d3607786ffc2e66504e7c5c67f3174df06a6ab75060c44c780f
MD5 b34455698131fb1b8455af942036badd
BLAKE2b-256 d9d453bc72b16f062a436b6f111a495137d6c26628f9524c7495a2a5f5a51bcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84a99fc019d900b9b6572edbcac8979957055ebdd7d4e186e1a7383900654b95
MD5 d064388a913f12a55e5fde930ea7aee6
BLAKE2b-256 a9509e54b1a2a5724668c41762329fdb6715d2b0b0737920bdffe11c3ea2a5c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ace5a48da02d4139b9f4bcb50dc3b3a43eaa3026e555d5d8da41b9ac9fe405b3
MD5 bd4d6a6a85887345b19a676c076b276b
BLAKE2b-256 e335aa51430287edcd5df4918f9860a0f62d313b9cae90b366b0c51e05d21506

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c297ed5319383f7b314799b6bd58e8e07235bcb82fd737c61648c3c404154f58
MD5 fd8714a938c349aeef685a8cd205d233
BLAKE2b-256 3b9d51a7aed288142f3dd996f5838cd22f34d18b0dd435d557828dfb2d6f338b

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0a2e96af65aeb977851ff45b5a8e0f03196a38a9bf23a49a462154c25f04377e
MD5 a2d25634b768f81813fcb9ee9713e1e7
BLAKE2b-256 156ca4f101ecda553b7708c4b4440b9a41c26e28e0de5f82a58c2e8851981357

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a702936d60b30678ad4a51544eb3879baf3a7d0d34f0d310166e1ee75199eef
MD5 f89101103d63153fb7ed5584e57eaa24
BLAKE2b-256 49b428589cbd6c3824aa2c9d34b7abae6cf1086ad31922e0dbcfc2f8166a57c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 25088abaab953698a8c94f8201bccaafd437e2205071b8226a5b06d19cb48d0f
MD5 d90ce2479462edc414bcc046676cf4ff
BLAKE2b-256 a04e83a718b9b0259e74fbb5adf8ec0684b8bae58e08831fb4c1145aaa1ddf32

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d71140b950ff9b45be2dcf7ffd308f89fe64daecbce9bca9c534318c8a00f6ad
MD5 cd4ee7c8ad05740e7ce434099b6de587
BLAKE2b-256 df7fc18134c38c40d403418e04b76afca13359a79990c6f2bf0d111a962a93f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for loxwebsocket-0.5.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ba07ea8d134a78286c558aba6ea475c84985536863845aeed58e1c605c62a3c7
MD5 1fd7e81370fdd7ed045657336c9c8883
BLAKE2b-256 2ca7d80a8cdfcaf318af63dfacba95dfafac1210d672fdcf3c2dae6312abdd09

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1973c5672f89a1f019f7b0413dddb78c73dbc985c0c01aaac0e286376aaff99
MD5 bd93037ea407d0152662539a16a71595
BLAKE2b-256 e25cb4b5428f969677ef01a101b514799a0941f1aee9522efd5fe870c3e0c945

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac288fde0600818ced6c10197c64c050b9682df89ffadd2488c09471fbadf73b
MD5 ac27518a5371be67725a34daa5ff4380
BLAKE2b-256 c24404a1eb313c2bc69eb3366bcb873940a5b87b330bdf980103ba93e0f4f6b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8cad589c0e25807c4c5cc666ad233cb3f2cfcc46f24a6cae1b57d5df9dbae3cf
MD5 6e05483b7c4c305f223c9360634daa8a
BLAKE2b-256 f65c5744aa76cbfffaff1f4b45800ec76d55507ac71276d5de37dbc0b05b65c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 33a77b7048fd8fd712036753e80c322eeaf9ebc34c69a98fd4a248c8f856a494
MD5 31881feb35f94ebf6a72cc8b0f219a2d
BLAKE2b-256 7dfa7c33f39fc94e387997454f6fea1324805fafab37b10f08c013ab238ea10f

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 028a38582b8eb8d782847ff3789371fe078ca92ac92d1208d6be0463999c5b6f
MD5 b4e2ad34c447f29f2e6e0b28369a8d61
BLAKE2b-256 0e5f181e4d81f6ddd9db07501bd2784a8e88ee3c78d183cca6ae629c57524f63

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-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.5.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e2ddafd28cbd89ebf069ae67042e2d14d8da10fd580abd3799dc53129e97771b
MD5 87406bbe8e720e25c70ee469baf106c0
BLAKE2b-256 177ce78d310c67d074071a234a36f255095ba497abdcfb90933e57089c86bb29

See more details on using hashes here.

Provenance

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

File details

Details for the file loxwebsocket-0.5.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: loxwebsocket-0.5.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 193.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for loxwebsocket-0.5.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 36037c503127d0c501e357ccc84162bd54866665cbb8fcdf8de388860f859872
MD5 75fa15a8c963ca9fe429e17cb1a5efe4
BLAKE2b-256 5a6675c5c1adfdf7e57734268c46637b55d471ffe3f01ba98dc4f29f24dcc35a

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-cp39-cp39-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.5.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: loxwebsocket-0.5.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 189.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for loxwebsocket-0.5.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 300b3614451ac6b381616b1cab74becee04ab450316ffe9ae2e23df3dd806aa0
MD5 03f9b2bd41478b98bda3b221148310ad
BLAKE2b-256 ee983e24f8c79881c2def94d241197d66172dc6778d10db589b76ff492fec005

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-cp39-cp39-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.5.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a447b972e62536449028eb744880fe020c8d21cc99e9793a44aa88a32101c948
MD5 280d3e73fe3a2e62c3e4336f993caf14
BLAKE2b-256 7cf2e1b4c4a9b1aef5c5f79fcbfb925016a365b19fc55609cc24e286284d2c3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-cp39-cp39-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.5.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fad55a36c95d9cfb39ab2e7f6a77ae1cc0c96cadd20be0bfca9a9c92f583c3d6
MD5 ea6627dfa012c7ceaa5e321b587bd83a
BLAKE2b-256 0e37adfa5b9a595f7d5d4c13447cca2c801bbfebac381dfd693a6b5cc0041b67

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-cp39-cp39-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.5.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 32ff627b902d90584be2e56637c3973f05c933d2e6728eed696571e71eb00cb4
MD5 93b16352619dd24003848d696d172540
BLAKE2b-256 7ace807694279abc1c40ca1ceea38d8c1b9cf6182612599d1327f550a406a532

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-cp39-cp39-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.5.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b0d656415b21b7f554e523a8f90b3403299b3ba96e5c20aab3a4f2b60f18edd1
MD5 5c1bf923a1e8a59c89c0db872ca14c42
BLAKE2b-256 128afcb5368e88b8ca97db8927f39cda269325598d566ec8a9c94534f444d4b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-cp39-cp39-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.5.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 223d9317d143ae4275cc3910a352d97c21453f35b07a357fae6420d5bd0f2173
MD5 ba2e24fd8900cb2ba0f1834ed5589ef5
BLAKE2b-256 9fac013200fc571a15298c5adec712425115d4be932810b3bac887bcf1adca68

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-cp39-cp39-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.5.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 afb7ec45f72aaee763f1e20753bc94893a2192a505377d3c9ecd1aa4430f4897
MD5 c66cc3757a7ab5ca050df7dcb1afd27f
BLAKE2b-256 f13fcc05b1d7c66dac24dec34ec4347fd8539e1b890fa1ed80da5088e029b7ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.2-cp39-cp39-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