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.5.0.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.5.0-cp314-cp314t-win_amd64.whl (189.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

loxwebsocket-0.5.0-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.5.0-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.5.0-cp314-cp314t-macosx_11_0_arm64.whl (161.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.13+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.0-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.5.0-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.5.0-cp314-cp314-macosx_11_0_arm64.whl (160.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.13+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.0-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.5.0-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.5.0-cp313-cp313-macosx_11_0_arm64.whl (160.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.0-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.5.0-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.5.0-cp312-cp312-macosx_11_0_arm64.whl (161.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.0-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.5.0-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.5.0-cp311-cp311-macosx_11_0_arm64.whl (160.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.0-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.5.0-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.5.0-cp310-cp310-macosx_11_0_arm64.whl (160.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.0-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.5.0-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.5.0-cp39-cp39-macosx_11_0_arm64.whl (160.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

loxwebsocket-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl (330.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

loxwebsocket-0.5.0-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.5.0-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.5.0-cp38-cp38-macosx_11_0_arm64.whl (182.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

loxwebsocket-0.5.0-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.5.0.tar.gz.

File metadata

  • Download URL: loxwebsocket-0.5.0.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.5.0.tar.gz
Algorithm Hash digest
SHA256 6a46434edee87503fe66e77ba6c5cc6023fe9ae59ee9cca0773c92f19994dd91
MD5 6e1c1b5c5155663d62856b1423246538
BLAKE2b-256 1772ea9e89dc3e86acbf8537dd0db9b63f98b3f259caae65db805463e4b0abe5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e09cf2cc65ed496b1aa4e690f6fb1b8132ad5b7e1397d113076b107ece73f53e
MD5 d9a469a2f2e6a7d619ae78aa7af25874
BLAKE2b-256 3afc53fa5160cc49f73732fb291a4a641ccb84bef30438c281bc30363748a455

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: loxwebsocket-0.5.0-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.5.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4bc751f1f4e1725424092d5668bf35df2b749206bd05602d5347da34ee85f5e3
MD5 30e4da1cd4f724d39ed40fd2103a31f3
BLAKE2b-256 3c927c72b1304f5f55bd6268c4179ea52aec4594702f4e54a44803c5b819fa93

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 644462fb27b7968342ef092870948d9f0c8bd17b7c585aa728f18a08112c0542
MD5 08718a0adc2de3d42a80d1ed3cb9e112
BLAKE2b-256 58473884f6106bfe7d75bf03944034fedcbfa98695a04013a34b1f78afc2534b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9d5a28e50746aafa7a110d00821f87080a4bee069456b61ff4c498b54cfbbf8a
MD5 121342374ca015abecab0269f5b518be
BLAKE2b-256 ecb391ab258749849fe491a82c8abaaeaee291bdc14e98a403cef7098ece6171

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07aa72b8b2c364be252b3538de4350f3a421469f7893631385f68df55491fe65
MD5 32cae010cb8928c6f02b81e8169f8923
BLAKE2b-256 a328ff7816f15bc297e7b1279e42742de6b830bf629d52b89d67b121afdd9c17

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0c4226bc932ee15b119c7111199050798ef0f91e68901a15fa333b87bd0b50d6
MD5 2ba7ed7d4efa5a17021b222adcdb9916
BLAKE2b-256 14a1b0a1507231a5c6c482841a75916174640a9e54404ecd20a65815c34d5a07

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b2b8b53049963b7bac30d13e85d1514abb161ea805f94d95222a29a2eae0ebe
MD5 df6759a24f4d715b4579268b1035adac
BLAKE2b-256 1d54ce3c2eb4f6895c9924c76f29e677de49c59914a7f7e8f94e232d54e95b87

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file loxwebsocket-0.5.0-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 262116d470561e5d81ec2b8822ad9d84baeca79313f259e21597c5e131a217e9
MD5 2653312be980904908c8e5d281455c52
BLAKE2b-256 92f55cdc826836d7c604c39e078e41998371f0d13d097978091a9c7082fcbd4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9cc2c92b4889a6d4555e320f0c1f0d9ed32b85bf6a4835838745777aca1e0e1f
MD5 2c0bc4efa6aa80c7931b3655452544f2
BLAKE2b-256 683f95d4a9ac261ae20590daf763aa742b4911bc91abbbdeeb447440caececf3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: loxwebsocket-0.5.0-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.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8742adeb45f60f057ee65d45e9fd16320f35d7dc711d429aa3f73bf3b22cc34b
MD5 f3f2a2bd09595d023d964e5475890cf0
BLAKE2b-256 76ab682c9da4499908deaf878cb289e6db605a6bd97306a530b49c4971194ad5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be2cddd67cfe9c5eb76757725182634f98615da45968ffcdf426bb81aa34d5e6
MD5 5c4910b6880ab45e45dcd56f9777a8df
BLAKE2b-256 4ef3c1ec77154ec20ff52f7d7ee980c979e655763c6b4ab47807cecfa7695223

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3368d50dfa879eb60e09af838d6e3953e4d4b52313bbc7f18e12bba8453d050f
MD5 ce9aeed1b5f93e77dac0df02d28ed113
BLAKE2b-256 47e5cf367986df966a36f55750c1a3a07af37b20ad762560c8d3d17e8a50e6d7

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1e0675ce8842ba40668ac0d2c634bdadf08860143175da5069b1cc210556b34c
MD5 b87b117b4b921dcf8d3e697d2f37b773
BLAKE2b-256 b3b53fd1e9485a432aad63eecd863981e98e0931df2498aa9440f0f25a1b4aa9

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2a2cc5042434710e991327682a249482fcde45ce2f8c5a43cec2ea665bf4b902
MD5 acce3afcb25a965d867dbcc288ed97c5
BLAKE2b-256 36a3f8762dbf2d36241ec3c935a400fa35320a00b0339bf3d2e4198c6bda8287

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 155f8a1b53c17c7740a1a4b899653a22a4d224bb00c86bf0c2d948999a02737f
MD5 39bb844317e398bc8f716b21dc1b3e7d
BLAKE2b-256 d155e096f26c1be95abaaa6fbb800766248fc5764a1b588bc6aa28fcc9935bb6

See more details on using hashes here.

Provenance

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

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

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

File details

Details for the file loxwebsocket-0.5.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bd6b7609fa4da8af3e454068fd236058cc7147bf49c9725aa1fd6fe2cec47844
MD5 464564e699569df55d005788d45c6b84
BLAKE2b-256 41ab6e64e3d55176fb27f86c343421907fc1a2377f89ef4ef510b177c287769d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2c4891d39077e8897b906a850d07f111d3bfc626e0c78edebfc82072123dc6de
MD5 fad313e3128b896d0538fc7fbd6839fd
BLAKE2b-256 f99e081ef6339f798946916c0b9a74ddcb2371983169e415183c3d5f87352621

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: loxwebsocket-0.5.0-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.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 84157eedefb02215b0ade2f155fc4da401fc74e8b442a04c77ed27f3c21342b9
MD5 1ad9e89dd68ffc205b4a431ca5316d5d
BLAKE2b-256 39467ecda15385b874fbed8c9eed1049934ff308baba0e1fa15f907a15ea2e16

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3e9aaf1210091ac343a3b59f4206b5a51b84ff5e8f0f6edbac3ea249fc53225
MD5 a445f29b95da77059bd5bd9526822f28
BLAKE2b-256 4fe5b6c92238a414cee75f0d235759fbc656e2d225672fab9079b7f5c81ff930

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee840549dc0e905a59ce0e9d4602032eb56ec06bb4474a47e43b2905f3ca8184
MD5 f26ff3b5546716485a5ab1c5d6aaac68
BLAKE2b-256 a3fab551905f43d23ed422daa69a4c522da5f3b164ad7ec4dd148a8d90026251

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f107f89bee09c5455d20f69663502cfc18e81041acba02fb8a3a7ba1f999fd86
MD5 a2ba0eaa9d3a9d9303311bd46725418a
BLAKE2b-256 cb1a550d0d11f5869dfb1d65eef25045ce7bb416043c09f4de9ce0e162deb6fc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bcbfa12ccf66608a02c961fd74345a422344b78660755ba680e95931744bd8cd
MD5 87d6fd3a2a23f03d9da2c76ef98d28e0
BLAKE2b-256 701c7bb2ce7649f2c0b8741e5ccefd944a5a7aad2c49d7be82a1d9a3750a6a87

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18fb15d45d8051be09e63c70b6914a0a7cff9d1341604f512400b6f3ad7eafd2
MD5 ad10e1286f76b57b741503e5a2330f3e
BLAKE2b-256 b54d3668b62b81a72b7293162a04734a23150dee7181bc658e201a42b6e3ff7c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ab02a1b91ddfc8c73587dbdf0051fe590baa540ea2f6b9c192f7bcc2472b8ade
MD5 26f0bef36fb4a0fb5f67375067533a0f
BLAKE2b-256 0f4dd8478f9cf9bab6b2fb22871656bee6532423004a0cd2a38858a38d2918a5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 50e6ae6a7bd206f3e745faf89bd6e61f648149c25c02d05a15c732b8f9d7fd97
MD5 157df77b60427948d77d8ce5f0702c0d
BLAKE2b-256 2d98f2a34b0320e320840cf7594a5a9b69464630d402253be75c13d91e6a72cd

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: loxwebsocket-0.5.0-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.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 93a985c0ace7771eed6eef047cfe37735f16e1d0541b977bbd7f9c560ae53005
MD5 780f7bb309092b7499df3ead5e229eff
BLAKE2b-256 ebc828ac3672282c2609c24628c4b41301612ebd735c60a903f8144014bbcd47

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 414e217724d8b077dbaf6057c2ab4b7351bcba5e106d0dc69d8e60214d21cbf3
MD5 050f516e42af24b385a257f9fa8c8ba2
BLAKE2b-256 bfec3c5cbbbd811ac41ec24c9fc1135567c2bef6a0adecbacab5c354d10b4c23

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 40f510ee109ddcdfe4db4e16de6a0afc8970245444be213a64605e6617722963
MD5 1252b447fd6aba9ca40125fd62b6a88c
BLAKE2b-256 5e9994efeb371bb2650d5e48e5aab0e9a7d6f39d4eba7aba113382ba952b65d0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 885534c4630dfe80deb896911eb228ede6fdf2b2a84acaaf22fd96e7499e1a38
MD5 97589156be199cd3d79aa70cc3515ebd
BLAKE2b-256 bb1c54939aa24a8e30a9dde01babbad42918767e41e3de0afb209bbdf8355ea5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 51ae98a475edbc9a042ea8ebfef791dc1ad22e11e3ae4b20fedb5bd16886fe6e
MD5 839e36160a8e12fadbb3ddbc9838d10e
BLAKE2b-256 449f1792de6c5b74213532feac1a09840228055a68236f50ce2091f4b7fa1d94

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbb354e75506c5bef2b0e4ff2eb1736e35b9b99916e2eb98d226d696431bae0e
MD5 01e9d1b417e25f5a1d8706b2f1e82250
BLAKE2b-256 beb9c09913d2dd4d8c598d70d659a14da456d3739d753b45ea39daeab114edff

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9d027bde818cd8816e50589a9479af3689d3a585c87c076eb4c00e332225bdb8
MD5 b79cc6076f0ca44b3bf8c11f1509b150
BLAKE2b-256 e64041f7416093f5a74497d5d265497fe39204822e3aeb3fef1b1b2e6c4537cc

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 025e2ac62c3b9a8573f5cc600b6e17301f30f1f935909b068782530b392b1ee1
MD5 acc3cda351981f3c37bc37216bcd191a
BLAKE2b-256 e78ece43e64110962d225ffa13a445edfdfe93304f5169c1ff6682485df46817

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: loxwebsocket-0.5.0-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.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 438fe34733c9e8fe899c1b2dae00187a00a1787974f47f7125d1faeec7f96fa2
MD5 0a20240a24b26a88d0c1e0d0b1cf98b9
BLAKE2b-256 e490c87c105995b767f564849aaacc4684177ea52ed23441550fd8373c6678b0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 412ba974a00fae10461b51e2cc65d2f855d242f8302cb0a5771e11a8d7955178
MD5 279751e178c33798862d7932f24084af
BLAKE2b-256 83fa53956a46f36a12f5e969335f71c940152ef53ef0f90604dc4bec28b400a5

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 906b99d605b3e18660233f990a9d51705765d0e566f7399a097a46fe8f62bd60
MD5 5c8c9860b484d4e175541878166fd1d4
BLAKE2b-256 8f5786fb4549d9d0989a27e306deec378348394018d0b789b0d507c4b6feb97c

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c34c6b0611fc31c145d6ac78df795b33f739c51e6a2d5211f2a1e84ae3a96d9
MD5 b0436b9efa82ef5438abd3a1289487a7
BLAKE2b-256 a2d77c4fa7f3eac7f632288388b331054d29074fa1bfb2131e96a48190775d7b

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 75c867fc748e0b7112ecaa575c17b307467613878cf775810973dba1da4bcede
MD5 ef67ecc3f827d4fdc60ad67a28c0cc99
BLAKE2b-256 e1cafa46139b604307863ae8e0da84f3b468471552c30e8e6d4eee715efc5b55

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2f63ab12b3051ed86cd6c4ec74c66cc370ddf0e3705506fcc99ba5628df1e9a
MD5 8e52bf96c3f346225ccbc74ede3e8258
BLAKE2b-256 40c04dc357fa667c1b5d7a6caa653d9aca32470530c79bc8371337051c6388d3

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 eb72ae5898404427a64b186d9acffc446c25dd82e0427a612dce55323439751f
MD5 24736f9711dfc7569ee0f78e9380a3b3
BLAKE2b-256 61f947ce95d716cc8c04f54b950617d0181a5a393b1b25f57068aab4d141c934

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7eace22c8e5deb2e05c32e3c012b30f6b08f19a871fcdfba75c628b009c19906
MD5 f6927aeecb66bfe70ad7eb1c191f136d
BLAKE2b-256 f478154d2e8056cd5aec2e11a7cf2a7d881264212e35c2a3314679b45a6334ca

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: loxwebsocket-0.5.0-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.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1f1abd5e6ee5e2fe9571d355eff954498ba60d4f863b355c1c427222548550fc
MD5 f8a26255ea5e3543d3acb5ab0e3438bb
BLAKE2b-256 42141bea56437909d8d47b4c93da90c47656c94ec11594612aea34fd88d701fa

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fdb921caa65ca90045541a2c684390cb1f0901204ed8a9aac200c1c5d0d3048c
MD5 f764b04da5d90f53ade783e2bc98c8a9
BLAKE2b-256 0189bbae78e3786d906295f7db1f46073c0198b8537e9f4c9dc1cc8a6371eb2f

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d8d1fa8323a995d48577dd8e8dd0ab4cfa168c90aab407aa08a0bf1b15fc301
MD5 495778dd63dc8344118fb680a3230b11
BLAKE2b-256 f703a99b0c245362d014862fa482018bc314585b8aa073fa4cd2d682e6919db0

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc9df7f43a8157c46ed925261d62ebf4c0f5b26e6d04af7dd556fafa11057fdb
MD5 8e4ac44e161c060e1bf6f7b0d0e7fa1b
BLAKE2b-256 ccd26d4cf87edf0a1d7c2f3fc57b5164ed3c62175c1fe619a30bc8bbb0d4b59a

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a9e7951ffb58acc5e2d3227606228f40cba453bc950f0b8d20421e8c75fcdba8
MD5 977dee67041609edf7fe87950c92bc28
BLAKE2b-256 8602531df447533905c8246f6b3030435fb8b636e4b5464abbb16ed4fe9c8753

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac4094be115e57eb7ea8affd4be0300525e06208a610f502338762c2208c84b9
MD5 943cfb2f5822ec70a1dfc91fc76a7224
BLAKE2b-256 90bba4bef406fbdcc2fbc5684499f643b870a2ccf0d74f3bdfcafe6957061845

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f1f92add2324d30e42727941dbc745a208242f1eb092408fdf05cfe9e602f631
MD5 cb683407cb20bcc96b530a33cedf51b0
BLAKE2b-256 1f08cefa2129787af044517c2f7219ef191f93c98eb9c086ce54a01f8a9b7784

See more details on using hashes here.

Provenance

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

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

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

File details

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

File metadata

  • Download URL: loxwebsocket-0.5.0-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.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3660c8fe2302050d3d95b14dabe32c8e5ddbf2215a522fc5c0c08519e32e4f43
MD5 59894c41ff05efe74a9f395e9d7c2a41
BLAKE2b-256 142c9becb17d3cf4dbf1ab23c316197c5887c8409593a6a86b46c1452279f7cc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: loxwebsocket-0.5.0-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.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 619cf4cee38fa3c87b25283f4988d5ab92006d88204f44b2400a7a4daeec1364
MD5 76b38912c8ab6634e462cf8d57667b09
BLAKE2b-256 88ea7c1eee07c1c18c4cb2a0b50900cb13b6a813b014aa4ea22abf57b06ecb1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0bf09f9806e94c62be0ab2274884f1028befd96018fde9955d17620235150e8
MD5 cd4c64a8d6b43ebf5317f1e7545256ab
BLAKE2b-256 9691fccd63789c66bb03aa76fff874adc608e1520dd59476e5946b95b874a269

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10af0f9ddf6e6693fcf9524cb3c5136d09c8af2fcb223a91f97d7b538b094714
MD5 6a2ed01e35efaf2ef8d6c9fd3a6ff4a5
BLAKE2b-256 3958f3e298544cb7e3296ebe910bbc85f31c0dae214e322cb9fc788ddd8936d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b464c3fabf56fc5264e31e7c4d0624ef0d2fca45cbeca5caa0050ccee6db2a5
MD5 8d70490b6869e2b4bdf8fb3333559020
BLAKE2b-256 d6f272a19c036756f6b5f0b63a55191e1028942598ab932e0bd051744e25ce04

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.0-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.0-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.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 502d948dfe92c02d1338b0b89c3d30107f62b5b540bc8c130b00db9dec6ea97a
MD5 5d6c552782e37a311a405a6508b931cb
BLAKE2b-256 f8ca303a021fe71f3a304c3c1e466bec23b7aeb1acf41c291c917517797e0c69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abe6083658276b3e1516eddb8525acb803f26c41bacc68602fe596ff08640269
MD5 ef1b33b21d7897b6d7be391c380b7292
BLAKE2b-256 202334c68cbfc64b9b0bd04ac0c870674bff56a0f930342e7f101eb3988e16ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b86aebbe6f6622d04ea3c86e461e8e150107440c8f0b53dd0f4041f72a326b4b
MD5 cafde941982c90b8fa0a65ffb5be6a73
BLAKE2b-256 3e973a610caa3b5919b086f65ac38047146f7fbb28dadf35f9b4096ecfd7d9eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for loxwebsocket-0.5.0-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.5.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: loxwebsocket-0.5.0-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.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7c6986fa536d7c80581e2c10ba810766032427347b32c0c0f652b35209721179
MD5 8fe86a0384a24350b40e9ef44a98c18f
BLAKE2b-256 8f4f630db56fb095aab6e17266fb4b6e2e5ea8a83cb01d103143941b43fc01fc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: loxwebsocket-0.5.0-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.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1234bbdaea27e23623cbbc86caa3309a191c8d5dbf784283a7541fe6967b7ef2
MD5 1aaa2a8a815265296127cd888c832b66
BLAKE2b-256 b04abe6971dc992d552c72dffb30c4a495d5eac0d1d3f55c119b018581266f10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 39310cff478a384b4a2a79ce4941526bf3e27e6c581a58a87d0965203d1848af
MD5 9056d58dae59f2b652b1b39554f21e38
BLAKE2b-256 e914f92531e1f6207b03ad03b50330af899cedd0ff9966d890bc2477d94e0b67

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1923eec801af146165f6a30054a4ba14f67c9aae0707f3c8a3df7bca26676ded
MD5 a0825b2275e3cfc5112e55b3a410b5e1
BLAKE2b-256 d14c62a0564051f00f5a9216feb969360e2d47a96b7b93eb4108aa8c362f4d9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 600afcf94e48c2b9b8caaf6c501e1f6c915229db0279708358233e78f77946e0
MD5 8b78c3d1dae82dc2ab661f9643da7e9e
BLAKE2b-256 49ad209fd1f0d71c266840b27c477d82e6b0a51006014f24c78b8aea0fc28920

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e3c3b30dd4317fee71461eaf49c36d850404c80d8e50e628b96677dbda81497c
MD5 d734525f3a29203c0ce2c797aacdf1b2
BLAKE2b-256 fe0c08d8ce6ade90ccdd811133044f21756842175f3a665c015edbda4941ebb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c43f013a46bee560ced7ad386c5bc71dc52d698446172699e12849a49f99a74
MD5 67ef37f1b2cb124f8a84e4558305bc29
BLAKE2b-256 a18a1a8f3a700ca7c637a5ce9feaa7288aad4c15c6683d04f2b121dbd3dd5da2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for loxwebsocket-0.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6470f70de1e0e712d29edab3e90d50605055b29f20ad79a8c497f08febaf3898
MD5 e97cf9b3d36924bf7b9bfd04068dcccf
BLAKE2b-256 4017c5dfaeaf02c1d0aafdc1c3793460f2c84f9bf9cbdca71ecd216f41cc68f5

See more details on using hashes here.

Provenance

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