sans-io style kcp
Project description
✨ siokcp ✨
The python binding for kcp
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file siokcp-0.0.3-pp310-pypy310_pp73-win_amd64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp310-pypy310_pp73-win_amd64.whl
- Upload date:
- Size: 252.7 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7cec6929a9f65a5a6772bde0476a7363668a16c82cb23d4d93a23a63d9ea10f0
|
|
| MD5 |
008f9020efc4575fb0a0f9a5f73a9d5d
|
|
| BLAKE2b-256 |
100c709df690a8ebe49adc644484f13e03eef5c3861da8fadae58cc7450c6504
|
File details
Details for the file siokcp-0.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 280.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59333784f6c95eae68db06e4963d8e2dd3509a95632a8772307e98f250bfe7f0
|
|
| MD5 |
7bd76bdb4dc482c29cf67b943958152a
|
|
| BLAKE2b-256 |
1b9ef14b92d0ae9815a075d0edd0c9b04e568d6bba93a8a18de6e068c9c7d110
|
File details
Details for the file siokcp-0.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 276.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba08af826ae851474429086f746547f91d2541a40036a9128b2489237648713a
|
|
| MD5 |
4feade0840bdaa6374675141d9d955ed
|
|
| BLAKE2b-256 |
124fecd39a6b77414a86f0352b4f9efc8f24aad05482fa069d20a80b630b48c7
|
File details
Details for the file siokcp-0.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 248.3 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1c86e5072b384635f9b0f5f546697e6c539ab0298b9d516de7aac4a2ba9be9ab
|
|
| MD5 |
a03d58a9a005eed322e2e0b84feb8838
|
|
| BLAKE2b-256 |
7593ae77cf6381ecbc4b1c28ef4e86faa23946b7d0eccf606e0401f63d0e1f8c
|
File details
Details for the file siokcp-0.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 252.0 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d20db3c9cb7a3aba66ca5b031a7570fcac044a866b5e9b4b0ec3f96bfdecd4b9
|
|
| MD5 |
f937a9e725667019c1f01cc10d34739e
|
|
| BLAKE2b-256 |
27b8891a78deea9fa32cc447724bf599416224c57413a4ea5d9128b16034f6b0
|
File details
Details for the file siokcp-0.0.3-pp39-pypy39_pp73-win_amd64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp39-pypy39_pp73-win_amd64.whl
- Upload date:
- Size: 252.0 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a4c5195db128e46f949a57b79db3ecd4a2be198266516b79882149ae0e0a11f
|
|
| MD5 |
bf165cc46a5c9f3dcde5e03b0b823acb
|
|
| BLAKE2b-256 |
8a3f122198ee363d425cdeedbc73ef9ce2bf1885629eca237affb4a1f91dc1ef
|
File details
Details for the file siokcp-0.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 280.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca6244b98200405f54581069faf1559a1ad1b36a32077217216561483dc5903a
|
|
| MD5 |
bb83a295000385c2ebecb583a1143c78
|
|
| BLAKE2b-256 |
135dc671af7c60dc461465201ad71ca8507db89974670fcec7916353f867ad22
|
File details
Details for the file siokcp-0.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 275.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f575f59499c786d87287d743968e6ad5b5754e3cda3abfee3dbd330c62103eba
|
|
| MD5 |
c134840f3aa54f6bf51ca60cd2c792d4
|
|
| BLAKE2b-256 |
0c367e7181d488df661776e49be461f8684e48493311e0f0752814d98eaf6340
|
File details
Details for the file siokcp-0.0.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 248.1 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9fa84149419e1aae6922eaf71d7e373ed6137e0ab583abbbc852d84b9b0dd35
|
|
| MD5 |
800f585a90d94d7c8877f4207b65cd5a
|
|
| BLAKE2b-256 |
1156c51d59896761c072699f68393f6c36e7c6505bbcc42a64529a24de91c485
|
File details
Details for the file siokcp-0.0.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
- Upload date:
- Size: 251.9 kB
- Tags: PyPy, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4512960a143a6afb17b90997d96fc8f3bd1de2978af90de56df5cc2f0085c272
|
|
| MD5 |
6b53dec2e39e0c08bd57e53ec4649b04
|
|
| BLAKE2b-256 |
60c9058e9f6df91654396975b0c85ae8e67e7f0eeab66ebded43955dad702a15
|
File details
Details for the file siokcp-0.0.3-pp38-pypy38_pp73-win_amd64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 251.8 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a3d325281f7aaf59855e72aa73ba1459ae3bacae0528270d42dd78df6ec5e77
|
|
| MD5 |
2076ced539c6d99cf91b6e1a925392cc
|
|
| BLAKE2b-256 |
15c129e6448d8911fdb9d6b6f8ca90489b0ac460f7c723e669f4aeaa854b0784
|
File details
Details for the file siokcp-0.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 280.2 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bd2c6dca5e81a035eda44336b78824c5423db9efd6d461aed1cd4666d043d026
|
|
| MD5 |
ca26e417d7e369cd450ec968786c0f06
|
|
| BLAKE2b-256 |
b7a7317ba85fb1e6ba17cafa20d9dfa1192b366036e0a21ecb17e4a7fd796144
|
File details
Details for the file siokcp-0.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 275.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59bac71e96eed453875e308161d0a8d07fc46a330e7339db82eee3ef89242a17
|
|
| MD5 |
e376702a3ba4bb8ef65a86b85850abec
|
|
| BLAKE2b-256 |
922541428131f2d2171bc332066331293a25ca80e76a08b5222b304b9492fad2
|
File details
Details for the file siokcp-0.0.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp38-pypy38_pp73-macosx_11_0_arm64.whl
- Upload date:
- Size: 247.8 kB
- Tags: PyPy, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
abf12f7534ae7adf5b905510eb39e3b3d2bbc69e727433db16569bef331ba979
|
|
| MD5 |
14eef90d09055e456b9b6c7c7659f8bc
|
|
| BLAKE2b-256 |
591f33c38e456db57edab7b7b5cd2040de046a8ddfbe3b508ad2cb3f34217809
|
File details
Details for the file siokcp-0.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 251.5 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b68f3789d3352911aa82e4c9e0f830aae75cd40a38f34cd6242ccc25b88e61e8
|
|
| MD5 |
58b2ef66d17ae8a6ab01abf6ad79b145
|
|
| BLAKE2b-256 |
97f9b0d9f813d833703795b97dcc2a1cfee309e11d0916ab5588a0fc891018f9
|
File details
Details for the file siokcp-0.0.3-cp313-cp313t-win_amd64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 267.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ba2cb7ff81c4cd49fcf6a1f7df18c7660977a9baaffbbecb9fedd0b306fa401
|
|
| MD5 |
eaaffc5c679d32d381f798896b6d0a8d
|
|
| BLAKE2b-256 |
0b3b6f29f9186dc36f5b9c65e18468dec2674c0210eb87fa7341944f761fa86b
|
File details
Details for the file siokcp-0.0.3-cp313-cp313t-win32.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313t-win32.whl
- Upload date:
- Size: 249.6 kB
- Tags: CPython 3.13t, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43596fd242c46d644629adcd640c7e4873abd8d04b6a8b9f7cd71137b277bf90
|
|
| MD5 |
4817d69bdc5399c5d3c118a5597cd33b
|
|
| BLAKE2b-256 |
9fbecfb3cfd094a4d5a2b98182e865253c6d7b3397a22c5c0543b0bbf4b34987
|
File details
Details for the file siokcp-0.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313t-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 287.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c591ae924d4d792184f0fbeb8d003644de4bf6dcfef15f7567af2279d2dfb3da
|
|
| MD5 |
f2310a5698cab2206adfc56ad22c87ba
|
|
| BLAKE2b-256 |
9c5df700ddf16853153a4724c1695e4bfc44306e04cfd6786f6f177fe64c2a9a
|
File details
Details for the file siokcp-0.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313t-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 283.4 kB
- Tags: CPython 3.13t, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a54be2070baa7cc2f44845c097e06884ea9063c8152f00c26a5043136c3acc8f
|
|
| MD5 |
ea2c087eb84615d21f22e671c8aaf1b0
|
|
| BLAKE2b-256 |
50512a862ccd3e17157ed3c1ee6d114bff2b3348c7e7113ecc6ad6bc44ac1aad
|
File details
Details for the file siokcp-0.0.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 283.5 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1aed39d06e30084286ad4b58bda128788299c3f296f9d5dc3ff9d53e10ee48cb
|
|
| MD5 |
09f1ed3203c7b49c1b7f1ac3481c22a6
|
|
| BLAKE2b-256 |
a7546ca54add47f1a5f9d400487563d8082fc2564b35d826993324546279594b
|
File details
Details for the file siokcp-0.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 279.9 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e3a34934756a0ecaf15bf60a4b887a56debc0643bccadf6491ac602c7166c36
|
|
| MD5 |
fb65ec4faa355951b0ec373cd5635eaf
|
|
| BLAKE2b-256 |
1af4bf7872f9e75156f341c5ac6093268686cb8eb3d782ed8c2769a4ab256d6f
|
File details
Details for the file siokcp-0.0.3-cp313-cp313t-macosx_11_0_arm64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 260.4 kB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95752eb58481f5277407f3ce6885b41a1e4c912cc8140291736d06f6aab6aa16
|
|
| MD5 |
3c498afa95093824a817e8d7f3d067ff
|
|
| BLAKE2b-256 |
4b8c2339015f1f8d5f89fc6717105b1c0af9e2a55b5f6db7612dc57e2296c240
|
File details
Details for the file siokcp-0.0.3-cp313-cp313t-macosx_10_13_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313t-macosx_10_13_x86_64.whl
- Upload date:
- Size: 265.5 kB
- Tags: CPython 3.13t, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c964f3997bd40171ea3f85f02546d0b7744001a430fd4c5972ac7f47ff1c7dd1
|
|
| MD5 |
f6a64f316824255bee7f84ecae1a78ff
|
|
| BLAKE2b-256 |
ac861f76cd7f3381fdd6ec98c3985c633825ebff6e8986df9d72b2aa1ec4bfd3
|
File details
Details for the file siokcp-0.0.3-cp313-cp313t-macosx_10_13_universal2.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313t-macosx_10_13_universal2.whl
- Upload date:
- Size: 351.7 kB
- Tags: CPython 3.13t, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5282fc426c5264fd4fafb91eb0e22b41a1f123123f757b7546ef666059c71ed5
|
|
| MD5 |
fcff41388d119da890ec85264d793ade
|
|
| BLAKE2b-256 |
19f59917cb1a7390319c1d6ea784f28a8ed160187a5ac825b406bff06e4254a3
|
File details
Details for the file siokcp-0.0.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 257.2 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae17cd79c1e464c36496f3a9586a2beb4eff6fb212f8437102ef536debaae856
|
|
| MD5 |
49b9e2e2c0b712bb010397c34a560838
|
|
| BLAKE2b-256 |
afc7b6c6119396e0f8027f7858ab1a61de8c9ca22cf4cd132f1aec92db4d1d7a
|
File details
Details for the file siokcp-0.0.3-cp313-cp313-win32.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313-win32.whl
- Upload date:
- Size: 241.4 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
002cd25cc7f7217122d7eab398b2dc63c26cee57a540c1c7f8363515e9af3ac7
|
|
| MD5 |
035e79b99a316e39cbb624e49bdaf64d
|
|
| BLAKE2b-256 |
d11f5f1b0a5bbb50618184e1f497942a88d2aba934a5b264b89aa706b6d4ea88
|
File details
Details for the file siokcp-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 288.8 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a54522ada90cceee46639232dac76eb899690837efcf2ee105bdebd2ed70218
|
|
| MD5 |
ff03431806bda87fe0c343bf21ca0f1c
|
|
| BLAKE2b-256 |
c16b301c86a02ea2ba925c802c7a532d4cddce8f5040ea7bda25b16651fac2ff
|
File details
Details for the file siokcp-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 282.7 kB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8a3011f3c2d1eb3949f45e6c3e62533819211a3247a8ccdc04d291b6991b4e5f
|
|
| MD5 |
a52ef2db890e689cbaf5d867b8a6b60e
|
|
| BLAKE2b-256 |
5e53c96309844798dc0cef7972cf6369d96eff2b02d532fde8f7d0b553dbd909
|
File details
Details for the file siokcp-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 283.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d1eeab1b67adbb46d287868c4cce10397572a7e431ae2af8218fab1e28eae77
|
|
| MD5 |
5b6dc799f8edca8454e84d7abf05c59d
|
|
| BLAKE2b-256 |
a0a6f333eff5ac17374ff3728d11c492b7cc58ed25fcb2a2779bf20bfa69f946
|
File details
Details for the file siokcp-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 278.6 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2113873f9408e4795ff69b6eea32c11a3824c9dadb779da8ec4d3d1ba8433ccd
|
|
| MD5 |
787da87af0d6ba149d6f2c7d7b8924c5
|
|
| BLAKE2b-256 |
a154faddedbcc590ec52812e9f91036b973f14dfa9d52ccafc938e11ff0a5b9f
|
File details
Details for the file siokcp-0.0.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.4 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cb0175700296a09eb64bf25ce1e53870e83354f3a4ec65554206e6b4a1c34e67
|
|
| MD5 |
d86e5dc1d0c90ce45307c3daf4b13060
|
|
| BLAKE2b-256 |
d78e54504e9718049c7a9efc1e8d8b6c309e73d1669041318e80133a02cca169
|
File details
Details for the file siokcp-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 261.1 kB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ce82fe96c193d14c5005ca71c999c8432665376a35051ec2cc7e013016d8e97
|
|
| MD5 |
0b20b9bc8661eb439613347700d58be6
|
|
| BLAKE2b-256 |
1d3dd91ab669f06f829c98c1e637f29ad7814f3f5a62ec14b580b71198131a5f
|
File details
Details for the file siokcp-0.0.3-cp313-cp313-macosx_10_13_universal2.whl.
File metadata
- Download URL: siokcp-0.0.3-cp313-cp313-macosx_10_13_universal2.whl
- Upload date:
- Size: 341.3 kB
- Tags: CPython 3.13, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b94e64005664363c5a20a9d290fe3efb189cab6f362785d3f7cb002e5bb2654
|
|
| MD5 |
1f72067b5385f8d71142f96217d4a2ea
|
|
| BLAKE2b-256 |
2c04647311cdd0df1c9c331a426d0ceffc84c4a83386ce33cabf07b1b43f0b38
|
File details
Details for the file siokcp-0.0.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 257.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0406521e33125ef6997c2bbdfb248221e07b1ead2d7671a265aa6a580bb8fede
|
|
| MD5 |
c705b5afad0c6039a6e0e77714b74163
|
|
| BLAKE2b-256 |
63e63c0e2f9156b7225885a5c62ec85ef5cc143e253e3c589d29a5aa3f989290
|
File details
Details for the file siokcp-0.0.3-cp312-cp312-win32.whl.
File metadata
- Download URL: siokcp-0.0.3-cp312-cp312-win32.whl
- Upload date:
- Size: 241.5 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03d3ca8a7a81eb71cd0aa70efe81d44a2a68711f3e696f394695ecbf935696c1
|
|
| MD5 |
dff8915ac9dbee6fc343eb953b3d954f
|
|
| BLAKE2b-256 |
2ed09001cc8099d3fe9e47d3be316549bbae01437e493fedd2bcc51d0a6efe69
|
File details
Details for the file siokcp-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 289.8 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9ec9a0c4702f667d9eaa6ab2cb5a2ae9b919f99e20b5c86de00fcad54cb1afc
|
|
| MD5 |
1ed1a276fa04b2e19ee938ab3f06309b
|
|
| BLAKE2b-256 |
f7a5145d784c71e8e336148a4c5d014cfc05e5416ba1beceab87a338ca95fdfb
|
File details
Details for the file siokcp-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 283.7 kB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2f5dab08df0df5044721aad84a0be796370045ff1dc05cb18d70c6baf920cac
|
|
| MD5 |
c815d8a5f82e38c9cf3d770af45cd57a
|
|
| BLAKE2b-256 |
4bb1bcc8e67ebef477e2e03762e29ce2f3d0272874695eaa1e7b8b5640f15f93
|
File details
Details for the file siokcp-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 284.7 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b73c6e968b4a6fc9779b13cd5a655f9ed691063df8115d8f9b6e6c75cba9e08
|
|
| MD5 |
40f7452b23a213d92e62594c7893e114
|
|
| BLAKE2b-256 |
a5a5308d1a8b1d139a82128db0650d3a76d8b1fc9aa81214c099930f13328975
|
File details
Details for the file siokcp-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 279.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0193151439a8e0d2bbdbe026011b96bb9a45b37726b95f918115c1388eefff10
|
|
| MD5 |
7af66c574093e16008034afca3fc6c29
|
|
| BLAKE2b-256 |
96654bbb05a46dddb050c86b5ab5a2c9290d8111cb88c32ee53212404014803c
|
File details
Details for the file siokcp-0.0.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 255.2 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68efad4ce65013ba6d46f2e3d03813beb29a87dec16c83bd6b22d422af957899
|
|
| MD5 |
a29d53eb69801e872b0c6920f44dc6ac
|
|
| BLAKE2b-256 |
3b4380e852410a442df1fba38f4621f483cf2870269fc74044226346a9ce6517
|
File details
Details for the file siokcp-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 261.7 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f61f7b5407594bd1ab72ffdf84cf4af91145466964a80e8db89406fe385a1686
|
|
| MD5 |
ee5c361f66f58cbdff6fac2f4e11b9a8
|
|
| BLAKE2b-256 |
3f1e17a40ea55e6dd0d05c79a7fd0885a2b7c32d3d9dca40014f5852f41f9905
|
File details
Details for the file siokcp-0.0.3-cp312-cp312-macosx_10_13_universal2.whl.
File metadata
- Download URL: siokcp-0.0.3-cp312-cp312-macosx_10_13_universal2.whl
- Upload date:
- Size: 342.8 kB
- Tags: CPython 3.12, macOS 10.13+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c736ffff429973b3a446b1b31a169ef04c5317c9ac5ed310b8b6b6fcf36b6df
|
|
| MD5 |
78155cddaceada1dc6de07022de26455
|
|
| BLAKE2b-256 |
9d9717cce9a7bf4f98c7a73c36213fa2051dba55e4c1e974155d05a8ecf905eb
|
File details
Details for the file siokcp-0.0.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 256.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b89edd4139f1362dbefef14553def7012024c93f0a6849455057b1155c74a060
|
|
| MD5 |
82f3d9b3b99094a6c8ca3e798509c78f
|
|
| BLAKE2b-256 |
aa16745e733baa3c132e7f7626b70f9550bea5da7bd5849b334ff16d734078ea
|
File details
Details for the file siokcp-0.0.3-cp311-cp311-win32.whl.
File metadata
- Download URL: siokcp-0.0.3-cp311-cp311-win32.whl
- Upload date:
- Size: 240.6 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6daf7312477efdc14319fbc770cb33f0a9181da660cdd40b6accae10680df341
|
|
| MD5 |
a25534fc5a63da6b2735e0e2a5b0c434
|
|
| BLAKE2b-256 |
ad6c8fe23d4edf5fe6006816fb304bd413f14f508e7d294305128a52bd288053
|
File details
Details for the file siokcp-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 292.5 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2213c13df48d4640834f2249d103263edfb1391ea4785c9206b800cc4d19d8fe
|
|
| MD5 |
c3c713bfeb751779b5fb8c1bc6fa4ff2
|
|
| BLAKE2b-256 |
e8fa14aad529b801dd521a67fbe2e8b38b51fa2a0c8f94c47cb3535ff9293a40
|
File details
Details for the file siokcp-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 287.4 kB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8041179802bbfa9b2715457312711d0bcc8a7232cbf6d04490c524c6392f7643
|
|
| MD5 |
230c220021fad17b8e5750d629d69a8c
|
|
| BLAKE2b-256 |
cefe68b94edcf8b94b754ba8c12c93ab5a9aa4109a33ad45e3034c0d65a2b397
|
File details
Details for the file siokcp-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 286.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2560be57c8d1e15362a48c75bff836dd47ad6b13cee924286a663c02c480c0e2
|
|
| MD5 |
9310a6c8091fe076177181a9a4ed3457
|
|
| BLAKE2b-256 |
c1df8444e47e887ae9f2436b4503f6cd828032f726ac9b22c092fa1321edd92e
|
File details
Details for the file siokcp-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 281.5 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ffd60fd87c7e12fa6c5d917f89e592ba985b38560d474139643231bb5ec2409c
|
|
| MD5 |
8b1a572df36e5e3dff181e09a1a55694
|
|
| BLAKE2b-256 |
a9dd77e46227e794a84a5d3dda2faed2d6993e4525565736ffa7aef90ac07549
|
File details
Details for the file siokcp-0.0.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.2 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d1f161b7f42d84c5690fac45f520a4dbca1f0c96240371e044e472007d59061
|
|
| MD5 |
9df3c843161f222553e4d8d6e6e6b928
|
|
| BLAKE2b-256 |
1b0e450434f5d709671447f1b6e2f3a3ae7dbf55bd45147fdfec3a1c22e8f1cf
|
File details
Details for the file siokcp-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 260.0 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
697483e2919aac48f089b269fdd1b006570c631fbdeedcbe5f5b09bb38282be0
|
|
| MD5 |
559c32f9df922191cf139ab0aab9f7d1
|
|
| BLAKE2b-256 |
ac70a2ac5e6e8ca408609bf9e00e6afcef83fc2b4b72d1eb163bb3676b9f7cb5
|
File details
Details for the file siokcp-0.0.3-cp311-cp311-macosx_10_9_universal2.whl.
File metadata
- Download URL: siokcp-0.0.3-cp311-cp311-macosx_10_9_universal2.whl
- Upload date:
- Size: 340.1 kB
- Tags: CPython 3.11, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d0ce61040275f4017a0e7e9b0b812b273da7460eaff4cb87248f869b730c785
|
|
| MD5 |
dc07f04480a4a57c8f532e1b6e90b3e1
|
|
| BLAKE2b-256 |
675581ea0c99165e2c89156c487de970fdba49708a91c409f02d4f1c606aa5ae
|
File details
Details for the file siokcp-0.0.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 256.2 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e0536e94a8de4d9ceb2b66a73cb620f81aaa8cfd61474cbe1859be70fbd20000
|
|
| MD5 |
793a76aed4d2dfd73a1adb49de1f10c3
|
|
| BLAKE2b-256 |
32007a7dbf706617e583b8d618ec687771f78587715a7da7e721d3a5a3e8d067
|
File details
Details for the file siokcp-0.0.3-cp310-cp310-win32.whl.
File metadata
- Download URL: siokcp-0.0.3-cp310-cp310-win32.whl
- Upload date:
- Size: 240.9 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11346ea8edba17e008a821784d50b319b4c3f30f97051c1bd18514ef4e731899
|
|
| MD5 |
a377ffc00a01c4fe06220911d722d5d1
|
|
| BLAKE2b-256 |
97e19b6a687a01312b662cae52ef74e7c48d6e26f8a605dc75ba142bf47acd47
|
File details
Details for the file siokcp-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 291.8 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a9b46676087f143b93472f0644178c5cf67a8fcd2b0c4dcdda97891416ed91ef
|
|
| MD5 |
5596354af2589a62e209597fe1d3b432
|
|
| BLAKE2b-256 |
00f6fc26e62d5b53d2a31b54f5250f4f3bcf7be066a779a55e23ab21968371b9
|
File details
Details for the file siokcp-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 286.9 kB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b80f52593ab5883d21f03effdbedbd5a7d254614b8f6eb156fe908a1a91da3e2
|
|
| MD5 |
ba64173d78fbfb529e46813755171478
|
|
| BLAKE2b-256 |
061599930da06933edcf03559b74771363e936eb9a4db45717801555d4b46c60
|
File details
Details for the file siokcp-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 286.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
959986b7d76b5fc613aca944599b5bd1fb29a43b42eb39bd112011867e030358
|
|
| MD5 |
b7dcdfa881dd463b31d2f2ba4bc02354
|
|
| BLAKE2b-256 |
38202f03cbe1dd7015bbb44e896fd51fd51e3ad3315db9cfa09bb2ccc86d8731
|
File details
Details for the file siokcp-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 281.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d25114f797a058c1d612bba56af4984fa9a3a8e48d94d275a30ce9d7d3e1facf
|
|
| MD5 |
02e51738d521d216a92439e8ea9d8c3d
|
|
| BLAKE2b-256 |
b6f119d183f953314eab20ec99ae332b698e178815231688d59ebe10ef1aaf2a
|
File details
Details for the file siokcp-0.0.3-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.0 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e5c85c1619daa95dd60e7815ab2019dd3ad508dff5e77ba9b5271fb37ee9ede
|
|
| MD5 |
2022a40428f82fad93e80bae4c09dd7a
|
|
| BLAKE2b-256 |
07db962b6308943713a4fc7ccf8fb5864b8900e8940cc44a9136724373434981
|
File details
Details for the file siokcp-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 259.6 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcc6e9b68cd67167b4af1791ccf48594749658b9cb4d07758cfe7ca2223d4cf5
|
|
| MD5 |
01223ddc6e4fe97bfc6d2ff426216421
|
|
| BLAKE2b-256 |
b71e9d8e49f76de173cbcad060381326a7c401004b5ae1aaf3d4c49bd0dc8a7b
|
File details
Details for the file siokcp-0.0.3-cp310-cp310-macosx_10_9_universal2.whl.
File metadata
- Download URL: siokcp-0.0.3-cp310-cp310-macosx_10_9_universal2.whl
- Upload date:
- Size: 339.5 kB
- Tags: CPython 3.10, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
64f818d54ad55a11c04c5648b68078cfb66f4c28ed4848952e716d2edb114de7
|
|
| MD5 |
c6661c87b10631123ddce2f4190f0640
|
|
| BLAKE2b-256 |
f681e27997983ca9f83f2d660176a9e517db1b4e4bc16de3292938ff3563dfd2
|
File details
Details for the file siokcp-0.0.3-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 256.7 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37dd30d4e9a5df1ea4ac1cd8d10d211f1d4959a10aa0430e0afd59eb47ef7e90
|
|
| MD5 |
8f059e5a6d293a8073b3669d8fee9e9b
|
|
| BLAKE2b-256 |
373907c8678ff0166dba5ab87a0418b87f5d606a157abb4947a251bd5844d9d9
|
File details
Details for the file siokcp-0.0.3-cp39-cp39-win32.whl.
File metadata
- Download URL: siokcp-0.0.3-cp39-cp39-win32.whl
- Upload date:
- Size: 241.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11f698d4fe59424db80eebc704f99f4034b4514cd566b042572f69fa704b5fa6
|
|
| MD5 |
e6c62bec671bec6494aa4f511cd16f09
|
|
| BLAKE2b-256 |
9eb4fd26a5dca3d65c8d874c20ea2de34093e7122fe2e7fb897d7dc35d81e342
|
File details
Details for the file siokcp-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 292.5 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
835c3fcd141664a90460bb470af13e550d23fc54683ffe71b8a1edf13a1dc6f8
|
|
| MD5 |
1526c9921af32515443e548e2a3b0f0f
|
|
| BLAKE2b-256 |
798896942f0da571d953189c4a21876bc31da9bbaee4c3f845f310d6086cbb7d
|
File details
Details for the file siokcp-0.0.3-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 287.7 kB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fb681d8b96cdcb0afe050d9e715e4b60cf93daaa9cb900376be511a2f59c8f7
|
|
| MD5 |
a13208e5b55e6666930aedcf7d069aa2
|
|
| BLAKE2b-256 |
1206e0108077332ed93a06f3f217b4594b4c0e1b883bd20d9d387ed1ea54defe
|
File details
Details for the file siokcp-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 286.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
947540540723a845cd47f00ff1cbb005afa4de1e2eb42699b37f597e24fe34af
|
|
| MD5 |
e9289487d5304344e8435d35cc269cc0
|
|
| BLAKE2b-256 |
1607a425ed8123ae96aeb34fb9088fef61b97b3a348534214ad0d54f6a6aebb9
|
File details
Details for the file siokcp-0.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 281.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fa083cadb2132598a12ebe53e47a97fc8afab94d76af83b431dcc217c84a9c61
|
|
| MD5 |
cf10348ec9786749e8891da754b019a6
|
|
| BLAKE2b-256 |
fdc178532fdef747faecba94d28250da697e18bfc924e0699b6dde445e953549
|
File details
Details for the file siokcp-0.0.3-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.6 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
674f0e32c78f7fc110b433455c747afad00801021d7f7595c81954a5ef2eb7fc
|
|
| MD5 |
67a0de93c1125b7ae71c4ebc4665151c
|
|
| BLAKE2b-256 |
1f105d764eca300b2958127dddd547bf47d6ee3f3681037636b80bbc277e694a
|
File details
Details for the file siokcp-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 260.3 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c76f6d8236727166e646f7bb900cd69628d5db59ccf982a922b99e6f9eba032b
|
|
| MD5 |
3419c81e5b05ddaa9cfd03a6826c1c66
|
|
| BLAKE2b-256 |
5fe158f1155584786c3cebca76d14584f6d43921053e7fe9fbc9bd721db0b946
|
File details
Details for the file siokcp-0.0.3-cp39-cp39-macosx_10_9_universal2.whl.
File metadata
- Download URL: siokcp-0.0.3-cp39-cp39-macosx_10_9_universal2.whl
- Upload date:
- Size: 340.8 kB
- Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0225972f9c2771472c66b76b8bab740dde9d6c068372e113006bc2ac2f112ef4
|
|
| MD5 |
4ca754d43bd03020aaea9fc396625e98
|
|
| BLAKE2b-256 |
d6fba102c6b385ed108dc663c6fc562a14eb45119c1f58d1cb7ff0e2588e16af
|
File details
Details for the file siokcp-0.0.3-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 256.9 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
552bca918fc183347ed8b912cac332d70cff69c9e7acb2374b885adcce46b0a8
|
|
| MD5 |
82e65621a1b0894007fde25cfc728752
|
|
| BLAKE2b-256 |
1bf3612c75677a5d43bf65a93101733bbd893320755f84e2f40f04fd20b77532
|
File details
Details for the file siokcp-0.0.3-cp38-cp38-win32.whl.
File metadata
- Download URL: siokcp-0.0.3-cp38-cp38-win32.whl
- Upload date:
- Size: 241.5 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c2c377e1940d442e98f62da12026a3e4c5a26cee1c1370387e9e692ceefad41b
|
|
| MD5 |
ef269fb47e4fc386dea35f7862b95fc0
|
|
| BLAKE2b-256 |
8ecb8a3f7a80a4420fc37e6344771bccc9c1f7e0cabe07b84bcedfa93661aef1
|
File details
Details for the file siokcp-0.0.3-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 292.3 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6f55c0443dd765c058689afd2b9aed2bb8cd6a2359eb9b71e4bf3b5b78578f08
|
|
| MD5 |
5e978ac4d152ad5644472c43673b3ce9
|
|
| BLAKE2b-256 |
81b76b58e17dfff2e2fafe91669f227417577f55e5cc6df3f2eb0a017f050f33
|
File details
Details for the file siokcp-0.0.3-cp38-cp38-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp38-cp38-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 286.5 kB
- Tags: CPython 3.8, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d444399a5aa52d2528860f60c0a5398004525cb5be0364cfd277dfa9b026fda4
|
|
| MD5 |
5386e859f64731f98f44e37a1e9bf13f
|
|
| BLAKE2b-256 |
c7fbb3936a8493fbf05957d97fd09c77100c6e8aef7b9ada30bc71c9a6796bac
|
File details
Details for the file siokcp-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 287.3 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f07dad8ff4db697ff7b843f657452f89d1b10d66c3e731b44948b7fee0c4ce4
|
|
| MD5 |
53a0dfab0942731a494299d1f5ce1a99
|
|
| BLAKE2b-256 |
fd4eaa107e198bfda3ed5c79693988f6fa28db847764ec6bf4889064ace62f1c
|
File details
Details for the file siokcp-0.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 281.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.16
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a762ae36cf55e3447bac9ccb113ad1047cff3525f594802c20126303f224f54
|
|
| MD5 |
ff75b33c1a6229899cab834bacc8ecd8
|
|
| BLAKE2b-256 |
b2d0043e11f79ef28087617afe5695c90c3f6a403320e56b7efd6c590bbe23d0
|
File details
Details for the file siokcp-0.0.3-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 254.7 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dbf1689e18393ebe349857352c63224df13428484c003f4420837e96cbef164c
|
|
| MD5 |
4386e1cd121cb6827b0b6648429ad724
|
|
| BLAKE2b-256 |
2f8f55e6adbad19635ab098288a3e6bfa28dfaa8246aedd12006dc11143a4303
|
File details
Details for the file siokcp-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: siokcp-0.0.3-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 260.3 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bf94ec2c555acf0ca2c37239ee92cd046fcd3fc4cac99096bc5fba8a8a38fec4
|
|
| MD5 |
726acc4766c0f04f630640eb8a5eae7d
|
|
| BLAKE2b-256 |
427ac06c32aa48ec15a478bd631e3ae45c4c891f09a69b01d984075ac74965ca
|
File details
Details for the file siokcp-0.0.3-cp38-cp38-macosx_10_9_universal2.whl.
File metadata
- Download URL: siokcp-0.0.3-cp38-cp38-macosx_10_9_universal2.whl
- Upload date:
- Size: 341.0 kB
- Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
50d8e52532bb17df4a743934df1fb2347136bccc7de0aaacde055ad705c5d685
|
|
| MD5 |
aac40a4ce6d03c03fb2dc91c4dd0233d
|
|
| BLAKE2b-256 |
f24d2a3b842da971b21a1ae3eceb604949865252e54bf8560109f15380214376
|