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
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,
    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,
    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.2-pp310-pypy310_pp73-win_amd64.whl (247.9 kB view details)

Uploaded PyPyWindows x86-64

siokcp-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

siokcp-0.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (272.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

siokcp-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (244.5 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

siokcp-0.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (248.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

siokcp-0.0.2-pp39-pypy39_pp73-win_amd64.whl (247.8 kB view details)

Uploaded PyPyWindows x86-64

siokcp-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

siokcp-0.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (272.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

siokcp-0.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (244.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

siokcp-0.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (248.3 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

siokcp-0.0.2-pp38-pypy38_pp73-win_amd64.whl (247.6 kB view details)

Uploaded PyPyWindows x86-64

siokcp-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (276.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

siokcp-0.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

siokcp-0.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl (244.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

siokcp-0.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (247.9 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

siokcp-0.0.2-cp313-cp313t-win_amd64.whl (263.6 kB view details)

Uploaded CPython 3.13tWindows x86-64

siokcp-0.0.2-cp313-cp313t-win32.whl (245.9 kB view details)

Uploaded CPython 3.13tWindows x86

siokcp-0.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl (283.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

siokcp-0.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl (279.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

siokcp-0.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

siokcp-0.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

siokcp-0.0.2-cp313-cp313t-macosx_11_0_arm64.whl (256.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

siokcp-0.0.2-cp313-cp313t-macosx_10_13_x86_64.whl (261.6 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

siokcp-0.0.2-cp313-cp313t-macosx_10_13_universal2.whl (346.5 kB view details)

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

siokcp-0.0.2-cp313-cp313-win_amd64.whl (253.1 kB view details)

Uploaded CPython 3.13Windows x86-64

siokcp-0.0.2-cp313-cp313-win32.whl (237.9 kB view details)

Uploaded CPython 3.13Windows x86

siokcp-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (285.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

siokcp-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (279.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

siokcp-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (279.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

siokcp-0.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (275.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

siokcp-0.0.2-cp313-cp313-macosx_11_0_arm64.whl (250.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

siokcp-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl (257.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

siokcp-0.0.2-cp313-cp313-macosx_10_13_universal2.whl (336.1 kB view details)

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

siokcp-0.0.2-cp312-cp312-win_amd64.whl (253.3 kB view details)

Uploaded CPython 3.12Windows x86-64

siokcp-0.0.2-cp312-cp312-win32.whl (237.9 kB view details)

Uploaded CPython 3.12Windows x86

siokcp-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (286.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

siokcp-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (280.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

siokcp-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (280.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

siokcp-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

siokcp-0.0.2-cp312-cp312-macosx_11_0_arm64.whl (251.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

siokcp-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl (258.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

siokcp-0.0.2-cp312-cp312-macosx_10_13_universal2.whl (338.0 kB view details)

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

siokcp-0.0.2-cp311-cp311-win_amd64.whl (252.2 kB view details)

Uploaded CPython 3.11Windows x86-64

siokcp-0.0.2-cp311-cp311-win32.whl (237.0 kB view details)

Uploaded CPython 3.11Windows x86

siokcp-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (288.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

siokcp-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (283.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

siokcp-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

siokcp-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

siokcp-0.0.2-cp311-cp311-macosx_11_0_arm64.whl (250.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

siokcp-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl (256.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

siokcp-0.0.2-cp311-cp311-macosx_10_9_universal2.whl (335.3 kB view details)

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

siokcp-0.0.2-cp310-cp310-win_amd64.whl (252.1 kB view details)

Uploaded CPython 3.10Windows x86-64

siokcp-0.0.2-cp310-cp310-win32.whl (237.4 kB view details)

Uploaded CPython 3.10Windows x86

siokcp-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (288.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

siokcp-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (283.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

siokcp-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

siokcp-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (277.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

siokcp-0.0.2-cp310-cp310-macosx_11_0_arm64.whl (250.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

siokcp-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl (255.9 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

siokcp-0.0.2-cp310-cp310-macosx_10_9_universal2.whl (334.6 kB view details)

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

siokcp-0.0.2-cp39-cp39-win_amd64.whl (252.8 kB view details)

Uploaded CPython 3.9Windows x86-64

siokcp-0.0.2-cp39-cp39-win32.whl (237.9 kB view details)

Uploaded CPython 3.9Windows x86

siokcp-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (289.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

siokcp-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (283.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

siokcp-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

siokcp-0.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

siokcp-0.0.2-cp39-cp39-macosx_11_0_arm64.whl (250.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

siokcp-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl (256.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

siokcp-0.0.2-cp39-cp39-macosx_10_9_universal2.whl (335.8 kB view details)

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

siokcp-0.0.2-cp38-cp38-win_amd64.whl (252.8 kB view details)

Uploaded CPython 3.8Windows x86-64

siokcp-0.0.2-cp38-cp38-win32.whl (237.9 kB view details)

Uploaded CPython 3.8Windows x86

siokcp-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl (288.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

siokcp-0.0.2-cp38-cp38-musllinux_1_2_aarch64.whl (282.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

siokcp-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

siokcp-0.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (278.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

siokcp-0.0.2-cp38-cp38-macosx_11_0_arm64.whl (251.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

siokcp-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl (256.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

siokcp-0.0.2-cp38-cp38-macosx_10_9_universal2.whl (336.0 kB view details)

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

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9757024810068a875987ea59a385bcee30b185c8fb79a8a52f71de32fbcbfa8d
MD5 5932b12303c263d0e10e1f9b85e401d3
BLAKE2b-256 476c39c1e9031745f151fa8951ca121a9f13ed1c416463e340db324e26f4aca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b22496cabad52d381bfcb2a17ea3ec52e4efbd877de5bfe8e04bd2225a880ae
MD5 6d2c796da0ff32db0b5f06ded20b72dd
BLAKE2b-256 33de82b4a7fb520fdd3ea337d1908b000f7078bd505155ee5c1c2f3994a7b38b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6993bf507f3316563dc6a278614fd77827c3345d4c01262388274580babb0f5f
MD5 b947519bacf34c61abe2e3ed8f6d3b90
BLAKE2b-256 b7068f731fa257426e5c186c36573a9b42dd9af727a780c576cdfde78aecf27a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67a97c29e4346f7ee06b81930b1ff1b194d49e8a88e52b9fd2b4c58a6b07052e
MD5 d51c7bfee268443ed277850b4e3ac89b
BLAKE2b-256 2c1ca2abe02bd4ee86dfcf2e4c3ad08be2c0d487272e3374d6ec046dba5501bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 06eaffea161feed45899e9663700563f03c75678cdf1358f67ff9bf56661a96a
MD5 2150e512260918e4f1ed8920bd2bb6f6
BLAKE2b-256 b407fc776298988109ad50bc6141f3af32ff6f507e61d8c055f64cf5a4096e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c2b57ee700e1d6a82752e1c94bb0fbeabbbeaa4c67711978b01ec970ac398d28
MD5 ea993c27d187b441f354e8c9dc554aa6
BLAKE2b-256 dd7cd84a8ab49a253564891f3edc08ce112a266edb0a221c93b72d6a418cca85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afbe60e68f1112f52af013e12cd21e267b7deeaf5f1eae1312c3247135b5036a
MD5 f3ff8b46b13241a82fe4d7e029dead6d
BLAKE2b-256 ed0c297f604ca91a5e838cfb911de3117d1230d7d76c9a8734e585a4dc52a045

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f00dab7a8d134c2937fa5b847921eac2a5abbdd93d0cab01451996d2ab0f7ee0
MD5 2c5a5037afa95beeb03ebd0841ae9fb5
BLAKE2b-256 a5c843eb6297967458f05891d801c2c187dca345f2a68e4e90eaa1e3974aa857

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ca6eb83ce2f4cbe3993f199755a62a85b190b9002b8bd7ecb8925c2416cab9a1
MD5 9e639b36cfd5b890bbfccb37a73076c5
BLAKE2b-256 8190d74b64337a86de080a808b84c8acb4d1f15597d615a70ecb5f167eb8287a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 beb39af26258c6f11c4ee2b5930ee7fee23ded0d00e235c7b48a2d9f58e97910
MD5 16c59bb0990dc8ee234803a00176fba1
BLAKE2b-256 d9b6a08d0c61c44df598d9494e09a50f57401655ca156d384345908a169dd631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3b8d71b2f4cd8e2bb7205514030e26d055af372a4f76cb20475664a4bf615321
MD5 d9b8967deb5122dad85be316d8ef4da7
BLAKE2b-256 b0ec61128dc4255ed9775359efd60a06e352f8f0c7faa3244eb58dcb123059d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22cb6645f6c0dafd78df2e6b8c39656cde148831f8669bbc41769cade2e04356
MD5 40f45b0c8656f5388b0c40cc6f536841
BLAKE2b-256 887e31d502f4ebffee0566d7f1a1f396204515bba576df1fd2bbbd961608e5d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 797219c778c67d570f6ef222ccf114d5a3047e0c05fe594f66ab750a865528ce
MD5 0edb0486556ff633d4f36774790237c8
BLAKE2b-256 d4884ed546b8d25a88d0933392b40ba9fee27251215ab2a4d122d22b84ec3ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a42e3d48a4e9190d3152315a56498359cbfe6c1cc97964963ca97056e8c08c2
MD5 76a21f4672210fb9b55298b26c766785
BLAKE2b-256 b6db1c7da50f22c05eabd6fc053bd4bb9da562bcfc01733dad0d84a2bb8911f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2dbc86ff95ae3bea98d3f7508cda4da40d4a1592eabdcd6165718fa721843d9b
MD5 3479d2be16a1284dc2b525c7606c4ea3
BLAKE2b-256 9218e8ec1647480a3bd1f74eb1318b779a6d9b1ee4e00a9067a5b79e065eb165

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 263.6 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.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 cd7051028666ea71be9f338dfe360bdf619c845f6edcb150cc364d4b0ddbc592
MD5 65e140ff01787bf73c3506bdcd4d4787
BLAKE2b-256 7f410511837b7a20a2ffbda720de6209f37f9162cdb214ce0a8b9c92749ae29a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 245.9 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.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 671dc4eca38ac265f418eaa506d4df798d81002e23d84e8547c976ccde9188ce
MD5 32e9357dd333dfeb883a5f75eb24c94a
BLAKE2b-256 8bfbd93a458d920d980e29892acf8a295ca7e0e1f1b80487d6f292e498c6e9e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fc14edc365a1dad6852fbb5904b86dc0a86668241e9eb2454b762f81eeeb1e0
MD5 6407b4b2dc2abcafb1b7877e1cf0dc5f
BLAKE2b-256 0b9723b2ea98aa45d1d3d26019c7509f98649128d454cd467902a33241202499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1333e6b64c9498d88e1505f6152b597811b95c327e80e1396726d5362b49a365
MD5 3045cc89c37362121db004d07a27f710
BLAKE2b-256 5f9680e65a7db5c68942c3161d6de51a0f8baa4e4d8b7bc72e0533fa8fedf406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef11efdde485bd1b36b0447af687ed78d21c1e7285ca6d6fe389116910da82ce
MD5 179a187de6ae66ab4350e8aef6653d48
BLAKE2b-256 26d1c9034869ff541f1cc779acd4f3d162bea0985ab702dfa62868785d091400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 373dfbf618e13d9e8c476082535eb77225dd2f4b91f68393ddcdcaf18fc17988
MD5 3bdd6ed781be003fb5a48d026e42fa21
BLAKE2b-256 ce220616373cac90ce329b23a453bb69ff8b193ee21004d94545a0b43b9e3e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e99a90785bdb680cfcee16296c899ea99395940716da8411f5ccc430b941894c
MD5 3faac34d4cda144d4378913ddcddc3cf
BLAKE2b-256 9a56ff0eb52f343bccc43803780e7d40774858e23b9973bb0851979b44773007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b239f7c624b28137532bbbebfce93b85cccb524b83943e4efbc48cf2fd3baa4f
MD5 780e100426047944cd40ce59bbc241e8
BLAKE2b-256 0fbcbbe607bc66ed46edb620d78c6a453c18b09fc081f987b3f48b367f3b3b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 af2144191e41f6da13f20626a65fb6ad290f9a59bb1c3221a86217a62be98384
MD5 dabebb90e64f846133f1b05a3f147656
BLAKE2b-256 a3e517a59b9d6ddd2f479a9bc05e9443dfb0a33b17bf42edb352471b69a81394

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 253.1 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dc10196f74cd8a93434fef34d28befcb4960a446fd471cf85fdebe5783c8d84e
MD5 23293029d64f97d1200cab26d83e3161
BLAKE2b-256 c298181263fcf1730a255acae04e3dd6f816b28039a5ab937c2ff9fff66a155c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 237.9 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.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e8c304547b2cf20ea8e2e8b9f64fe2972ac3536c38e4302e469b31cb8985cf42
MD5 b18c87604379f46cc9d54b06c852b9b2
BLAKE2b-256 fe68d6ce7ab085314d49c4bdb8abfc865e244dd75de86f5dac66788e64c277ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2156b909678d3259fe423251e8254bdcd831cc975d68d03601103a6889646e5
MD5 6ff33be90f85fc55a8bcd1e2de7f8c2a
BLAKE2b-256 8bad4f67d10d715f71697171453ce0ae7bdcbbaba62f9811ee0a31ba24b13fe6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78968d132ca9f6b7c5ea436e276d6daea07c643cedd0ff2ac9ac21e857513a49
MD5 260b6fbff0cc7da90b1ba52accd5d515
BLAKE2b-256 1aaf84d0906617fa35fbc20a3ae4631a3e92be6696bf9d67e62b63bea0a7468d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e78ae7e041a280f602ddc2160b30a679c40c052c52b8916bcae3068bf7dc444
MD5 85d5c9c713e0699aaa1e478260662bf3
BLAKE2b-256 0caac6760f96ddb16600b2e7a65da6c1f5ca745cd8151946fede976a7b34e5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9251bc35fd7160f5792662c2637473dca711c18cdbfabdef7eb5e19dce21054
MD5 7a18c9a6e95556c70b8acdd6126d1935
BLAKE2b-256 0d4b970c56ead902d46309a9dec38f57041c54dce52db4918d0011a9b56c81ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f829933931267d3ae94d19bba1e0d0e7d1aa36af88ce42a4d2fd5814b6d765b
MD5 975fbb2eccd3a681f8bf6e674bc529b4
BLAKE2b-256 ba38d09a950ebf593f966a5187052d404eeb220c439370067181ba07f973d967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e328afac03a555d5456b95a630ee279dfee8160bf5e3bd8c1591bff9b32e957a
MD5 f0f4df30872d98ad9ad1964546d9e1f9
BLAKE2b-256 fde14950499dd9951802c1fc2ddeffcb045a37c9e73238d8bddbbf0f14ad181d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2773607286ef706b16488671b340de2a2e971573f3da876e2f360551210802fe
MD5 9eb4aeeb6480286da6cc39db25d42dc9
BLAKE2b-256 8be131c52f796d271cbfe248ba313d5174cf2822610bd015ee9e1c87e11cf927

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 253.3 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5749df73b1f31762c8114fcec439a1000d0b77442a35c4c6314d9b14df1e1df7
MD5 af6dc3e3004a624809def51dac1fdc0f
BLAKE2b-256 db457946b44eab279f88f026e736a8070684468d75ea5a3484f6a22ebd5bf474

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 237.9 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.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 731460c2ec95998eb69f99c66f2c5232c16100a3fb27e0a1fea34266003733f4
MD5 401d01023018a008520e1e71c86c328b
BLAKE2b-256 7446dbbc798ff805eb305c9e6aa1b8d3d20be30119254c82df12f922cc8e308f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb5c52041afb350447859bdc5762eb3e79887b84d4fd375b5bbc6559bdf3c7f7
MD5 c6bf4e3719e1c62e013d116567035ce7
BLAKE2b-256 1a12f9c57186e1c16c2c4f1f8fee93c4d4349599bb8abd185e232a8c82ddc685

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1562afb02d2f77ca7b9ebb969611c4de01302b3c4ca9209153ba185a6efaad69
MD5 2c2d28e68bfb533e88936c302ef60934
BLAKE2b-256 4cdf5183d9e3680e238bc9a39f4a9d5348c3cd80c9917f9e70ffee739bbec86b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 051db17c8468ee52900be0ffc1e368a0d6dfe9320937ba6ed74805cfd886ef17
MD5 c28345e6b95597419a0a5434d5e1a85d
BLAKE2b-256 c83962208393796d4e3618287ffa103643ae82ce92ef87fee5a2f31a6fbb0412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81f30ad9fe7a9a1c73cca79555407acdbf879a275bc553637a08ae4447f63b40
MD5 e41f3bfb362cdc8a41dbe289c1032305
BLAKE2b-256 4c89a73638e10fe5f3bd4f2326f9837cdffdb3b9817f6be28ca99a143b38a694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4efd9e1e4b263b4e4bfe5890af137db9159a2e42129ea3f6bb803da45d6b20c9
MD5 9c77db15359b8c040a1dce9947745e13
BLAKE2b-256 19f3a239469a2b3b5a277e39ef6b04d416a2ef22474d5c77a6e0318bedd4a3d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2c7d109d36d9bcd62b60ad6093860b252bae612673da3b3970aaa6a7a3642138
MD5 18e049c42d4d31f5d68cfdc09d0aa193
BLAKE2b-256 6fe6a9b025f9ade5791a250f3f3128e219bc241a3d13304a9f065cdfa3191103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 d7f6e8a5f08c6f363d5480d9d5cce77a95eaf59e37eb162e1f90ef767119f09b
MD5 908ab6efff73794c55adf0cf05161754
BLAKE2b-256 4518785a4b44fd518a1fa4b479298598551900ed9a0cb0a384635c3c27d0efcf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 252.2 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d3a89919ac0658ce34c766cf70477fa731ffd9df9e5368e6a84cbb18a054152d
MD5 08ffcd6c8086d6e83464b59d044ea425
BLAKE2b-256 e5a50e40ad3e5b293d02caf2236bb5a131429cc3d9dbe437ac95c34ddf693085

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 237.0 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.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6c951198fe2cbff2eab8ba51dddd2634d230e5e9d6f2ea2fe907a3dd2a4e680b
MD5 135b960b3f0f53fee785c045730bb469
BLAKE2b-256 3650202f6f5d0df3575120c083e41be79f74c389ba0e124db27685629a3fd0a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b094a6df7782964f1d12c80cbfe7e1900e76d893b3b1edaa9c110b382f2c0dcf
MD5 8ddc9db9030f5de5fb4b3dea445a027d
BLAKE2b-256 46509178b9ee02a0afd05dda88037ca97042d0e5f317710e31e4303069617e07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 699c1eed08f4182506ad1c8e44e3e2c110da2b0ff7dcd0ec08777569e3afc89d
MD5 c66e3ac79e47a8f0d491e97966dd2653
BLAKE2b-256 7eb09408bfc81076c917b29786ca1b9b23cc3f2989a4c406a5d378fa9ec2d655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94ca63fa1effa75e7547c84b0d3724544a1670cd189745cf083ce9008477e6e0
MD5 1d2e32e5f2aa6800396a9f9aa5cdb058
BLAKE2b-256 4daf34a8ffddeb2afdeafdae4dfe6837166e3a984becd6aac110c27941bbf240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d232696adf0b9cb14cd407f5275b83c10b6fed97c6b921b19aa0d257d082854
MD5 023b28086952172b86c3fcab374ed9e7
BLAKE2b-256 cbb4965f962bf306b414557b309b65824e73b22df23561697f56c622bd6da14b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0802b0d8dc351c49054153616d730b1c306e7f1e3a7dee0628a22756e6cc081d
MD5 e15f244b1cabb7fc44a5716d18177eff
BLAKE2b-256 36d2e2386bd27ca2d95f0098fb755d70257c130cd3120de9a01bb8efcf5b87f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58c49517413776ecb6b45b9d256961fe33bcd1d1ac50dd47f15b376572366e48
MD5 f61bcf4193f680b83fd580904ee604a5
BLAKE2b-256 6c5764ce94da4d0ef12932b77cb500943142bae5fc267089527d0e248a998609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e837252bc52d373b22738e984a97a5f32b47938309c2c731af5d538b5f14ae9d
MD5 08174090da430a2a735204ad34074c0d
BLAKE2b-256 4bb38d435d2f33a2a0d303f99c591b7b89bf01c65b579b886e277c2731a2abdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 252.1 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1cfd7ce9de12c64609a95cce0256f936f17508253a1258f57cdcd24d53c72c51
MD5 3d49076585d959abaf0d87a775e5dda8
BLAKE2b-256 7148ae175a649850d20be11e1a2f92327783021fc4a2436417d556ddf619cea7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 237.4 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.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f7ad1a96f1439268eee43af2629b2d66d73d6499460041a5a59bb6ade87ad5b2
MD5 6761a2acefa39a69f89ff67943d47b02
BLAKE2b-256 c20f17bd8607f91178e9511d7c829ee2c9258d3a5dbf1e0df6f50e82ccc0dfee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d728cbc13f2af5b8c792c9f0fc694267d6ca05ab5ee6799a35fd453638423d60
MD5 68a866fb72cbea2e35fbc2e64196927c
BLAKE2b-256 1556660b88ce233ccd8688e883b9982c5de3962bb9cf0680fa78c85e6e410bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7875fbf3104c331df29cae7168d9eb9f46ed4f4b0ea72e429f3aa2b2c7a8068e
MD5 7d0310665d3bd527f7239355888d096b
BLAKE2b-256 e977c6c7e6bb855b00514f5a4c5074ea833e7b4ae332117e7fc8443f6478407d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 852ea3891ce917f187c755e917b19cf42ccff8ef8d54c36716cf76041e9ef149
MD5 2b31d7c5b976b0bb608b22a035102c5d
BLAKE2b-256 80f947d128042bb3feaf647f46916fe993c536a165a233555d9f651f96e00ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3a97a59337139824439af1caf9404ca13553056923ed0891d1a1f4a8f132ae2
MD5 070d8c21a086ab7c378526baf27125fd
BLAKE2b-256 71db2db0406307f6a28f73ff7c33a357f7a6dfcfa011673534fc5f171cd01637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ffae848c04ce62b9c1fb0cf5b303aa9b3f98b7416f2e5961ba3384d2557ef3a
MD5 86f06e281004845acc41a69fc014e8ce
BLAKE2b-256 86cec6a876c6dc20c7d270b622ef9ce1fe9bce0127b04464648c20b347efe477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 128d47af012af158b7ade1a11a70646b4318b66fccf9e423a4306d0a79fdc9f9
MD5 a9e2858498c440c6b95025b7affc13f1
BLAKE2b-256 c6bb9784e32aad26c99009e23800ef0f8012c8edefeeddf147a572603d57566f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f0558258ff7a0a456653a5214ec7a47ac0479471c13ab0a37e19bfb6dff67e16
MD5 daf97d7076e180cbb9fad9b0e15d519a
BLAKE2b-256 4d2c80733b0a5f884de3539981aba0a23304ecf8b93c6be1116c9974edb2460c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 252.8 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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 55d81c9792cbc8c95843ee991bd788ecedb571d4e18a93a0b986edfe8f2bd379
MD5 3626aab30e6acf98cfbf9c81fdd40cdf
BLAKE2b-256 5493895a14d6a0d47f6efdc1091ff1f71be216c138b5f1bd53c2705e4412a3ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 237.9 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.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 54b90d713b6e2d049cd298b3aad8f0df7f36f72f974e33622e560c7d3ab37f4a
MD5 50f163109bf7aaa39bc6e00f6225d787
BLAKE2b-256 f143a105f617ca229876d8583a9f2a730f23d9b28f751cd9f13105fb41a27799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a72b8e81a3ed84b26726a545bb6036c7a081c845b06bd80eea504a31c6d27ac
MD5 f0f3fe28b79211ae46268ca3273780f9
BLAKE2b-256 537e27b7e25c841b29dc40b46a405073d3a1d28e8fa1eea8187ce4b868e00b1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd5bfaa48bbf83a0e23fa3e239ac1f744c1cb20fb3298850c5e5042a785b2d8e
MD5 32b0f1e22d8e57786d4f36c73eb67ea2
BLAKE2b-256 4816f2563a224846d8bfabacb3b5b955238bc7dd90c21524ed6d0d7ccefe6274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf0f91ee8a4940460fbafec553b78021e36bf9a9e064ef869d319b193d4611ac
MD5 ea5bdfb1041a7bbf87dc3886e915786c
BLAKE2b-256 334827603aa9cb1be9bef1976c29edf76bc8e3a463b4345daac47007158910ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 063db552a155d89973d04b6d807bd7c101b0dd22c08f2d80ef4afcde1ad1391f
MD5 228dec38f52268669f16f8072b976c49
BLAKE2b-256 9ca64c203717a29638c389597258815bc904bb5b5be70368b2d0a036f94dea00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1fe0ef43e410dcf58991824886497cbf75d134a2439cc5337f234b8b94b1480
MD5 e003f4d4d14fc3a7296f93ffb3ee4c63
BLAKE2b-256 78f2a31586cfc311418141b535e9c306fa7fa46261f1e65b1675792f9970c90a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fc95c34b6b4fef92867c4dcd5a629da530d3506dd701b8d0e01f1dfdc1ba146
MD5 1ba8d2cca210394364a3e6b4061d2fb2
BLAKE2b-256 eb98fc1fc0236d76ca153a98b2560ccc04710d66c92b039a6b2b76d2bccad7e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 dad561ac452e73d4915d533f7914a2c19a1567d0f3e09eace54d4483b2492b1d
MD5 a221ecd9778d66bc54d0b342a0645a81
BLAKE2b-256 7412973fd6b1d626c7de46f532c55fd4ba4cde2ab4f3d507a206ad475116d315

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 252.8 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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8b1d99b59543092b73a9c5316bf1d2029b19114488b2e7241bbf533b05c07d49
MD5 03576032dc782cc5529f681444b91257
BLAKE2b-256 88eed77f801a5d2c55642bb0e8eeb3fb49dcb41a1fb6835d3baa2292d7867136

See more details on using hashes here.

File details

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

File metadata

  • Download URL: siokcp-0.0.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 237.9 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.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c16ed9b53e75453a3a9a0c55d20effd33c678665ad750203470db2a2f0dfa4fe
MD5 be4b4f583d6070fa4427f61aa3fa1196
BLAKE2b-256 69a81b5c3fb8501fe2efbf9f7bb85d47b0bb16f4331c69ce7b86ba2f45cf6c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07292bdce34cb0642ff88514b866d2a7d6ee39cbf3b3e4d6360913b05e6a4614
MD5 f64184e04c48e3eb3cf4d23888d819a2
BLAKE2b-256 5f8d9f5585114ed8424a90b1cf4ccf3fcb7e8e653f1784fdd96f3e08d9dd1e2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9a290ccb3cae1be5c2c63d2361e27d64f1331e7207be136746d6bb851113dfc
MD5 e969b3a3194180b8283bcb219dc9a7ea
BLAKE2b-256 6770389d0cb799fbd1b82901817dadc71ee5808bdcd8771be49d9b003f83fc96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab02216ac622cf1dca7d3474ca0d99654d9789fa76694bf66993139ed8153502
MD5 5f36e760d1a2468267041ace1b6fdefb
BLAKE2b-256 2d7888ae8c2d5c3fa57f14dc19e8ea97e69e5b96565cc8c49cf4a4f0a8e460b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 680a5e418e98ad44e563951b4f765c042c60cd30ac54af18da3f7b1cb27b3c09
MD5 03b042dc4a97012043dfb65f3e9b50b6
BLAKE2b-256 baf86634db147be272f9954e1cc4cfba617de081e6501ef761a4e9fae891b88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22701ce7486ac6d79eacacd54bac0fc174b3b3a7e098048c7c29722e40bd0e4c
MD5 abb34f242de7116a6d51df67e3ce477e
BLAKE2b-256 c8d6f16d8dfc7713c931b6f5193381096b890b50a08191da895790818d744683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3724feb76f6728d024cfd1e08139d73a427c4d7ef1516107f57cc110c79aefc3
MD5 cbd77890fa7c5f8cf604ada65c7df0f7
BLAKE2b-256 6ba737b0bea5c49972696b39d04867b6303a720083c961548bea5ca8bd10534c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for siokcp-0.0.2-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9b2e13dfeff2ebc63479e2af7e7ea3c1c12945943484adfa2398793f505dae37
MD5 8208c4155b225d3aa8ea9d9d14b31a71
BLAKE2b-256 5958da351525b58d8ea930e0f8704fdd7355e4998c32121a0d5a3fd335e8aa13

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