Skip to main content

sans-io style kcp

Project description

✨ siokcp ✨

The python binding for kcp

pypi python implementation wheel license action

Usage

from siokcp import KCPConnection

con = KCPConnection(1, send_callback, log_callback)
con.receive_data(somedata)
p = con.next_event()

import asyncio
from siokcp.asyncio import start_kcp_server, open_kcp_connection

async def serve(event):
    async def cb(reader: asyncio.StreamReader, writer):
        data = await reader.read(1024)
        writer.write(data)
        await writer.drain()
        writer.close()
        await writer.wait_closed()

    tr, pro = await start_kcp_server(cb, ("0.0.0.0", 11000), print)
    await event.wait()
    tr.close()
    
async def main():
    ev = asyncio.Event()
    ev.clear()
    asyncio.create_task(serve(ev))
    r, w = await open_kcp_connection(("127.0.0.1", 11000), 10, print)
    w.write(b"Hello, world!")
    await w.drain()
    print(await r.read(100))
    ev.set()

asyncio.run(main())

Public functions

from typing import  Optional

IKCP_LOG_INPUT: int
IKCP_LOG_IN_ACK: int
IKCP_LOG_IN_DATA: int
IKCP_LOG_IN_PROBE: int
IKCP_LOG_IN_WINS: int
IKCP_LOG_OUTPUT: int
IKCP_LOG_OUT_ACK: int
IKCP_LOG_OUT_DATA: int
IKCP_LOG_OUT_PROBE: int
IKCP_LOG_OUT_WINS: int
IKCP_LOG_RECV: int
IKCP_LOG_SEND: int


def get_conv(data: bytes) -> int: ...

class KCPConnection:
    conv: int
    current: int
    cwnd: int
    dead_link: int
    fastlimit: int
    fastresend: int
    incr: int
    interval: int
    logmask: int
    mss: int
    mtu: int
    nocwnd: int
    nodelay_: int
    nrcv_buf: int
    nrcv_que: int
    nsnd_buf: int
    nsnd_que: int
    probe: int
    probe_wait: int
    rcv_nxt: int
    rcv_wnd: int
    rmt_wnd: int
    rx_minrto: int
    rx_rto: int
    rx_rttval: int
    rx_srtt: int
    send_cb: object
    snd_nxt: int
    snd_una: int
    snd_wnd: int
    ssthresh: int
    state: int
    stream: int
    ts_flush: int
    ts_lastack: int
    ts_probe: int
    ts_recent: int
    updated: int
    xmit: int
    @classmethod
    def __init__(cls, conv: int, send_cb: object, log_cb: object) -> None: ...
    def check(self, current: int) -> int: ...
    def flush(self) -> None: ...
    def log(self, mask: int, data: str) -> None: ...
    def next_event(self) -> Optional[bytes]: ...
    def next_event_into(self, buffer: bytearray) -> int: ...
    def nodelay(self, nodelay: int, interval: int, resend: int, nc: int) -> int: ...
    def peeksize(self) -> int: ...
    def receive_data(self, data: bytes) -> int: ...
    def send(self, data: bytes) -> int: ...
    def setmtu(self, mtu: int) -> int: ...
    def update(self, current: int) -> int: ...
    def waitsnd(self) -> int: ...
    def wndsize(self, sndwnd: int, rcvwnd: int) -> int: ...

siokcp.asyncio

from typing import Callable, Awaitable, Any, Literal
from socket import socket
import asyncio

