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.5-pp310-pypy310_pp73-win_amd64.whl (254.6 kB view details)

Uploaded PyPyWindows x86-64

siokcp-0.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

siokcp-0.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

siokcp-0.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (254.2 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

siokcp-0.0.5-pp39-pypy39_pp73-win_amd64.whl (254.4 kB view details)

Uploaded PyPyWindows x86-64

siokcp-0.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

siokcp-0.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

siokcp-0.0.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (254.0 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

siokcp-0.0.5-pp38-pypy38_pp73-win_amd64.whl (253.7 kB view details)

Uploaded PyPyWindows x86-64

siokcp-0.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (281.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

siokcp-0.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

siokcp-0.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (253.5 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

siokcp-0.0.5-cp313-cp313t-win_amd64.whl (269.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

siokcp-0.0.5-cp313-cp313t-win32.whl (251.7 kB view details)

Uploaded CPython 3.13tWindows x86

siokcp-0.0.5-cp313-cp313t-musllinux_1_2_x86_64.whl (289.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

siokcp-0.0.5-cp313-cp313t-musllinux_1_2_aarch64.whl (285.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

siokcp-0.0.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

siokcp-0.0.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

siokcp-0.0.5-cp313-cp313t-macosx_11_0_arm64.whl (262.3 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

siokcp-0.0.5-cp313-cp313t-macosx_10_13_x86_64.whl (267.6 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

siokcp-0.0.5-cp313-cp313t-macosx_10_13_universal2.whl (353.9 kB view details)

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

siokcp-0.0.5-cp313-cp313-win_amd64.whl (259.1 kB view details)

Uploaded CPython 3.13Windows x86-64

siokcp-0.0.5-cp313-cp313-win32.whl (243.4 kB view details)

Uploaded CPython 3.13Windows x86

siokcp-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl (291.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

siokcp-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl (285.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

siokcp-0.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

siokcp-0.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (281.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

siokcp-0.0.5-cp313-cp313-macosx_11_0_arm64.whl (256.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

siokcp-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl (263.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

siokcp-0.0.5-cp313-cp313-macosx_10_13_universal2.whl (343.6 kB view details)

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

siokcp-0.0.5-cp312-cp312-win_amd64.whl (259.2 kB view details)

Uploaded CPython 3.12Windows x86-64

siokcp-0.0.5-cp312-cp312-win32.whl (243.5 kB view details)

Uploaded CPython 3.12Windows x86

siokcp-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl (292.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

siokcp-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl (286.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

siokcp-0.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (286.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

siokcp-0.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

siokcp-0.0.5-cp312-cp312-macosx_11_0_arm64.whl (257.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

siokcp-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl (263.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

siokcp-0.0.5-cp312-cp312-macosx_10_13_universal2.whl (345.1 kB view details)

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

siokcp-0.0.5-cp311-cp311-win_amd64.whl (258.1 kB view details)

Uploaded CPython 3.11Windows x86-64

siokcp-0.0.5-cp311-cp311-win32.whl (242.6 kB view details)

Uploaded CPython 3.11Windows x86

siokcp-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl (294.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

siokcp-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl (289.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

siokcp-0.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

siokcp-0.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

siokcp-0.0.5-cp311-cp311-macosx_11_0_arm64.whl (256.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

siokcp-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl (262.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

siokcp-0.0.5-cp311-cp311-macosx_10_9_universal2.whl (342.3 kB view details)

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

siokcp-0.0.5-cp310-cp310-win_amd64.whl (258.1 kB view details)

Uploaded CPython 3.10Windows x86-64

siokcp-0.0.5-cp310-cp310-win32.whl (242.9 kB view details)

Uploaded CPython 3.10Windows x86

siokcp-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl (293.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

siokcp-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl (288.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

siokcp-0.0.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl (300.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64manylinux: glibc 2.39+ riscv64

siokcp-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

siokcp-0.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

siokcp-0.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (304.6 kB view details)

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

siokcp-0.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (299.1 kB view details)

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

siokcp-0.0.5-cp310-cp310-macosx_11_0_arm64.whl (255.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

siokcp-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl (261.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

siokcp-0.0.5-cp310-cp310-macosx_10_9_universal2.whl (341.7 kB view details)

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

siokcp-0.0.5-cp39-cp39-win_amd64.whl (258.7 kB view details)

Uploaded CPython 3.9Windows x86-64

siokcp-0.0.5-cp39-cp39-win32.whl (243.6 kB view details)

Uploaded CPython 3.9Windows x86

siokcp-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl (294.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

siokcp-0.0.5-cp39-cp39-musllinux_1_2_aarch64.whl (289.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

siokcp-0.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (288.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

siokcp-0.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

siokcp-0.0.5-cp39-cp39-macosx_11_0_arm64.whl (256.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

siokcp-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl (262.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

siokcp-0.0.5-cp39-cp39-macosx_10_9_universal2.whl (343.0 kB view details)

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

siokcp-0.0.5-cp38-cp38-win_amd64.whl (258.7 kB view details)

Uploaded CPython 3.8Windows x86-64

siokcp-0.0.5-cp38-cp38-win32.whl (243.5 kB view details)

Uploaded CPython 3.8Windows x86

siokcp-0.0.5-cp38-cp38-musllinux_1_2_x86_64.whl (294.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

siokcp-0.0.5-cp38-cp38-musllinux_1_2_aarch64.whl (289.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

siokcp-0.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (289.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

siokcp-0.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

siokcp-0.0.5-cp38-cp38-macosx_11_0_arm64.whl (256.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

siokcp-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl (262.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

siokcp-0.0.5-cp38-cp38-macosx_10_9_universal2.whl (343.1 kB view details)

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

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9516149fb313cae38e82351d6db86616c1b41ad01d720f625e6780bb6e5de9be
MD5 02cfdded56ec3e6c7a1597a02d35038a
BLAKE2b-256 7736948a07f527b3428576c983379e654cc8347d5cd169a9c47cc10ca3c7309d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ea6bb02783424d9cb39e42bca1a4a81c8c7ab25bd2a51aeecb08fd1fe203118
MD5 787eb9d564e029063c9207546e6c9893
BLAKE2b-256 5706fb78f36ebffd4bbf383c50d7ce9881d584235ec7de8ef527404787cc88fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb56d46a705ed421008ca47036ee8f11dc87717e97bedba44795cf23973c0a92
MD5 cf8a31dc05019af9b9d93a7dd807a4c6
BLAKE2b-256 245ba9de4ff551cda46db08f281b34a96803fccaf562d462a69603bc635c1559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 919f3cff96f6d6d542e1863b63817a0a1f556d65a23e3b51ffcb8875eb862d6c
MD5 bcdc45fd80f0d392b133d1d7744fd2bc
BLAKE2b-256 cb6252060c679055200f5ebf76d0418b5e422ea6d0e0e6e5f592510604e0d238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b9e41b9a59dc5514b55f2633f726ae7dff8b968ff2be18b0abd8e004816f7758
MD5 1c0d2b17e9a43ef196e2d0bda9af1f7e
BLAKE2b-256 d01781fd9fb4daf4fc8ee2f3b0a1aafd4db9d748e9e1b50f3eeb8dbb020cbd44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c54e2b3731ed3f07dcd1de0acc0baa12c2162ecaf6e7e85a000126519259125e
MD5 eee4ef38c3ffc4b3abe6831d9a771f7f
BLAKE2b-256 ba3847a73bac505d4dc746eb0cc538383e2d32c3532b19f3a0373e758d8cee0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdb8b179407a1d1ee6558e092be0f0c1f202b6574bbb1cb1283a96677cf80af0
MD5 bc320841df64df8ce685d83d4824e9e5
BLAKE2b-256 9867a50125bf15109441c5bb854e7e93df01b99c4847160954173aa757cb728d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 60dd7c505790372c4a8ff43e96bf464ef5659f524d479547d40434bfd69e9c1c
MD5 e00335fca93d97744b052fd27ad897a5
BLAKE2b-256 784dde038a487b1a7258a371fea234312ef4f7a54d0707e038263c96df3970d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3362a928539baa842a52731b0bb01e2191b07becc231be1dc37b578748dba832
MD5 18c3f852432b3ee6ca22d3d1619dfebc
BLAKE2b-256 7177c04a66a42b89f472b8e434176fd2c72d082f3fbb6cf17b550ea33e47c3d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 956df4504da4ece4dc5d65f1d577c0eb1de1fce526ffa919cc85d5e8b833732a
MD5 e2a922ebe380b597bbf485344c139b9a
BLAKE2b-256 594e53d6f4ba2ad32952e98149b542113155f6edf098afc2f0b405ad2168744b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2436bf48944f5e1bf27ab6a68a8509c4cf7563d349f9afbff2b5064f2e77c40
MD5 a33a6fcf36b4ffd955377368d7cc1bc1
BLAKE2b-256 de8df6089b37fef722d1a603fa3028236a2f4b4757105a0ba33fc3b79506afd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b5ee9e714c32ee619c6a2d1bf300be87cc828cb502c35a7862f4b65d5d0c6f65
MD5 bb99b7ba25c71bb6beb0a3636515b430
BLAKE2b-256 8fc7816fb200d248cc5f30c83d8d6eb1f740942179158a13210ffdf84829c280

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 9d2404e6a37e765f14baf0253bb0a6780c2e2f02b4691ecff7f96ded1e701775
MD5 99179e7778fff0b83b8f28c8404e1eab
BLAKE2b-256 202673646567b0e74b4abbf76b28d4728e698c6d36ddb413af36e8752c7d0595

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 58f90437bf4cac8eb24e8b53ca7ce31d3f4b9933a9bf1cedec30bb776d41fc98
MD5 206af785030564720489700157930a44
BLAKE2b-256 9010d8e6afdc64e92fcbc53e6508d2fc56147be1748cad5233d16ba514de91b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3458ff48ee50a367e122430c79bf2be9a9e1a04aa366d651ee31fe3d5454b273
MD5 370be0f72e1987bbaf86ca7984896e79
BLAKE2b-256 29603bcb3f7e9aa5e1e43bce6a0738b3d8ce653a8e16460ed380bbe20fa4d733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8fc56ab6c41b9f246d999963942ef7f7da929909af70df4308aacf4c19366f3
MD5 059f8f49787d43c53fc74cb2958dfc84
BLAKE2b-256 a329f995599a8176cb0ad8b6a138daa09216604fa3f2d95c1b288cc57168cbf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 721712135b0e6b7e15d10537f9184e2f46b9c73eac8b07e2d563720251072c0e
MD5 b636545446192f1d57062ce951df0dca
BLAKE2b-256 e0ed7716064beefc9667f8389a9133f3acdfd0b0950dfc5e435df3722132cfa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a63a5b8e66f3932465b71b787e9d8ffe31d42deb37fd64a56aa8907871552798
MD5 84b061d1c243ed5f7abd4d11a669d6f8
BLAKE2b-256 2d998937762155004e64201a3a84960c587469d9f01e153f70880736a7e32d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbb99ce9466885101ee180baa88a2df59f24d62cf26c5cface988e1e9c6c58fc
MD5 8881d2eb924e6f2d62d27f90bc461c62
BLAKE2b-256 097bf3327452c8e188d2258410aec130763a07d68c65698cab3c77deb00a79e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2d8a4edf3abc027d95163991d5556bad7b9d3519fdb8ca2017b8268042699c6e
MD5 670b7109a422eb3dc64313c907cb05b6
BLAKE2b-256 3b0931a5162181f4cd79fa393ada91108da0931f31522448ea6eb7e3e98a8bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 7edf690e6d0a6a9c4900823d6ccfd078bc5e96498ff04dbaa2ae57d9f8df355f
MD5 ef9bacf47c663afc19e72adc6f87f363
BLAKE2b-256 3317c253e940c2b32abe05f8d7014d29e284f257b52a6d4b5faa17e5056dcf04

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c5bf2c0a571cf8bd868db075b525105f9ee2b0766c0512fe31a2ac1909cfbe15
MD5 0d0a2f1c9586ca34bcbe9e0a165832b6
BLAKE2b-256 4a631f30b423d4f21f88455af0bdb245de3a9db1e942d72cc76ab25eb86cd15e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f24db30b0ede0709e6460ad83fc9f9aba01a692dfb6ee3bd15c255ea36fb77a8
MD5 c7141a0b0350d822d62e237476040527
BLAKE2b-256 3c6a51c78cd012831e4bda73990fa1d1de2d025dd31391983816cb4b761f697e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8439d786ad9f8a9f358b82b1715af9a479fb37e4e14a3f68332ef492287f4f83
MD5 6c52eb8347a650a732a1524985fc9bbd
BLAKE2b-256 3aae259480f283ef85d1e3e24202538800b746e794dc32960f2783a8ca1adef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 10f5bc14d204b28ff245ca6f9a8de3e1350764dbe8c4ec4da4e6de0afdd353a7
MD5 b27245558df1e44f2fb078da28c4ccd6
BLAKE2b-256 776943522ccadf121589d6af346f0af823724380fce86dc3ef141f335616ec89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1cbc4fe5e0a3cee015381cc9ae757087357c62b1f725141f78377a29eac2582
MD5 e2d61fafdab9ac51b26e7b3b6b761c92
BLAKE2b-256 034cf6c722e658aeee61b4b2341183271d73eb26efe1cbb42b8c2f8cb6bc0d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97c41864d6e5cfc7d11f65c526bd531ac59e00b0ca4e435da19cb1123868acdc
MD5 841c1b77043f9d411e8db865c0271bc3
BLAKE2b-256 7e157627f04ba1b790ef0767ebef3df3d0de9ad6b767c2e96163ae85344f5f71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bec02ce2ac405740556b6823a17a6f7fa59d802137cecdbd37384ef5f7bffe6f
MD5 9d3b9c0a377ffbef8d6bdd818a8635e6
BLAKE2b-256 6f00040780bf372fa7ef218a2db04d108fcdd48f7209b326e546b34a6e4dfe80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ec046a2aa3daa2318a005e55120ef15978b35f234e702bf11d5c778bcd87e779
MD5 b8330acf50f61294d186343d6855056d
BLAKE2b-256 0d3514cca99155727aa255d9f9a9f4618d430c5886f0d8b3cc9edbc9f1ce9101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 260dd7eae9a7a6889e06a7e1a9ab4ef29400286bbc45daecc4790c81573ef033
MD5 ea790941b47a42059e40ddd12cb5a23f
BLAKE2b-256 5b5901581b30d4d598e145423f2777247a3d53e4291b5e039b4f7fd455799072

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 447adbffbb9a40b7c35d74d59f3c0d0c8c8109fc2f6d36a83ae780415563eaeb
MD5 27ca0e19360cfb52c9983026acc7accd
BLAKE2b-256 a0b6b0081d208ca9ffee0bd937ac35d951a22f0be3cd4147c4ca5acc735e19c4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a105bfad1e604cbf39316dd4a33a9cdcab57b33c7069f162ed39cab343a2d773
MD5 67d30ecb64dd15695cf6f9c3f5d3ee44
BLAKE2b-256 dbb81c3a3e3226c356e2c537bc52d4317bcbcd245e8dd9ddac6f2bf3c5c7be1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e03766e7059d5f03ccce9863ef9ead0aff11680d01cc894c6c8330891d3b89f
MD5 279e42799f8692102fdc4c78071ab924
BLAKE2b-256 edbc33f6a3e17f4463e0ed316f038c2b6c7b61465f919c46c47149a0421d4ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 573665485135b87679add8d85b4aaf9bea5c89478b535900bd3f21e36c677359
MD5 10a262208e67c305bb6fbed58a041443
BLAKE2b-256 5085bb54868f9201b2fc76686e9f312ded179caab91ec613c490770a0d7479a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 06a8cc88a0d63b4dba56ef1e8b33df0164aa9377d14439a745a7f0ed61a5e183
MD5 52b385d83a3e5851b18c075f8f20bdcc
BLAKE2b-256 9fca49e4ef944fb697bfff6cff48e7061c377b4ac770d379b74cf3c16ea8d58b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 864cd00f151bf090b15fc52652f4086edc8fdb9183afc597d6d6eb8edfed6fb2
MD5 2e7e1c56e364bd490306bf118b33939d
BLAKE2b-256 c8d76d4670a0b896b43038758a8048a0116c0b2215fef5c2f20b835666877ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6e79ad2b63c950bc22433b83e1a5a67281e3d6ec003c36f49aaa9ee7ab2076a
MD5 b5519a86edf9a09ff170ed6258033c1c
BLAKE2b-256 1c3ce802016e2ff7a68669142a86c5c41dde4d74403921fae654d242250646bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 75c77342b82dd43292d74afe2b45b11ec5ad3610ba5110ece724273e02c9580d
MD5 21e3d2461060c88ff1bebff1f26fb5a8
BLAKE2b-256 5a73cd2f39c9e781d6e136a9ce7e648f506725853c35de7b88151ae75c06ed5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 24a5cc3b6f262e2375f2934cb9034dc51418bdbfc1f8ce893eeb9cdf1650f203
MD5 736c5d1245dd00808869218ddc1a2aa0
BLAKE2b-256 0e411c42d479254ba279f57594c21f31122f8f3209771285e7be44beeadef8e5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0a652ccf2fd16d3d6d0f00b0f359e4fa93823db8ff9cb6857c2030c9d870a2a2
MD5 13fcba9916afb0c9cce5688134ade92f
BLAKE2b-256 07ef0456c6380858c4dfcbb682498321f7758749ec34c78942233309133add13

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4485874f07cbcd2aefeca40ef2c4def53858be98816e8f9fe4dbcec5eaea5827
MD5 26e90192e98fbc72a08b7d288e013803
BLAKE2b-256 be3477af873d7060b9bd8d121c553d44284c46aab0767241b1a751c835566ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 619a72351fd814a4963d191cac7f3245f0e5f251b59bc9995b66805bb462b5fa
MD5 53a83fea6a8d9463d1fd4efd9b7804c9
BLAKE2b-256 260705ea3f1bd39c18c5708dcaf31c0db99b5857acbf6b3e2812fb6c668296c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 808fadad1879abe51fa942daca099ee50846f257f44afc5d1de281c9a0f75739
MD5 641363d1e9628b5fe7f6eb9d27f9318e
BLAKE2b-256 61fcb013c0ac230f4bfa94e0932223ee2158cc8881a5ab8fada422fd605e0412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0a72e144235b7a764c1fd575042e1f1647ffd93cd0508b3d2498e58ccf90521
MD5 0e46a7ab14435886afedfce9b0122b3d
BLAKE2b-256 ddadae8d103f896b5e53b9e3905380404e6f9bab3b0accf70ed9af0de974087a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 302a14000e4bf588cb5ccc0a10414c13334703fa97fb3ef053574670b4817189
MD5 7f5ae9e85bde143a4ab6c02888386772
BLAKE2b-256 d651ff4ed1dd6f59a15a80664257959befd7aa65655d81b61defcbd412311f7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33dd87ac4da4d87e687eb7794b261783a49127ad7d4945ad189c11f0fb1ff0c4
MD5 aafae110e4900e7cfdc6819def5dbee1
BLAKE2b-256 f89b4758a97cf50d540cb5a4bf0f36635af255007264a9bf20d1bb258ae9728b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36a6d01851c2c579e9c61eb1761ea11c99645fe92b1fdc26099465514bccd000
MD5 b6dec685eb961ace8ad6278442052bb0
BLAKE2b-256 63f0b87e5438210f02ca03d362d575537eb70dd140433ae1d1912c8c28fe33b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0f7fffd2ed6163666cbce4e13712f470a43dfe0f6e983833191feb1a1b26595f
MD5 e650fbaac2b9f3ab5327a64a93ed3af2
BLAKE2b-256 15ffd2faaef575424de0d5fcdb81d3a0fb62d6a7851655c0591171d4a2623ee1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 98e22c8c15d680ab045179f927614f60bd08efc8c6f9c79ec5526ec8a593b4ec
MD5 d92ccdb306ca6e8de79a05f7439ee59c
BLAKE2b-256 f8b50af5780246ccb4df66df0359a90e0d830ede4b09fc52538cd301a9ca90d9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 31c71bc9184ab4ad91b5114b98d2292b12ae577abb6d1f4d90a0e778b37bc493
MD5 092c7d889383cba27a66a407adb9f0ca
BLAKE2b-256 afcc1966fd1b8e30f4c8f655f51c0892dd11b4fe925697d13a100f8b3aaaeb14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56732dfdc2a0400e292f4aa3b6681c1ec0cadf3a3a355c393e4f2cdb32d20a0f
MD5 532cfc4241cddbbe4943d6f89e242bd3
BLAKE2b-256 4055a8f5c0415f4e4bbf19655c1d715a94ce0f94ef2923636348e4b2259b7daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31392f725d6408dbe00eeadca5c4e66bee12d8262fd810112c90f4a6eeaa8814
MD5 c8f83c00640a1703746717de779b9825
BLAKE2b-256 13fb2659dd998df1c088b0fed3823e5a4cb27d55735d2a2ca8f6556c1ce48bba

See more details on using hashes here.

File details

Details for the file siokcp-0.0.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 6b728b5cb055825de4131366beb713abcd8413764f8a4d543b1a6da78026d01a
MD5 0849503317d29d957c472b1c4ff4c418
BLAKE2b-256 7c1235aee81d6439b5b14a22aa76393ccfb45400f7f0b1a44797402e7915f364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 293e756e5f92b42c0cc6b7a592621af430c8a2418eafe917cdc07d5942cbaab4
MD5 ba7ca5fda90ebb84860afc11a04a5c72
BLAKE2b-256 ed8e9177d15169938382963e587af0142a172092e6895ed93cefa8fe41ac0bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7602af83c67ed9a00d35577281898b28ffcf97eee51f6ee17ffbd0670602f50d
MD5 12ac52f11b31c5f9239e13f13450c4f7
BLAKE2b-256 05c4fcc8b164db3579485a44f6a6c596959fd2ac770daa286300107bd5c1cd61

See more details on using hashes here.

File details

Details for the file siokcp-0.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3addfd247b2f9f8e43667f78d5726d10ea87aca460d1e9b998bef1827d73d51
MD5 90def2d5c52309ac7f2308e5f33178ee
BLAKE2b-256 b1131fd7a8d96bcb3961857cf7a2909510af256d1dce058080b1ad24a14500a4

See more details on using hashes here.

File details

Details for the file siokcp-0.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 22d840c2accea725c44865cdf236538a6edd6a26f23fdcc41374c8a02a724f38
MD5 80cb6fc7cb641505811c69a231efb84d
BLAKE2b-256 ba2dc242ed966fa3dea76df6aee9fcd167729ed937756c28979ac4821f9ce002

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f067622b8728525bcb2c0f7b39c5aa4cbe4cbb99ad0b33540e7c38fcad24f86
MD5 0dfc1a598eff236a5907da51bd10ed80
BLAKE2b-256 bd82ade75ac9ede798841f6bddf3237b638ceb3226a8236a8c3cd2c3f1f92ae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a4e9ca910ead310d8bb748e4cc61b92c516097b57501d2dddb8f30d4d6febe8e
MD5 785bd97df6d9faeb3efcfb182e4555c2
BLAKE2b-256 e0b50ccc0160b9ccb27cd6fb93a789e9cd16806921e25a1a4cf3aa50f4db064d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 862326533dbe64ebe9d8d669f462b71f5fd0e86a00e35baa341f767edc92fcd9
MD5 97d8aa75acf7c56dceda192bdfc9a609
BLAKE2b-256 dd0ea9ef67c1d2b4daf6e87bbaecb409477edbe8732d9fa176d5370c3ddcddca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 909083e3a06dcc58acb395538071f95d76be1856ea4fbfa98c6394973b825260
MD5 656f2887b5f1f35929d5820eb5b0aff5
BLAKE2b-256 15df8732c6537cdbcb65076e868020b78f04b00a7224ea0244df660a12a1eff8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a5f49195f083a716c0242f9f913bac1941da49fb3978f4e73ae31f454a998f03
MD5 b70ba07663c9ca4cd76880febd4eb5aa
BLAKE2b-256 4430755004bb9ac0555f3d67624d829f7c85c6e3bd6d7110b5ac7c4cfb41c450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f03ae71ad7d8d39ddb92e7ed2fea3a97b47a3a4ae5ad126f9d5a937ad242a76
MD5 8a4270fda99c0e8a5aa783d79922f6f0
BLAKE2b-256 20e866e5aa7df84afc0021812e01b5e64471784e7af44f9e45d2a763b61ccf58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6630ea0ec6871ca59da8a684f1deb763e77e6545a637d2cdd63967681d7780c1
MD5 685131a2315aae48240d8f164eabb708
BLAKE2b-256 43dd43a55764cf239fa15c3f45ad4feb6d4fd91bcbcc6d3a09b074f957d5a045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cd4c8cba6f88355a2ce6df22a3b3523df1a6331a6b82ad530088ecb0288bbc0
MD5 a6c19cb762818f0c1d7119b5f1cf269b
BLAKE2b-256 fb25a43b3e45f15bf0a0df3e77c2020bcecd2b0785e0fdadcb259276dd4f3192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22fc57f8892ae0252b3cc736e9d34351ccbb7b53b736dc205fc7f0f7c5d1531c
MD5 0bb07080a0c11d2afa8c5397a4cd7589
BLAKE2b-256 df4502f2769345051115a1ec6b5fe2e5d14c1e8fabca53f4f9a522df90b07aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 965b360c70b93f6fce2814c34f1a9ee9cb0c8c95f61e2897d52e825eebe51568
MD5 15aaf9660e7eea78941d74bf00e33c04
BLAKE2b-256 2c48abd312dbd6d47fd86a4c08672304d716bab86457dcbfae71ca69b0bbe786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c304bb3e44073854b6332c5302c357c3bdbea3ceb6fd9be1ddf9177280b15055
MD5 36c9aa6421f67cec7fc995108aeb8e5d
BLAKE2b-256 c2b9301ca94478b3e52e23289d9270932544df0d3fe9a0568e59d2c09419fc67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1fddbb3f803546286737cfa8626ce471e2e5b0d6c2c0d13881b8dfa6178b3f99
MD5 3b4b17adf62aa9220af07384bc592e08
BLAKE2b-256 53c690caf482646b1fa271850171fe8d6c4a49de665a4ec8534d46ca76bb3f63

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b1f353ebfdb7bbc0db1cf6261271e63e7fa7a2e325b9881651a23d895ed88f16
MD5 1591ebd51142bc04828c2b0e7eeaa660
BLAKE2b-256 f1d2051cd4a77dff556e98f8ab9a3d729445342cab97117fa801f9e981134543

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for siokcp-0.0.5-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4c004c939896283222a4f282429dfe7c0a3392b7b85adcb974c48dd17b6ce689
MD5 c7848156864afe01c7a75456106f4005
BLAKE2b-256 19ef53ea7ca57abaa47a668f5f79f5622fe1072815fc53dd9049c247fd61d525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30e4a9340c8515253bc67fd8c5fe182aee3fee034c8f51665103340f9de49a11
MD5 2f0ca5117495ec1a9c0face02e050140
BLAKE2b-256 40f126c12b51fb75240e7fbb722a94e441476ed453b74a2171100573107942c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bc3be445f1ada316a08bdbacabef6a1ba78689fcbd8bf7a44bfcdb41a5790b8
MD5 35c4bd45e1f8f310b2f9fbdce7392559
BLAKE2b-256 40c319412c91909923f138ce34fe0c8801a7964edd424cf19c1a9a5462e5d3c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 915780b98e687da2f06d4d72261b0863fb59dceea3b35bc312a885e8800e7bfb
MD5 129bf7f7a3f06509b8e33bd0d7ef5314
BLAKE2b-256 b06b1b19e1cf200e3a6a3785a9fc4a3fdfb8ffbe022f83af3e2a8689d15cb9fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7f8036c625356475e7297b7ddc18966755aeebfe8a63ce4bc4c95720d95fc73
MD5 c76c8207ac7bd21df3308e21767dad34
BLAKE2b-256 a3cdba64039aabe09890dd767d7aa67508146c90867e64316f8c871548fe633a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36ec20f051ee0879b97099fbb167f9911efc1aaf566a26748cb2ecc0b23ec04b
MD5 f2e3395c036159ab21064b5400a1eeea
BLAKE2b-256 0fb42bb8da9822b0423886d2a88bf69db5d945d9916681b74209ed8ad022e659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a9dd78b55cadafb0377851820347417a861713faf1fc5f8ca7725ca7e5dcdadc
MD5 36c1aee68adfe8077f0744a517c9f62d
BLAKE2b-256 4d238b21867565a7ee34cf6d2679847c54650a01119d988de51f542038322153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.5-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c84e085638f0cdb6e7268499faf836bd47b9afe6b7850060611c387432c6b61f
MD5 74061966646859f786a20268a94968a6
BLAKE2b-256 7c4bd20ccbdfd4e2b161bddc85a3275809e961de699e587b15a8a68ac4632e83

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