Skip to main content

Python server runtime for Zynk. Pair with the standalone `zynk` CLI (zynk-cli) for type-safe TypeScript client generation.

Project description

Zynk

Python server runtime for Zynk -- a general-purpose command protocol for building type-safe bridges between backends and frontends.

Install

pip install zynk

The zynk CLI is bundled in platform wheels. If no prebuilt binary is available for your platform, install the standalone CLI with:

cargo install zynk-cli

Quick start

from pydantic import BaseModel
from zynk import Bridge, command

class User(BaseModel):
    id: int
    name: str
    email: str

@command
async def get_user(user_id: int) -> User:
    return User(id=user_id, name="Alice", email="alice@example.com")

bridge = Bridge(title="Users API", port=8000)

if __name__ == "__main__":
    bridge.run(dev=True)

Generate a TypeScript client:

zynk gen typescript --target python --app main:bridge --out ./frontend/src/generated

Use it from the frontend:

import { initBridge, getUser } from "./generated/api";

initBridge("http://127.0.0.1:8000");

const user = await getUser({ userId: 123 });
console.log(user.name);

Features

Commands (request/response)

from zynk import command

@command
async def greet(name: str) -> str:
    return f"Hello, {name}!"

Channels (server-streamed values)

import asyncio
from zynk import command, Channel

@command
async def stream_data(channel: Channel[dict]) -> None:
    for i in range(10):
        await channel.send({"value": i})
        await asyncio.sleep(0.1)

WebSockets (bidirectional)

from pydantic import BaseModel
from zynk import message, WebSocket

class ChatMessage(BaseModel):
    text: str

class ServerEvents:
    chat_message: ChatMessage

class ClientEvents:
    chat_message: ChatMessage

@message
async def chat(ws: WebSocket[ServerEvents, ClientEvents]) -> None:
    @ws.on("chat_message")
    async def on_message(data: ChatMessage):
        await ws.send("chat_message", data)

    await ws.listen()

File uploads

from pydantic import BaseModel
from zynk import upload, UploadFile

class UploadResult(BaseModel):
    filename: str
    size: int

@upload(max_size="10MB", allowed_types=["image/*", "application/pdf"])
async def upload_file(file: UploadFile) -> UploadResult:
    content = await file.read()
    return UploadResult(filename=file.filename, size=file.size)

Static files

from zynk import static, StaticFile

@static
async def user_avatar(user_id: str) -> StaticFile:
    return StaticFile.from_directory(base_dir="./avatars", filename=f"{user_id}.png")

How it works

Zynk defines a stable wire protocol (HTTP + SSE + WebSocket with JSON envelopes). The Python package provides the server runtime (Bridge, decorators, type extraction), and the zynk CLI reads the schema IR to generate type-safe clients in TypeScript or Effect-TS.

Any generated client works with any conforming host -- a TypeScript client generated from a Python host works unchanged against a Rust Axum host.

Links

License

MIT

Project details


Download files

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

Source Distribution

zynk-0.1.3.tar.gz (44.1 kB view details)

Uploaded Source

Built Distributions

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