async def create_kcp_connection(
    loop: asyncio.AbstractEventLoop,
    protocol_factory: Callable[[], asyncio.Protocol],
    conv: int,
    remote_addr: tuple[str, int] | str | None,
    log: Callable[[str], Any],
    pre_processor: Callable[[bytes], tuple[int, bytes]] | None = None,
    post_processor: Callable[[bytes], bytes] | None = None,
    timer: Callable[[], None] | None = None,
    update_policy: Literal["normal", "lazy", "eager"] = "eager",
    local_addr: tuple[str, int] | str | None = None,
    *,
    family: int = 0,
    proto: int = 0,
    flags: int = 0,
    reuse_port: bool | None = None,
    allow_broadcast: bool | None = None,
    sock: socket | None = None
): ...
async def open_kcp_connection(
    remote_addr: tuple[str, int] | str | None,
    conv: int,
    log: Callable[[str], Any],
    pre_processor: Callable[[bytes], tuple[int, bytes]] | None = None,
    post_processor: Callable[[bytes], bytes] | None = None,
    *,
    limit=...,
    **kwds
): ...
async def create_kcp_server(
    loop: asyncio.AbstractEventLoop,
    protocol_factory: Callable[[], asyncio.Protocol],
    local_addr: tuple[str, int] | str | None,
    log: Callable[[str], Any],
    pre_processor: Callable[[bytes], tuple[int, bytes]] | None = None,
    post_processor: Callable[[bytes], bytes] | None = None,
    timer: Callable[[int], None] | None = None,
    update_policy: Literal["normal", "lazy", "eager"] = "eager",
    remote_addr: tuple[str, int] | str | None = None,
    *,
    family: int = 0,
    proto: int = 0,
    flags: int = 0,
    reuse_port: bool | None = None,
    allow_broadcast: bool | None = None,
    sock: socket | None = None
): ...
async def start_kcp_server(
    client_connected_cb: Callable[
        [asyncio.StreamReader, asyncio.StreamWriter], Any | Awaitable[Any]
    ],
    local_addr: tuple[str, int] | str | None,
    log: Callable[[str], Any],
    pre_processor: Callable[[bytes], tuple[int, bytes]] | None = None,
    post_processor: Callable[[bytes], bytes] | None = None,
    *,
    limit: int = ...,
    **kwds
): ...

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

siokcp-0.0.4-pp310-pypy310_pp73-win_amd64.whl (253.5 kB view details)

Uploaded PyPyWindows x86-64

siokcp-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

siokcp-0.0.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

