Skip to main content

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

Project description

Lox WebSocket Client

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

This library was adapted from PyLoxone - thank you for your excellent work!

Features

  • Asynchronous WebSocket communication with Loxone Miniserver
  • Encrypted communication support
  • High-performance Cython modules for message parsing
  • Support for various Loxone data types and structures
  • Token-based authentication

Installation

pip install loxwebsocket

Usage

import asyncio
from loxwebsocket.lox_ws_api import LoxWs

async def main():
    # Create WebSocket API instance
    ws_api = LoxWs()
    
    # Connect to the Miniserver
    await ws_api.connect(
        user="your-username",
        password="your-password",
        loxone_url="http://your-miniserver-ip",
        receive_updates=True,
        max_reconnect_attempts=5
    )

    # Your code here

    # Disconnect
    await ws_api.stop()

if __name__ == "__main__":
    asyncio.run(main())

Event subscription

The client allows you to subscribe to connection and message events for real-time updates.

Connection events

import asyncio
from loxwebsocket.lox_ws_api import LoxWs

async def main():
    # Create WebSocket API instance
    ws_api = LoxWs()
    
    # Define event callbacks
    def on_connected():
        print("Connected!")
    
    def on_closed():
        print("Connection closed!")
    
    # Subscribe to connection events
    ws_api.add_event_callback(on_connected, event_types=[ws_api.EventType.CONNECTED])
    ws_api.add_event_callback(on_closed, event_types=[ws_api.EventType.CONNECTION_CLOSED])

    # Establish connection
    await ws_api.connect(
        user="your-username",
        password="your-password",
        loxone_url="http://your-miniserver-ip",
        receive_updates=True
    )

    # Keep the connection alive for demo
    await asyncio.sleep(60)
    
    # Disconnect
    await ws_api.stop()

if __name__ == "__main__":
    asyncio.run(main())

Message events

You can subscribe to specific Loxone message types to process updates efficiently.

  • Type 0: Control/text updates
  • Type 2: Value updates
  • Type 3: Text block updates
  • Type 6: Keepalive responses
import asyncio
from loxwebsocket.lox_ws_api import LoxWs

async def main():
    # Create WebSocket API instance
    ws_api = LoxWs()
    
    # Define message callbacks
    async def on_control_update(data, message_type):
        print("Control update:", data)
    
    async def on_value_update(data, message_type):
        print("Value update:", data)
    
    async def on_text_update(data, message_type):
        print("Text update:", data)
    
    async def on_keepalive(data, message_type):
        print("Keepalive received")
    
    # Subscribe to message types
    ws_api.add_message_callback(on_control_update, message_types=[0])
    ws_api.add_message_callback(on_value_update, message_types=[2])
    ws_api.add_message_callback(on_text_update, message_types=[3])
    ws_api.add_message_callback(on_keepalive, message_types=[6])

    await ws_api.connect(
        user="your-username",
        password="your-password",
        loxone_url="http://your-miniserver-ip",
        receive_updates=True
    )

    await asyncio.sleep(60)
    
    # Disconnect
    await ws_api.stop()

if __name__ == "__main__":
    asyncio.run(main())

Sending commands

# Send a command to a device
await ws_api.send_websocket_command(
    device_uuid="your-device-uuid",
    value="1"  # or "0" for off
)

# Send a secured command (requires visualization password)
await ws_api.send_websocket_command_to_visu_password_secured_control(
    device_uuid="your-device-uuid",
    value="1",
    visu_pw="your-visualization-password"
)

Requirements

  • Python 3.8+
  • aiohttp
  • orjson
  • pycryptodome
  • construct

Development

To set up for development:

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

Building

This package includes Cython extensions for optimal performance. The build process automatically detects your platform and compiles appropriate optimized versions.

License