zynk-0.1.3-cp314-cp314t-win_amd64.whl (790.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

zynk-0.1.3-cp314-cp314t-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

zynk-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl (968.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

zynk-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl (879.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zynk-0.1.3-cp314-cp314-win_amd64.whl (790.6 kB view details)

Uploaded CPython 3.14Windows x86-64

zynk-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

zynk-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl (968.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

zynk-0.1.3-cp314-cp314-macosx_11_0_arm64.whl (879.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zynk-0.1.3-cp313-cp313-win_amd64.whl (764.2 kB view details)

Uploaded CPython 3.13Windows x86-64

zynk-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

zynk-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl (968.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

zynk-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (879.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zynk-0.1.3-cp312-cp312-win_amd64.whl (764.2 kB view details)

Uploaded CPython 3.12Windows x86-64

zynk-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

zynk-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl (968.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

zynk-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (879.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zynk-0.1.3-cp311-cp311-win_amd64.whl (764.2 kB view details)

Uploaded CPython 3.11Windows x86-64

zynk-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

zynk-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl (968.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

zynk-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (879.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zynk-0.1.3-cp310-cp310-win_amd64.whl (764.2 kB view details)

Uploaded CPython 3.10Windows x86-64

zynk-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

zynk-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl (968.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

zynk-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (879.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file zynk-0.1.3.tar.gz.

File metadata

  • Download URL: zynk-0.1.3.tar.gz
  • Upload date:
  • Size: 44.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3.tar.gz
Algorithm Hash digest
SHA256 b4337faf3ac710ed619cbd1da65979a5b7c2a6a326ad96136673e263014751c9
MD5 b3a9590e697cbfd04167ad32190f702a
BLAKE2b-256 4bd89c99ca401b3dfe7f6698c478e19c81c8315ca4d2e4e84c67433282b85549

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3.tar.gz:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 790.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b6bd15c2e05b2cddd819b40ae9b39a92e5ffe2443349ab685c19ff02b758b05f
MD5 a58c1fd1c400864f817bf19509a2d2b6
BLAKE2b-256 d374ececabd5798d978aa7e19252065c2f968425f5a918bfaf3a74ba77ca7b4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp314-cp314t-win_amd64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7d548280d495d41d85d22521be691a10439acdc2029bf16fd80019e8ca6654d
MD5 3cde5f7bd91135982792965335c2932c
BLAKE2b-256 2c97b8dfd5a204a792a87ee5ef618283919942068050328c9f5af7797bd4ba05

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf6b566f3a0086cb7f79137df96585bb9de3086734f4aeb4aafa6d98af352145
MD5 8a364937af4e5c129256738a8d8f0390
BLAKE2b-256 65ebb1ab4c69c92587086ad7166e60586c1db25224d6077cbab264c76e9fea39

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a56aec04282c50151be272510649dee55b38c6f66069e4c15bac1f0bbca9342
MD5 b661aa32797cba696c822a53e387d63d
BLAKE2b-256 71e244b892a0c713979f343b64deaeb3e353ca4700b29c28bef24e7bba6fc919

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 790.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 03c39330e8d5f21116b97e9e3df43a5bd3d227faa2c67e55ebc493278b2679c3
MD5 c48a4da5771cc897ea0be1c3411446d8
BLAKE2b-256 f008e98f93d78f322e8bc0bb8196a060b6cc3277f5fee8579d0ddb07e09c9a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp314-cp314-win_amd64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c8c845e203a6dea690550dc461fdac902a97ae797ed436b6cc37058cb0e3e05
MD5 911efc68a44fde0a30de0ae9eb7a5fcb
BLAKE2b-256 e2ea83d8328c77dc3f106cc9cb788cbda8420c5fa45fb538657eccdca6004e5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28414cddca33ad8e8434cb8a79bbbe99add5dd84842562df07aaa9630d8daeec
MD5 2e49e9f5c5bd0c1c5a4a4a2138777094
BLAKE2b-256 a711d0d66d9ae1575baed2812e1ab907fcb10a20c6efbc2312246d9c6243cdea

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 879.7 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73ba1d4f101a9b37cea3bcfcf6acdfb02ff245e339e986a288abb7a997c35e08
MD5 2f9f24e8bacd1d6211cc9349d6a2f1e0
BLAKE2b-256 7ad5866b708f181f885c34a708b8c0f635d29d51d26426517dd0ce026aea1800

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 764.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6aa2b0348c24a81f74194996d11526bd35d6b8ef4fca73c766e85daaffbe560a
MD5 192c24ad18fc5a8a6f6cf50bf2768147
BLAKE2b-256 fa47d9af259c688ee7449a4c0e79c89a0923bea545b66de8bdd5b55f03436901

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c93141d52f497d91cd2a80b8c4d68e1e2ebe8c4b12afbea67e3ba5b01415cc5a
MD5 6756a4ed809cc9f1b7e25d69e84d4574
BLAKE2b-256 46ef16dc5882e09f1fe4705f02e867f2fd18b230cbf776ef591e50eafb2193c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b234c0eb9c9f2d3f74d5a642980c31580c2ec9c34d1867acb36d3d8cedffe58
MD5 1c1907c5ba90f7c5880f8d700ff3a15d
BLAKE2b-256 780b124f2827837e66ce1a7d357cd83a27a7b4739171ddc0209fc9f8889a4750

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 879.7 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 057de58f3884697300ce133975c959a41808d1c3db6463cf50d57b6bc60a729a
MD5 7d14bddb8f75629833e6da3a37f6a8be
BLAKE2b-256 91ce2706909600c0c6971512538b513b9c3a3db71901bb7928073c21d4f0a4c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 764.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1ae756a3bd837877708b183ddf10a0e848262d4495b946c09c85954df6e46e29
MD5 30937d1d0ba95c1b6798abc50f6f818c
BLAKE2b-256 c38524bfc646aa2daf109cace7ba97e0a42863aea77f41db49c6253ed358df94

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 218511378834a3a5d965e80543478ca2e191a8cbb05370dc85084913b8d1fa28
MD5 7ae8e592bfe1a3f749c34d176beb6caa
BLAKE2b-256 ea4e5e2563245c6b91eed2aee0f8153da2a8542da9bc6977c7c19afa9f5997d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63ad42ec95fa0027666e7505cd1b0eab05b5d5de4a837d084683b82454498627
MD5 01988f0ecbebe95eca958d19776941e7
BLAKE2b-256 fd722c8e33e93aa959ade886cbf4cc82a7c0b882753163879bb978ed6e7ee69f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 879.7 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a728b4137fffa025633996f5b78121f6ab1aab30aa8fa6a2a3baff444dfa494f
MD5 6ac39f48ad2cc620b073c2e24e4db7ab
BLAKE2b-256 8473ff37686198e89837990637c65ee8aed2b7e78c3fdf23b37be6cbe279c388

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 764.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 73d291502165676d2f218ebec19ad2e667c534cf400c6bd5bfa0da5e9fe7b629
MD5 a2a1b33a13ba7f1f6a231f16e32a329f
BLAKE2b-256 2cec3e29be97f1375fadbc8d567dff7139e97ae086a0d51174ed466db61af58e

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8271d2fed6fd4847402b8cb919e84abd0bcf3394dcb2edfd7717a6c1ea20d7ed
MD5 cd322e254d7dce46b02b909a9f8ac7f5
BLAKE2b-256 9d2b8d8b9718c4bce726cd3f3a201cff1e7ef81762d6b2af5b7fd28bfa8e065c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4bff9cd04f590ea18c4e1eb127cc096d23cfe88e139001c6c5f83bf987aa0652
MD5 68fe8bfc7c96b4b8d3d3db3134d6cdfd
BLAKE2b-256 e1ec7aa6920ed8a55e2c08f376899257a198e9a320155c71b965f42a2a5bc800

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 879.7 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99e6edbcbd153e28c3b84539b4fc31f67207874aa155a85ced913f44cccbd5e3
MD5 7bfbb020935f8b225cf05c8afab1c8fe
BLAKE2b-256 a2d916a5e52b6a6d55be785b55001e45bc9d45195e8fd3612a4799f9efc8ac71

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 764.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3aa4b0a81a365744f82f01390ba35d8a9d7bff0177b8859b616dea602943939c
MD5 4fa7b88450522c989b1a66209e2b0e0f
BLAKE2b-256 2797d190f86a36942a9e75f1f99f49c9adc5baee5b7a1e4624c464f346933921

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 49e14ee7da7a15fed5422721535c25a0a4c54aaf4387d35b33be1d31453da8aa
MD5 6a6cdf04a6a31b7b38262c74fd90b21f
BLAKE2b-256 f08d386c8bc7dbe74ab34aab133e5892b0f52b3e4283e5710043616e5a0174ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a457c6a215cf87c3d032842254a09ae01b9c486921fcb6c3926cb86c886f8a3
MD5 5827a2feb2b865b59442c09d520153ee
BLAKE2b-256 340ca8c857ca3402a76bd7b8919174ae09253cd0921e8910270a7d782fdb4dab

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

File details

Details for the file zynk-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zynk-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 879.7 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zynk-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 638414c33b924ffda1bcad21ba9bfab78ff778198717a3df780d0d02f7781883
MD5 4f9aa1669783f3dbd74a20ca6fc8e685
BLAKE2b-256 aca6f0e4f45950083c536da79293a5137eb6666d8aa8176469045cf8a64ff02c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on SethBurkart123/zynk

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page