siokcp-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (249.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

siokcp-0.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (252.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

siokcp-0.0.4-pp39-pypy39_pp73-win_amd64.whl (252.8 kB view details)

Uploaded PyPyWindows x86-64

siokcp-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

siokcp-0.0.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

siokcp-0.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (248.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

siokcp-0.0.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (252.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

siokcp-0.0.4-pp38-pypy38_pp73-win_amd64.whl (252.6 kB view details)

Uploaded PyPyWindows x86-64

siokcp-0.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (280.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

siokcp-0.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

siokcp-0.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl (248.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

siokcp-0.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (252.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

siokcp-0.0.4-cp313-cp313t-win_amd64.whl (268.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

siokcp-0.0.4-cp313-cp313t-win32.whl (250.4 kB view details)

Uploaded CPython 3.13tWindows x86

siokcp-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl (288.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

siokcp-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl (284.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

siokcp-0.0.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

siokcp-0.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

siokcp-0.0.4-cp313-cp313t-macosx_11_0_arm64.whl (261.2 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

siokcp-0.0.4-cp313-cp313t-macosx_10_13_x86_64.whl (266.3 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

siokcp-0.0.4-cp313-cp313t-macosx_10_13_universal2.whl (352.5 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ universal2 (ARM64, x86-64)

siokcp-0.0.4-cp313-cp313-win_amd64.whl (258.0 kB view details)

Uploaded CPython 3.13Windows x86-64

siokcp-0.0.4-cp313-cp313-win32.whl (242.2 kB view details)

Uploaded CPython 3.13Windows x86

siokcp-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (289.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

siokcp-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl (283.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

siokcp-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (284.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

siokcp-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (279.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

siokcp-0.0.4-cp313-cp313-macosx_11_0_arm64.whl (255.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

siokcp-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl (261.9 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

siokcp-0.0.4-cp313-cp313-macosx_10_13_universal2.whl (342.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

siokcp-0.0.4-cp312-cp312-win_amd64.whl (258.1 kB view details)

Uploaded CPython 3.12Windows x86-64

siokcp-0.0.4-cp312-cp312-win32.whl (242.3 kB view details)

Uploaded CPython 3.12Windows x86

siokcp-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (290.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

siokcp-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl (284.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

siokcp-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

siokcp-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (280.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

siokcp-0.0.4-cp312-cp312-macosx_11_0_arm64.whl (256.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

siokcp-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl (262.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

siokcp-0.0.4-cp312-cp312-macosx_10_13_universal2.whl (343.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

siokcp-0.0.4-cp311-cp311-win_amd64.whl (256.9 kB view details)

Uploaded CPython 3.11Windows x86-64

siokcp-0.0.4-cp311-cp311-win32.whl (241.4 kB view details)

Uploaded CPython 3.11Windows x86

siokcp-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (293.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

siokcp-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl (288.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

siokcp-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

siokcp-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

siokcp-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (255.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

siokcp-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl (260.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

siokcp-0.0.4-cp311-cp311-macosx_10_9_universal2.whl (340.8 kB view details)

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

siokcp-0.0.4-cp310-cp310-win_amd64.whl (256.9 kB view details)

Uploaded CPython 3.10Windows x86-64

siokcp-0.0.4-cp310-cp310-win32.whl (241.7 kB view details)

Uploaded CPython 3.10Windows x86

siokcp-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (292.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

siokcp-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl (287.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

siokcp-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

siokcp-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

siokcp-0.0.4-cp310-cp310-macosx_11_0_arm64.whl (254.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

siokcp-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl (260.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

siokcp-0.0.4-cp310-cp310-macosx_10_9_universal2.whl (340.2 kB view details)

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

siokcp-0.0.4-cp39-cp39-win_amd64.whl (257.5 kB view details)

Uploaded CPython 3.9Windows x86-64

siokcp-0.0.4-cp39-cp39-win32.whl (242.3 kB view details)

Uploaded CPython 3.9Windows x86

siokcp-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (293.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

siokcp-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl (288.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

siokcp-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (287.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

siokcp-0.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

siokcp-0.0.4-cp39-cp39-macosx_11_0_arm64.whl (255.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

siokcp-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl (261.1 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

siokcp-0.0.4-cp39-cp39-macosx_10_9_universal2.whl (341.6 kB view details)

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

siokcp-0.0.4-cp38-cp38-win_amd64.whl (257.6 kB view details)

Uploaded CPython 3.8Windows x86-64

siokcp-0.0.4-cp38-cp38-win32.whl (242.3 kB view details)

Uploaded CPython 3.8Windows x86

siokcp-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl (293.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

siokcp-0.0.4-cp38-cp38-musllinux_1_2_aarch64.whl (287.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

siokcp-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

siokcp-0.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.6 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

siokcp-0.0.4-cp38-cp38-macosx_11_0_arm64.whl (255.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

siokcp-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl (261.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

siokcp-0.0.4-cp38-cp38-macosx_10_9_universal2.whl (341.8 kB view details)

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

File details

Details for the file siokcp-0.0.4-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9e30a4458773ed90bf8196bc215081d3ef564b7d90cbb9da2367c21f3bf2987d
MD5 7bc21fc8e7094f701b48849f7bd0063c
BLAKE2b-256 dd6bb41e4c710409067ae3c7a68cd583981b5966fa13e349c61131140293acb9

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53aca5a7091928e63ac9f8b0c6f22eadebb328a3c2b4b52bc1f4a4925715c5e3
MD5 1e482979e1d1c9f5fc9fefd6b6b5421c
BLAKE2b-256 76874ec9fe4d0b508d180e9660a427a96998fdeb38f1c434b7c0f9f480c02cbe

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdbbf819844ef73bac3d5a6cd267020d6828fbb7ec4ddddb4ec130f5bdf632e4
MD5 4b4b13d85a8de230ee4f49c9fefe5a72
BLAKE2b-256 03dd6f70ec4b0a12fbced36c4cd47ec13c2300d79ed55a15cb9366fabf0057e9

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f7531d3267b700700f5b284ba04eb40316cad04c260df04a17dbca678952831
MD5 6dfc55d800759909b386dbb850591310
BLAKE2b-256 57ed4342dba72de3d6498f7c7f32fbf81fb69103d71f8b5d6d284e7e7407cfd0

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 82aee3901b63f876bcbb56e8648f68c46f38f2ea91a54bae9b098f08f0d2a81c
MD5 fd04c24647e401a2e7ecfa88bdde0a4a
BLAKE2b-256 15c3f39a1d4fcbd38625cb3f48032f31260a5dc45fa12d09af4bce7f19997fdd

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ecc0cc2f6f4c6ff3040da7514d9b32875cc11061784b4c1568ef819bb55abb18
MD5 2ffdce3ac100f81c3a3c91d2099075e8
BLAKE2b-256 8b7d6e7c93e19eb3a2545aa287058305c12301eb2f4bcd783b5975e993f3d5da

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c22b8410dfe9800ebca3dfa941ef6941565799a8f6376857c2a1aa20047ec9a
MD5 86bb36ff367dac8648b76bff6766181b
BLAKE2b-256 0b713d9977f1ae1f1b6de5d136c74ac7a4925edb5fa470892f37547165624ac0

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00983fe3eac3cb4e7c7e6e887e8e12bf29aaded4a22e564070907d1ebb5a2fc0
MD5 8332a64e73a1913f4fa31825031e2ec4
BLAKE2b-256 b331aec6390e954c3a54fa45fcd4a3168de9d18f2e120020310cef3a9106b3f6

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ab984c73287873bbf234bd6ebc328f0f765ce9dec1492f75ce16a4c7ce40953
MD5 0e3bbf54a1e0d184dc63520c75e44700
BLAKE2b-256 db617c6f55edabb2c73f5241d48e5ebd3ef4fed7c32f8ac5701bb173f302cd03

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 87352afd37bfc9c9045414a066028ae2d54586dd3daf8316acf8289c19688875
MD5 a5df76562ff86b9816b0094e861d8e60
BLAKE2b-256 fbe586c92deac97fc5f4fec2e06326d1da5b34f9e6e5e794a945ec21eba5f0f5

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d8426f0e4073e4446158fbaf4d69cdfc282eba1886b543b1a79fb3cfb209afd9
MD5 c63cbe5911bfff1feb017d25a696d4f7
BLAKE2b-256 876a2d7223b7fbf4fdf73f0b7414bc46308f2becd2bd11847ed5c80513f6503c

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2aaed8d37e49e1285ca07ddaac0bff62777ae0560d3ff748119c1819aea0f140
MD5 bbbfe92c021c08d7ce79b417bb94c2fc
BLAKE2b-256 f9d3ac6c56678db35cb258db0983c78c49137b163e4090971354d8e3f76a1e12

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ef854344d24e8241acb48258227ec9391593ac7a956f37a16ad784307892c4d
MD5 e105a4adadded84154d916e1764c6d6a
BLAKE2b-256 2321eaddf4e9d8539570646b5b173e400de9f0f136ce736cbf7af02e6a7a9060

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 982f968cfc8b908e5caa10f11d02866f80fe530d34d5e898d1d1e38ffee94690
MD5 378248cefabb6ba47421645e2e4691c1
BLAKE2b-256 0a6bdd97eb18337881dad86e71a39a6e11039d6f18c41819d787e4fdd62918eb

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a018c82e9b4d1337d7e8e2906f791a4aef014ea1cec25d2518eba263ff55c95
MD5 4b3820d501983b2274aaa136cb452474
BLAKE2b-256 dd7039aa60ddb4ce39e0539ef3083d0b74322830ba2ee3bad63178e8dc7682ef

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 268.4 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ca2f0521a37b473533fdeb885c483d30a42e9e56457d2c53e91cd3e30c99e8e1
MD5 ae47da3c6939b068ba5128e353b1b3c9
BLAKE2b-256 ed4bc3014d3bb2b7ef2a7de301eadf41cde203c6eb480405155e680e5070712d

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313t-win32.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 250.4 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 8dbb0ef30103ba078f22b213711bf8553bf963b38799536f31641befbee6a16f
MD5 3f371ed84d80c46c10be9182995d1e3e
BLAKE2b-256 38b989025150a4f5c210e39da6411ab742227099622313d0eac5485054659d24

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a551ed235c2000ac5accea7ee0753dc5082c84f4657aab55869ac4b558164c0
MD5 02351239fcf886135b20bde5e9de252b
BLAKE2b-256 9dbf6a19a871c8c0ac8ce87514473c93fad8d22419e34ea2914b781c3fa68502

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf85594b252f37a7931d479507be05e7c7edca70d9d0c4ffdc1d539e0b89eeff
MD5 e44cca796ecfd0fb59a2f3bd770b267e
BLAKE2b-256 df80b077f5e0f9c60b2bcc83a4e11bc767cb1801f7f4b220152b133473f008a3

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 702cb9c68e2435ea33a0cfb45034e186aa09475d0f69f24eebeb163a2f4d7e83
MD5 44b79cffada98bd48eb6a20ba0cfdf29
BLAKE2b-256 e732107ec7847c5d2838c55795810899c3d3bbbd610dbd38b20425d3db8cbe1d

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c05c9231fc1ce0079c096d9afc5a0bcbef3cd4abc87ac19fb15c887bbc8e557b
MD5 503276610fb467253568a5e0ebadd27e
BLAKE2b-256 eaf0173e7a2e66d0fc334c8e279433513df406d337bf31c6ceb917d9ca7aae3c

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 094b69c61a32ce387f454eeed64a67075be90ea51ad973f9b39e3ba1bb187b2a
MD5 c29dc5efc63acc8420319d5c4337bdfe
BLAKE2b-256 fc3a82d389ffccb4aa05882935a19fa15786f8694f1d3f02930d8fdd8698b1d9

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 7c962a30d607c88f830cdacca000d3dbc0b36e872876aede6195f93edb059897
MD5 0fabb4d68dbb80208f1ca4f581dbd01c
BLAKE2b-256 024260d1e4480d2a9a2ca12f3922fe97263c075fe8725c9447b778088e2f507f

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 80c12819014f4d7ffc6f0033471dd6f14c95435fc1a1c97e1d32efe5360e224f
MD5 6255bb3fd0d38f9695eae392a804632a
BLAKE2b-256 7d5214408e998d8ec7a666f88e9dd8634cab307c966c42452a37f64dc1907d0d

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 258.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e49d1bbdefbe87602951c99b19bf09e35d82170a4878578ba9d8eeb375e0d73
MD5 152874b03d58d27150a72dc58b1c1530
BLAKE2b-256 4d8892eec6e4884ee5696e06c424e834f86f21a28baa25de76779530ccdae06f

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313-win32.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 242.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 85633169a6a232477498bfe0c9fded435c38ef556b7941ee8ca350f933396dbf
MD5 833782ea47a7d78dad3cc9b1e2d5e7cf
BLAKE2b-256 c574d17fddf8f4470a6f5c1816537f37247fcb12d6b7130c9b5f5196eb7271f5

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abade65397c7d41158b38c73aa2dde752ccca77bd546808b09fc2ad92a79cc78
MD5 dcbf59c5069258eded87d415a04b7278
BLAKE2b-256 60ae74b15a7fa8eda7c1b432d81265e723cc391835932661cc58f8e344ed72e9

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b96b8cd6c85aef0dffbf3e34588e7a7777fd658b36aedb321397c335361969a7
MD5 6606d4994b6eea81475a407147a9a80f
BLAKE2b-256 cd9d2f2ec8c8ad6130ea64b64ddd5005dc444ad7430aab81950e8a168d61010e

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cac411b7878b3abf6799f09dda9a8b626d75e5e810e047a79aeea87bcd03d7e2
MD5 e48e239c6e4fe932357097d61de7ef2b
BLAKE2b-256 137532d73c59d97d11bb78ef3c19320717a5a1d9b36ed9cce0fdd0dc5b3821e9

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f9b5fe7ba2603f25800a7e24d3190d36260959ac2a2358d9c05f8a95b27610c
MD5 db96daba4ce138b4cbe6ce3337d856c1
BLAKE2b-256 f7cf176dfb17f5b39282d822c733f7ac93b7a0e24492d9cc93ae104fe4d5873b

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1ead55c164a00e038c2ede8d5717f07e8c5f087c2146a7618aafc50aca57a88
MD5 d028c1fb39966557c8e729b826a3470b
BLAKE2b-256 1052981a0a0ece41bb8bc3643638dbb970e76602d86fea5ff6d8e52594616a31

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 04e34101d0669b28a71b051bda50c29842a14e28adef9ebafd35df74dbf18681
MD5 5c3b3eb8b3585e06ef731b2733630cee
BLAKE2b-256 84dcd0e34421cab21151542ab8bd259dfc7fed7b715fe84d7faf97aef888ba86

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 62f03dfbe47e1a135ed06b9ea8eb2b792af62746000e2626ab35bbb2de3a268c
MD5 d63abc3653a628a33adb95c0ff7a8d26
BLAKE2b-256 4a876b5a846dbe2d8edd9ec08822895dec114dba1ddc9bc808645cb5a7a1030b

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 258.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a90fe1fb2764f5feabc09753536930ae3d4c0f8a9afb59238abda6f21d2b8191
MD5 3f8f4cf2990cef7cea730d903876e749
BLAKE2b-256 cd88972fe1d0a1abe7972189fffd4f05333ffc8f9d9352aa28dc4ffef6e7490c

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp312-cp312-win32.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 242.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 235627af43a322da6620736642293e74af9d97db569159388110dc7f17f2408c
MD5 cea764ab3d7576e3cf5affacde082bb8
BLAKE2b-256 37be690c2256a7b90297a5c998e25c2456df2ea394ee31397e206c138b7c35d9

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 678630d241ff23bc799156bad8aa910569a0138ff34240a9b3e67e5dcdc6749b
MD5 8cfefdb6bfda910e1accdd2bd26974a4
BLAKE2b-256 82a068860fb9a78aa0fcee3998c674f80b43ef7acce9e08dd8930a5f277b3029

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dddc8424143d8e1594e6cb1a9fe7470a8cfef0e01807c25275db3d80ed305125
MD5 cc7e3c318e5d749cd11fcad9a86f771d
BLAKE2b-256 b88700014796c5ab02a9813019ee623bd561602aeea38fbbd4bd74c8173bc7e5

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 605b12d8998aff436aa96afc54118fd06a8a1217a71bc6b9a333fd31dcb72f74
MD5 93d689d223716a7b16753cd35fca6e7b
BLAKE2b-256 bf3fc5cec8921c41e33c133f95dc8d5faebbb88542812342a9667724b0427733

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 830c77ddb07d75ab044675612add0e05eea44cc91f857b8212acd4b67c8c2136
MD5 00d383f2ae91d73a9bfe37c879bfab63
BLAKE2b-256 8075f4064f837d25dd50e270002d6ac4ff530506c07c97370d74153f6e96b35d

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1814a74d2461d4869ddb8c45aa50db65d3babb76ce2f7c9dba5cd26ef21e3d7e
MD5 fcfdb8bff757f92a1ac49164811a837b
BLAKE2b-256 ac3a654bdd0b6dab1618c2580ac1e4e2c2a90cbd3b55fec265a41cd10209efcf

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d87f9cefe1ae6314f2ba06e30324ea731dca93aae29715f473685972adfc164d
MD5 e3a9b984e523889439ea53820b22ba40
BLAKE2b-256 b526169656936d3b17069d013fac9a0312cdea84fb71a23cecd65c4bb676d178

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d6163675163b824841c4c714dcc8268e5217ea6444339a892a45651383e4fc6f
MD5 747f075ab79ecf29d38dd6e1ea068666
BLAKE2b-256 8ce7d2e82d7170d50bff4c4fe4d742f07cf4c0e4436a8b8c8e8df66f1e9ab59e

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 256.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d69f0f10397e021114b1a7eba1221daa294c34ff23c6ce6e41af1bcaf5afb403
MD5 39d25bd72bb440a0ed73b0a533ed52c1
BLAKE2b-256 90a0a934d41aa8ef93ce3ad2218c59f216b2552e56896b4ed3bb52c7e76e67ee

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 241.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9f367a17d0b3ba010fad64e020449c477e1aaa55939d8a73a439bc1fde85895b
MD5 a8a744328e97d331d03c5e8abc35e7e8
BLAKE2b-256 8d52182b4d834a9df43d5f9c299cdc6495a327805485c7f074ad84cdf4f64dd8

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7d1e8cc457140df7ffacabe96d3b6dfbded6c32e9117c5e0d7ccb0bdd21ad51
MD5 3ede5f7ba13076d1638c7c228033dd8d
BLAKE2b-256 edade5e8c0401965b1124128043e0d8b482d0b5c1596305903493e95817fe2cd

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c72386d4512602dfe1074897d0b935ba7c88077315c8f1e1b7ae27ed655d1d0f
MD5 91cfc7f55743b2cadbe55568dfab4f1c
BLAKE2b-256 d05e35f4e341c5414f6efe898a740ced8a63c9e6c8886f93f25f867b0733582b

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adbce293603cb9db368f7eb9e4ba3fd3948f2ce0d4f4f04da18f33b05e5e7a23
MD5 4275d774d91f736155424fb6017cc509
BLAKE2b-256 e6dff3f2cde62b4db69412fc11c783839dd95c253d8e086c50cecd0d938875ba

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a91fa8bf72dbba8f68bc7c130896571e854c04365a2f4f71be88ddd94c2c442b
MD5 7f981e76eb999c51a02ab584580f921c
BLAKE2b-256 58401a170a3bb3621f038db76eda8191257b1d016185e57ceadc7c6f05dda764

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 689b5665693711a4898afbfe7a0282c592ed34adb711c527ada0b92d80e892c0
MD5 0bc87664f22aa9b1e8ea49daef6ed30a
BLAKE2b-256 fb291dd72d9d3f7af4be83d48d6d59c645033549ed4ab04afd072a9102905e57

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6caff2f5a3b3c36084537eaf80d96a4704cd2c54031aac4b79e9f1bb48219a8
MD5 c8a512762814a17f8c0b1e343c2c3fd1
BLAKE2b-256 8a668519cdbdcccc31822d208c157c3abb16e875e23b67c4ead5bf6e65325040

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9d0586e9d88f9ebe45ef6430404203755e6eca967a6874c3031790edcc412164
MD5 0c9704060f21cefa9cbb60ed7e164d3e
BLAKE2b-256 64fc38a788cf596ae13fe256a8ca67dd77680ccd6232badb80a02fa8f88b53ee

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 256.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6c314b8787cd41d74956f7783b1d5ff250bec6e712717357942c54ae5d4b85fe
MD5 15a10bece2540989af5604193a748646
BLAKE2b-256 8fd8b47a9f4efd517c6035b52ed52720ee0731929cdc9eb12b3ed73be545bc9a

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 241.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 46b3c7b339cb119954559cdeee556f9c9f39f18f2cfbe94c3dfcd65ed6907396
MD5 1beece36c6207a77fc1d402c4299da9b
BLAKE2b-256 b9204199756d302efb64f06c0acd7c43429383bf25626f7689caa15703b5ff55

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae6893b205e292e9535bf390f89b4fb440f08d78a0bc45a0fe70ffa5619f9504
MD5 249b404c4a4fdf668319f672c33c62bd
BLAKE2b-256 aac80c18e2cb83fa7eb634404a795531136a04a14a79ca04c2548742a2f2a6f7

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b6b0a6aab33ae8c0e0ce89f3920a44eafec29262d77e77a7303a9812cd18f95
MD5 008c0747100af0d56cbac82630557ecc
BLAKE2b-256 f339816268fdd1e0fa2c4f4194a66036bd30fcbdcf8f6e9a135a8f946376ff93

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba1ed9d0ecdf69474163e7372969dfcf422363215ac68523f6f1092684665c2c
MD5 5836d4cd8981d758cd3c8f0c047ddafa
BLAKE2b-256 dd778a2c17f9465e1ce66adf33c1f4db980541a6f1a2b974c5c2fa9d8867ce3c

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c69bcac2deb3a1911e476ae25ca194157f4c035b56be4078106a20b2908161be
MD5 980d697e490a84385835afec3e8eca91
BLAKE2b-256 ff806801380d8cad2e1d3d8c8db7b632a6aaaf3b7c02484b8add825f79ae14b2

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef7f8ea1b81b19937f1f154abe8f14dbe1c1db1f2d5e2b05a888f21c167f2794
MD5 f93eeb478a6eb4f0c81983b76be79839
BLAKE2b-256 3e8e8631a0eae1c947c839b9130330232f87ab01dc0efc353efeed0363da98d7

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0c82468999d8ba20f78be33320d91e150d6b6d9cdca3394aa955c00a4dff9feb
MD5 8e0253069015342ea75903a26b59b0a0
BLAKE2b-256 17759db723dd020561cd11d0ef1570a6d6ace2ecb0208fed014aeb2a35253b76

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 62d36c96328a7b4b4b14dd498f656af04a140f3fe613b828e0419e2100498661
MD5 cf43db6088981bb3485dcf433629eb7b
BLAKE2b-256 fc709fe8a5c6a28948f3ce98b8fbd6633904258ee438238fad3e505f0a194404

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 257.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 310841dfac858285371a472a81461d49f161d39eb27a1e9588be1af989696c5c
MD5 7bef8e4e1e191b83c7dc991525f0cdfe
BLAKE2b-256 c70c53dd1416daa16a98fed6052de2badeeeb71c10bf2f9dabb3e5c86eb66e89

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 242.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b349ea4f7e3da6073cab35fae6a62f84b6b6dc62152f57802fc2b8133795680a
MD5 fa32bc25d0b5c3a568f8b936bf9ef086
BLAKE2b-256 3899096c3468c050df746a744ee894b2b0b76e966fc00c5a219723ea1538101e

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 611b2341fc50413da29d546d03d6f75addac5108b3033b7dbd65071a4a8849eb
MD5 c48648fdb7bb57d84e39e6c4187bea18
BLAKE2b-256 9cecaba1a6faee310327bd62f6926364d6e30c6dd478cbc7c7d0a7d8ceeb9e5f

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 545adb42ae52f7d2745ffec9119c69cb820efa2667571104a59fcaa80e4fabf3
MD5 4e83d577cecf0aaad8c04cfa23235765
BLAKE2b-256 d8f469513d3021dc88d57adda2a17c7370d8da0f285a1ae22d289b821dbb4b59

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa219ab4ddcff8cfdfbe9b50f7b639cbb529bffd8d98fb696319dbcba6416eba
MD5 e3c8e94ec8f307a83c3e729e0fdb88b1
BLAKE2b-256 cba9aaa9a2185dd9d824b9a7667f7048f6bd909c99884d7c79bfb0d6da12e6ea

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73e7aa39028b6dd1443408237676912421738826ce7db967afa5f4117d87fee2
MD5 ed38c7f016f42106cfc31d3c674e839b
BLAKE2b-256 862bdc7c151d0898a4958c44409dac0e4a67421d681e87a3f03c822116426cbc

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a9e68a4b48586d8d9ca489331dad1848f4c9a2ce2722a37e9d3fda66290e18e
MD5 b60fe9bcd3f6f645bd95e459323a93dd
BLAKE2b-256 fdf48a3990d193da8b7aae0bacd6c5493de41b8707b4eb973aaf09d240edfe31

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2efe5cb9833b894740072fc938b57dc30a7d96a9e4a31710cdc3a2eb56ca5cf
MD5 cfa9a99872703d99ddfd8f9301521b10
BLAKE2b-256 b3bb721b3ee5775d2ef621d1f3a58c76e8cedcdf90345ab763c8c88986568ea6

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f1aa696f7b90be4d3299626fe59d075b1951a05a550a59e9ed6a2aa9d9df1832
MD5 3204a72ab6b11aea662b4e234871fbfd
BLAKE2b-256 5a873029839903057c89665e1abdec666915b38ab3c59b82b78d7da9e052add0

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 257.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 86ff4810e06e130174893a3109b89384c59f14c087c1397e676a169fa04d91d6
MD5 12aee305879c4736db3dd8e36a551d4b
BLAKE2b-256 1722c9ac6e9d677cafd081ebc31cc7f2cb891bbdca552b9f159fbaf89415f517

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: siokcp-0.0.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 242.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.10.11

File hashes

Hashes for siokcp-0.0.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 58b5c3455e48567e192812cc9991b485a23a1ef409bd492c75c004caadab6716
MD5 e7240c2e10da2c9bb6add5e369b48061
BLAKE2b-256 076c09f00d8c8ae70d9effa248f564dc6b2b8edab89c2d4da24eeda9025c5b49

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d84ba00704f0f6ccc898d933f4e075b1046bf7b61145f08864e6a886e6a9b72b
MD5 e416f8450bf2981b301a5942042fb149
BLAKE2b-256 976c7dc1d5488b6068a6bb22eb7918efc174ee963a50360db1777223ab87d4fe

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b01bd3d2e89e46d524045b0f26a64fd5e8e865469421663a9ab5136c1c85fcf
MD5 21aabba5d84b766896ebc1aa41f3ab17
BLAKE2b-256 d15c0f126ed6edf3d7275de8de7841ebf4ff70b303cb6a6a7be276a6c32c897e

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44ddb41fc92497ecbcf83862d98b0fb92de07b6c457b166442e31af30fb3a91c
MD5 ba778afe384b585877ac03c1101e4b40
BLAKE2b-256 3b54d859d0560e14d09221380353258bef169dff6ba4560f0fc8796c7d8a302b

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b824c406c2072469f7575a469139ca31a0ae4a935e91fa2b8a1fd314df708fc6
MD5 65bb7e968b65eb6ea0e923ba21c8603e
BLAKE2b-256 ac6a2b2de817b7a03d5d75d207e00c50cf64591072fbd79e7b7712939891802a

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5766a0b47adbcfca2e5061c9fdb8bc340c8544688220acc35b3de172600d0d21
MD5 815bed21ce8bfe4cfa084702e5558ba7
BLAKE2b-256 bec5a7b2e8a727985a0adfc8dd84ad6447bd97fb86fb5c10415d0828a61f5e45

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49fdbdd136c0212e969066a88bbe42d18ce5f5bc058947df2cc684e1e0a7e7db
MD5 f50d13e6109b8bce0b941374706e10b6
BLAKE2b-256 3958eea76d0f6f483f40a25024a9ac41bd3d720f850e5b62a5f525fd82ce5513

See more details on using hashes here.

File details

Details for the file siokcp-0.0.4-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for siokcp-0.0.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9caad9a8e834cf030195576c17ea62fb1a6296d6268f6aacd9f3aea2705d336d
MD5 15563f765ae7d41fdc30cd14011d07fa
BLAKE2b-256 fd103a783fe589899ec01cdab5d6507504316ced77bd6236841fa32225095fe5

See more details on using hashes here.

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