MIT License - see LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

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.0.1.tar.gz (141.6 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.0.1-cp314-cp314t-win_amd64.whl (189.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

loxwebsocket-0.0.1-cp314-cp314t-win32.whl (183.9 kB view details)

Uploaded CPython 3.14tWindows x86

loxwebsocket-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (387.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

loxwebsocket-0.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (261.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

loxwebsocket-0.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (266.5 kB view details)

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

loxwebsocket-0.0.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (392.3 kB view details)

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

loxwebsocket-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl (161.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

loxwebsocket-0.0.1-cp314-cp314t-macosx_10_13_x86_64.whl (183.5 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

loxwebsocket-0.0.1-cp314-cp314-win_amd64.whl (183.5 kB view details)

Uploaded CPython 3.14Windows x86-64

loxwebsocket-0.0.1-cp314-cp314-win32.whl (179.3 kB view details)

Uploaded CPython 3.14Windows x86

loxwebsocket-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (343.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

loxwebsocket-0.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (237.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

loxwebsocket-0.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (240.1 kB view details)

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

loxwebsocket-0.0.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (345.5 kB view details)

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

loxwebsocket-0.0.1-cp314-cp314-macosx_11_0_arm64.whl (160.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

loxwebsocket-0.0.1-cp314-cp314-macosx_10_13_x86_64.whl (180.6 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

loxwebsocket-0.0.1-cp313-cp313-win_amd64.whl (182.5 kB view details)

Uploaded CPython 3.13Windows x86-64

loxwebsocket-0.0.1-cp313-cp313-win32.whl (178.4 kB view details)

Uploaded CPython 3.13Windows x86

loxwebsocket-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (345.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

loxwebsocket-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (238.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

loxwebsocket-0.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (240.7 kB view details)

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

loxwebsocket-0.0.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (347.9 kB view details)

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

loxwebsocket-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (160.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

loxwebsocket-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl (180.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

loxwebsocket-0.0.1-cp312-cp312-win_amd64.whl (184.0 kB view details)

Uploaded CPython 3.12Windows x86-64

loxwebsocket-0.0.1-cp312-cp312-win32.whl (179.4 kB view details)

Uploaded CPython 3.12Windows x86

loxwebsocket-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (352.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

loxwebsocket-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (241.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

loxwebsocket-0.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (244.9 kB view details)

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

loxwebsocket-0.0.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (355.7 kB view details)

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

loxwebsocket-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (161.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

loxwebsocket-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl (181.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

loxwebsocket-0.0.1-cp311-cp311-win_amd64.whl (183.4 kB view details)

Uploaded CPython 3.11Windows x86-64

loxwebsocket-0.0.1-cp311-cp311-win32.whl (178.7 kB view details)

Uploaded CPython 3.11Windows x86

loxwebsocket-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (339.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

loxwebsocket-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (236.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

loxwebsocket-0.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (238.5 kB view details)

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

loxwebsocket-0.0.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (341.5 kB view details)

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

loxwebsocket-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (160.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

loxwebsocket-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl (181.1 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

loxwebsocket-0.0.1-cp310-cp310-win_amd64.whl (183.2 kB view details)

Uploaded CPython 3.10Windows x86-64

loxwebsocket-0.0.1-cp310-cp310-win32.whl (178.5 kB view details)

Uploaded CPython 3.10Windows x86

loxwebsocket-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (327.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

loxwebsocket-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (231.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

loxwebsocket-0.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (233.6 kB view details)

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

loxwebsocket-0.0.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (330.5 kB view details)

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

loxwebsocket-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (160.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

loxwebsocket-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl (180.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

loxwebsocket-0.0.1-cp39-cp39-win_amd64.whl (183.2 kB view details)

Uploaded CPython 3.9Windows x86-64

loxwebsocket-0.0.1-cp39-cp39-win32.whl (178.5 kB view details)

Uploaded CPython 3.9Windows x86

loxwebsocket-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (326.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

loxwebsocket-0.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (230.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

loxwebsocket-0.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (233.1 kB view details)

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

loxwebsocket-0.0.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (329.5 kB view details)

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

loxwebsocket-0.0.1-cp39-cp39-macosx_11_0_arm64.whl (160.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

loxwebsocket-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl (180.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

loxwebsocket-0.0.1-cp38-cp38-win_amd64.whl (184.3 kB view details)

Uploaded CPython 3.8Windows x86-64

loxwebsocket-0.0.1-cp38-cp38-win32.whl (179.6 kB view details)

Uploaded CPython 3.8Windows x86

loxwebsocket-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (330.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

loxwebsocket-0.0.1-cp38-cp38-musllinux_1_2_aarch64.whl (233.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

loxwebsocket-0.0.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (236.8 kB view details)

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

loxwebsocket-0.0.1-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (333.9 kB view details)

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

loxwebsocket-0.0.1-cp38-cp38-macosx_11_0_arm64.whl (182.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

loxwebsocket-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl (181.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for loxwebsocket-0.0.1.tar.gz
Algorithm Hash digest
SHA256 c5aa37e9429aaa2d63feec48d18ad57c483abb199c9cde9f8776a39c5f2f6978
MD5 b0de0a91b3bccab82a5ebcc5429b525c
BLAKE2b-256 ba733b76859c4955b217c4c8cba7a15759720c0868b93b2c6cd7c16e3a564dad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e2310d5f24eb02f060b931160035758a6fbf77c4c35841fef5801216d67009b6
MD5 97449dc44dbc7e8cfd7b79760efabff3
BLAKE2b-256 38291c1f90b07b9bf275a7f75ec19aa26bea764822c036c3b755848c9baf9dd6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 64a7810ed9ebd063793d0605560bf577cd95713e4e3c60a2117e6d9374159758
MD5 5ca326f60176bb7b1adc394c307033a0
BLAKE2b-256 a3adbd7bcc2e5dd1fb6c84becc43268647d4478ea53d1c42057034850c0d32bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a10fc8e3052e69078e3bf287379b438396c28128990aea654dfac1927b32b911
MD5 803d7e83e1be325e75027aa8dd19cc76
BLAKE2b-256 6f7ed2b5f4b1b3556f4d929bf045e326d996e902845d050d45815bf0f66688db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30a4a7470388579128144833ac2b839595e3fd7e658894446362a1f5c8478bca
MD5 bc5e7c873e810b71bd8f25a9fcb35f70
BLAKE2b-256 48a61c6e2b9a5c5edb94a4a45170791a6a952dd8b94ab32ae3a75e47ef5c0e52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 54d34c30ce1fb7a60184ed53e830576562fb91097c08283a8b82089c24eb984e
MD5 b06b0a2a558baa030d0ada521350e117
BLAKE2b-256 c52ad8e0800afd9985bb51f6e68961ca0f02f83b06adaa541bff35aa084fd604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 23eedb2748f10163c3a923b4020af8fd6f466fd057ef31c4ff10a6ebec3a17fa
MD5 1d413362dd1326a79bc76acd1de96449
BLAKE2b-256 dae50842b6956997667d6bf85336a78b572c48ec6f948f8a8b8e498bd24a77af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfa4ce0318538a5f0d6ca93a8f6032f9c8c5e0613bd82cf8ad8a1271e72132b7
MD5 ae7737443f1a332523aaece978cd899a
BLAKE2b-256 d7022cefc71bca94bb0fd8556184eb8644d0b9f69b7d5f102fd009fcfff2e184

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.0.1-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.0.1-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e4b86048e18e8545722a7a044cdbebe84184ed67befbf0500d072098c7449e36
MD5 0ea61207619e13576fe285d943a294ec
BLAKE2b-256 35cf74edec067603ca429c706dcb66195dfc1f24d9afed2ebe43b848f38eac29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 83951090974f11afd9051de6eca9c27db4c35ff2a7cddba0bc73e4718709529f
MD5 f6799a8f3be10514740f57cde42f4189
BLAKE2b-256 eac65be06e5baef6c604a266f4822e7ac184ee5ed33d0122e1a6fc456f39b9ca

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4188681cab2bca77126594f31f0a40672213bd605a7faefeafe45555c4e51078
MD5 91148a589c7a35c6e28b472f3ac18d0f
BLAKE2b-256 63d81fc3fdb6630cb8435a7d7de054764b5d1c421af52705966bd64a4158380e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3fec95bad62f0138cb64078820c0520351abc7c9eb6e920f6b73132d93d8de3
MD5 7e34d6f30cf8a22633849527f73037b6
BLAKE2b-256 59ef4b6ea6324b104bd4d1c9c880e90a8f6f1a489976b24efb77cac4a3f2f28c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51670759912bb4eaff2bf0d3ae1b16e613fbb37291df200697bac11a0ae35a26
MD5 33b9d2417064c8d76a39bbad467ed1af
BLAKE2b-256 d539bd508110db7fa8e4484b3f0d9bdf5546570256f77f3ffb68edd99bcd3752

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef4418c630a82ceb3f105f689c0b2cc8c990475f5bc8e075f3aa603903bbd6aa
MD5 2899896672111dc419e4d3b390d89db6
BLAKE2b-256 185597a757ed53aad039d078ab9ecbb0f5aebee5b36b941230f3a5e4af37aa97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e1bddcfbe79425588bf893193cfb08773ff5435cfc624c30ed4b3b0eb7399834
MD5 7266e08ef01f007b737852ffe6f4f098
BLAKE2b-256 d1f1d6880300be6f33031f3f420590ed6a85aaf9209fd636555694f5898bd392

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12745c4e16730cb3bfd5a42bf3a06f4cf82affaa124bf561836c146716cef96d
MD5 4ab39dd6ecda859969cf042d283e674a
BLAKE2b-256 8d5ae03be7ec11ce7a2ee2e7c6d731a68146f5de589596c6bf087ff119452ced

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.0.1-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.0.1-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6193a3e9950d0cf54a2d477535bca5b34cb5d676f9d779cf2b997395b05c265e
MD5 56f80f5512155b912ff8759b026889eb
BLAKE2b-256 9406db2c698b74cef58301e861d2e36ab9662fe3045016a08923c21fa2230cf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b0475ab41de63283d090722d5a145607f2132935626e479fa485a62b15acc9ea
MD5 372960033448f522f2aadef3dad92f03
BLAKE2b-256 09dfdfb09fdd62f0454581c73b9d9218b2b6cf93b2514aa5dafa7fd8751ca9d3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for loxwebsocket-0.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d4daa746efcd168aea06e6f20d9b8d62e699c3b12ad6842f79dc19d6379cb1e8
MD5 ccce8284e441ca10e0b7b92c5d23c84d
BLAKE2b-256 f959271e6250957b7fb45c265be25fc8e9b86a49b1da831b5cd61d593a0e1cc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04f3ad709f4da851bddef0cc2390078de42fcc91e261abca1e984c2f7de12229
MD5 e06104e82bbfb9e9f64e3c7407d23f67
BLAKE2b-256 9860c3a08142a3adcf2252cb8302ddaa99fcd8b2ca2c3d5f721e7f89e14eae12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa9aef42c01efbf400a6789502805f5fe37c839f799c1a12a0141843ca36f961
MD5 877d7088716b632171dbd54bf5de86eb
BLAKE2b-256 e95388c31f8038ee17c7f262f5818c93ee56f3ec114d00946de48a4cc13398e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 109621cdb4e4ca6aac982991dc749976847cd11296506037d1eca3f0319050a4
MD5 b91bea4adbdb78968ba2b989ddc0dc04
BLAKE2b-256 0ef8dbde7e89f9c9d9be1ba3692df237b709b199183fa24fc97aad16a773f15b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 03aeb0d859c0f468c127ab4efa2d06fb1c832c39dbc3ce72300ab5026ce50b56
MD5 8d7f43b8e1be971601cb83cdc4563a6f
BLAKE2b-256 e8a018a614e6fbca4698d5b27b7300151e7fc5909c9fa10073abbde38ef7d7f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b630988c7bdf3a1aeb786c5639ee09f3085fb63c1512f2954d4a90fae7475e28
MD5 3367156aebe13fd0b1a46379a1661cc3
BLAKE2b-256 4db2246ce52028040f66f33818db2db9e3ed3f352b4a60d5bc83297898002b2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4790d90b5a5dce027cf0cea2b86a845bdcd390b9d92a00b6043e6d22bbc080a6
MD5 71d8ce75e384cd0c12eeb462ad2c795a
BLAKE2b-256 46a002eb26fd79d57123dee90a0a293ad0936be672320b9f909a2bec1268c9d4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb62842fa19c67b8be51669e3fea8a9634fbe287cf1c026c17e0190b3b4cf928
MD5 fec6f84ed33f3abb882c544eba43fb01
BLAKE2b-256 291230f77bd6b55322221f0366509c0b44e23fd191c0daedb043e2648bb5ca91

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for loxwebsocket-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bce8acb6017d6230d68f5a3239df4a0f7d6d79c6f6a625c063d52761e880a5f4
MD5 fe6f994e9cb64fff2cf8f850b1dc7cba
BLAKE2b-256 7b515fa75433dbfa427564c0ce101c027cbb5a0d785c6b8d8d121044495334db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7ee8008700eceb96466afd92a96651ebae654f80bd02c06a2dfc6009403beee
MD5 a63163b7eab00e09b30ae5b5c31ee3dd
BLAKE2b-256 74d89ef316b1188466ca0332943105e957b96933cef69a10a73fdea35479b668

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37470d9ec876dbb479c2ff56237267bef302e1825737730b3f6cf7ae397a3684
MD5 d26fbbf3578702166ca7a8fbf05f4761
BLAKE2b-256 ba1230534eea8eba4ca613aa609c81a45a76136971a7674de60b300dd7ee1ab6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6050c5e1c84d9a0e084fcae0d4a0ee973c80812ffd3466315c8a48213f900512
MD5 ec65f4b41dffc290e129a84ff8628c15
BLAKE2b-256 81561c8b82f888e0cd1483ec4693b135c8678ffa10643348df98678c5fdb93fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0f30dfdd74661f420ec60b04b7d86748b74bb45aef6a5863fa431c7cff934cd5
MD5 4c1141da3dd753a803bac0e4f42b0819
BLAKE2b-256 f86da2639c005406f94328833eb9780d090d1b1ce80d9f243f326b9253773231

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 199fdf345bcdaae58d0fd6cc9170f683ff599eb928efae23f5432e4fc8296f00
MD5 3157da98df544a2a705273ce8b76c3f3
BLAKE2b-256 23f41fb9abea18dca463d88d3a64ed6ece0a21b1f331c4052189a637d2aa80d9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3e597f09fbdfb0bd1cca971bb8daa3d505056a930b0e914a6c565413f1f85727
MD5 e4ad7fc69160411d3adadbc811d04850
BLAKE2b-256 5e01a412d52dc001758e63a17a924b35fdc8fa134036ae6b136a208b9195fad4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6aa17d1d61b1814167eb74716ec56d1f414524a515e1c951313c97cc9fc4529c
MD5 f59cff7b8f0ff860d3c6d87167cd1d9f
BLAKE2b-256 794e55fd1f84a9335f6dd24c6b139c47698f1aff628e4c5d1ae499a70a116396

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for loxwebsocket-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c6761d068dae152782d3dcd27d7d0defc3c30e98974b4c4673f212a0adce28f0
MD5 ec0eb2b74f68107220b5f5d9384bbde7
BLAKE2b-256 7ab2672dd6410ee8995b81b9e8d7ea8eb8055442f31b95b63f82e855e00bd425

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f77b916d1d6fdfbffa42045309e425bd60f5b25e13999297606569c7e56f94c
MD5 df760a582b4e58315110a01bf1954914
BLAKE2b-256 b8ed89bd540ddaa9f3738a70b654c0ba7f6829313333ababd3c4a5c4744f89b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 da9565c86f6e1da5c92219f2b9246b9e152aab40abf1ddd7f40b09056f2f8a43
MD5 e65aaccca647ca042c07f739096b7e74
BLAKE2b-256 569814f4063af9e7f348337df87b808c2273db68ee85dd12f5d1de77983d4fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e20337ceeb183b91355dc1950149aa86d0308c53660465835c4138a1d2a28bf5
MD5 dde8ecd1b846624abdf013625bbbc48b
BLAKE2b-256 61983865e63b6b3571457fca85d0b8f48e30554dbfcb43582e1d2c0c2c256717

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dafb7b2e5d8cb1710a23981657f46c53e91ad7c4454b33d86d506f7cd41e7cc6
MD5 0deda7ac52ad6ab6b3a946813792d053
BLAKE2b-256 f0a2f1d88e48b208351d60edcd0efb4530705327441f2f0ef5d0f06fa5b1e4bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0db04e28ef9b2137bc895c101234c54b3f75f8f9460aee6deed4a64cf6464d1f
MD5 6b870bdd7ea57b950af4a353ddfe72bf
BLAKE2b-256 a0841e916a6b572f010e84f1f8623bebf0fce6b4d88ec76e27d685aa53b85722

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c89d2963d5b618d7a628c0791a49875d114108f971d86831a4895821b9116a75
MD5 4768df618a77e88be883eeea1ec3c055
BLAKE2b-256 963e53ac4b4e26bb0ac9b0bc7ed749879e99af1e09f5e940d8930dc96c18d49c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7a573ccceec7cde3241f4ad8e1aecaa518bc155cf4e64feb57f6c9ed1afab491
MD5 feec08d2d38d557ef20ec2a9f4a2ebf8
BLAKE2b-256 55df879924d7bee8abd74334006ca3cbae5050cfdf9a9f22ad84da5168770a94

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for loxwebsocket-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 44edc5801c22555df8179bd73971318bae4d7cc78d1a60000580c5d45eb06fec
MD5 7a45b7540e165d96d22fe8d5211f008c
BLAKE2b-256 33192741badab21347fc7d80a2a9c31c5156220b38ac79a9679e900875dee30b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfddf36e9a0a24b6da9a76d7b04543bbc74c83d0cb56776b5f1bc628e0e81a8c
MD5 f0ca0068c3d1f79b92e5a506f10fe21c
BLAKE2b-256 97c26729f9c34a26b0c5f89231bb559a70892799a1d8771ffd268a681ab458d8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a86e182cd1aa3dbfb78005e37cf55a0b9f5ef01b740cf3e8bc09bbba241e229
MD5 a79cf37b6588a69f60e8cf16c3b8afb1
BLAKE2b-256 ffa93af40dd3b03fcba48e84c6423e234c8ce9c65d45c3fd060248762aaf8cf2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b008e3214ca3c27d7048abb90aa18964a072f730ca0d745a8baa33a5362d5a5
MD5 fdea3710616b655bca894dcb2e7c9473
BLAKE2b-256 ee41647a37f774b805271a7c969a32673d96c258e42a5561b3bd54cee5c58558

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 88d27fdd972e195d129156e4b52c838020b8b399a9ab65ef19350c3f3a276a4c
MD5 cacbc211e3850a38d77e18842ad79120
BLAKE2b-256 3da8e8415261d23cdfa487fd4ce366fb767f0e9fb7f27eebe97d58d8d4679ff5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 212cf28f1d6dfc2b0bc5e9861c2f9eb38493bffe7774dc2bd77269060a64cefb
MD5 ae0c0d7ad4c8f78e917ea44db73f88d1
BLAKE2b-256 33f7a3fd8e77c92fbced2c902e2a379dac4f379ff858e210d3e7cfe1dd98be03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e094e0cb45e8e0614ed15f2573592b932c4e652900098b0be84defd11d804339
MD5 61b5a179e10d8dfe9c0e286ac521117c
BLAKE2b-256 6f3f1a5e4550d5b622baf6003add42b65f694cf8a70dd4f8a71adee0d11bf6a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.0.1-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.0.1-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for loxwebsocket-0.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6bf74757d476bbbb8d25f3be3c559bc13f4c56c05d30f3cd5541b779cdd3064b
MD5 5810aaf26500e21a8ead851f34388dba
BLAKE2b-256 e8e9da4841754de5093baba8032f93f5d21dd8d52dac199796cdcb810edd8242

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for loxwebsocket-0.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c6096558fdedfb172db06ba2c2104d978988ded93e7c8f8c950eb98378c771ef
MD5 c24bca2c63176be167d65ea8bddefbca
BLAKE2b-256 7a42636a87522834c3c52e4dfc3ecefbe812224553412a1fbc2cfc5b5cd6408c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fec08e259e8398bb691c0d65fa8a1885947a087ea9f1bc2f25ba1b6ce1006e7
MD5 c7c384d1e38a12b2f1dbbeb7f722f909
BLAKE2b-256 58271c77c997aff455cd7691a0d64f34e960c7bd08cc887930c49b81069ee3cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 677a3b1a158776968124510ac1375bd76f1f08682394a8c88fd348c5d7a3ab91
MD5 ff2deae6190527ef031bd67027611151
BLAKE2b-256 f8162ac5401e3e2217a400bdc15baaff22454aff3623cf866622470afad2ac17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2dcbf12732e23b7eb3d46dd33135c8dd755be66a2b7a096522949c84daf2ce91
MD5 b3001f710625ad900ada4229ffe17e79
BLAKE2b-256 ab71e99fc534031736b6f186e916aac7aa5eae0755b148f1652c8ef1e7e061cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d40712f165ec1b26458eb1cc01f41439a11501c7e945c4591530fb91dad4ab2a
MD5 8574e469d5d89aa1f6b02f47a93a410b
BLAKE2b-256 c025cfaed8ce642665fc4daebc88c64170735d6872f6838f28b8c75fd908fd99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b8515c0a59e9514106d52ff2f3bc343eb79cfd8789df68af1af5355d1aecda9
MD5 4de4514c3f4b7d8662f43d253f7db0ef
BLAKE2b-256 28ce8106c469254c79d417ffeddc5f4e61ef9a35e1225558cb802c503190b4f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4dc7c1d3fa954780a87f68fc2c321e353f4ff879f0386d17950dfbfd70b8d322
MD5 3e370d764f1258c73b1ebba5e2940928
BLAKE2b-256 e4c8d3dfc3ee4d93e67c864902365ed1747e24b29a2a7d784c931dd40746681d

See more details on using hashes here.

Provenance

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

File details

Details for the file loxwebsocket-0.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: loxwebsocket-0.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 184.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for loxwebsocket-0.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 bcc204b722cadd98a68711767211033126d90a4a97638054555e237f9657cd0b
MD5 83a43d22e84927ec3dde5c8b12c2a61e
BLAKE2b-256 be6bbb6b463ab7d970f01632bd08a3338cf0ce06c107554a2a53dfbeb09686b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.0.1-cp38-cp38-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.0.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: loxwebsocket-0.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 179.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for loxwebsocket-0.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 43c7cc40e4c56b8d83f8166e280fc37caf31865dd088bda82dc2fb12c47aaa85
MD5 61c17687de95caa7abc354c7d1fdfb93
BLAKE2b-256 ba3f514c886a80ba4351900deee4f72a4a740cd7198c21bfb7e7cceebd585715

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.0.1-cp38-cp38-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.0.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c80a3339da70b896375dd2cb2c4c8d3e454afccbe80e506d83d9b2208fa61cd
MD5 b0a755dd6713df34c9397dfcec9b1d25
BLAKE2b-256 242d2a6b3d27c08ea514766ec2b3b29dd7777e1e4bf3a2010ebf33fbae38d583

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.0.1-cp38-cp38-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.0.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5dcae8f28d4340f41345a2eda5f26c9fcc7e694eb418c1bf19d79200514b1a00
MD5 b1c3c84ed968f849f698c4dd259a1a94
BLAKE2b-256 bd32c1ed3743ba308a54ca69e7019783c2a6c65257c71c4c514010ada63efda2

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.0.1-cp38-cp38-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.0.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61b82a17f823e76c6516a158c9fba50b82b4799c93055220bb734a2aefd803bf
MD5 c20d3b8d166914ccf85311779ba58b44
BLAKE2b-256 626be584fc3c8d11c3db850574f5f3afe47563f19aec294bce270535eaf1e0a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.0.1-cp38-cp38-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.0.1-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 33e75eaf4633b6e5d6494eb494ab47f584f8c0a4611576eeb7d0c188a6c358a2
MD5 ebc9018c4554203b49741a05bf6333bc
BLAKE2b-256 0ca42bc47576d7edf44bdfa2ca6335d3c36bfc7c603482aed18eaa67ab745f04

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.0.1-cp38-cp38-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.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 11afd984f36342b54169739708945ff3530810ed73adaca9b845472413135cfe
MD5 47fd4b2fe02a6924de8df85ba95d60fe
BLAKE2b-256 3c6d161e3571f74ea75a6d224b8ac8f35f2690202ad7db16e88aceb25c2e6383

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.0.1-cp38-cp38-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.0.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.0.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 74aa9d22667761ebc4fd4c4d0a9aeaac5b897c2c7b3b97b7b99539a4b93ac545
MD5 ce3ff6e2746a21bbb333cb498010cbc8
BLAKE2b-256 1575594ac178cd195a36cae905850a0fec4383d9c88498676867f409f6bc9796

See more details on using hashes here.

Provenance

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