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.2.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.2-cp314-cp314t-win_amd64.whl (797.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

zynk-0.1.2-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.2-cp314-cp314t-manylinux_2_28_aarch64.whl (973.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

zynk-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl (882.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zynk-0.1.2-cp314-cp314-win_amd64.whl (797.9 kB view details)

Uploaded CPython 3.14Windows x86-64

zynk-0.1.2-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.2-cp314-cp314-manylinux_2_28_aarch64.whl (973.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

zynk-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (882.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zynk-0.1.2-cp313-cp313-win_amd64.whl (768.9 kB view details)

Uploaded CPython 3.13Windows x86-64

zynk-0.1.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl (973.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

zynk-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (882.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zynk-0.1.2-cp312-cp312-win_amd64.whl (768.9 kB view details)

Uploaded CPython 3.12Windows x86-64

zynk-0.1.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl (973.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

zynk-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (882.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zynk-0.1.2-cp311-cp311-win_amd64.whl (768.9 kB view details)

Uploaded CPython 3.11Windows x86-64

zynk-0.1.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl (973.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

zynk-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (882.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zynk-0.1.2-cp310-cp310-win_amd64.whl (768.9 kB view details)

Uploaded CPython 3.10Windows x86-64

zynk-0.1.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl (973.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

zynk-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (882.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: zynk-0.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 9eb00254ff216a4c32db90e6d1931ebe7ce6692d0928427efd807f97dec66696
MD5 9c647b6f69d2cf74c53d0a933aab2159
BLAKE2b-256 eaa661be4f66ca3d177d4793184bdad4b148cb6ee8795cb6f2c200113848a382

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2.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.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 797.9 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.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ce8bfe523ae7136c61865233291288eb90442e0b7e8264974f8afb0171ca3be1
MD5 4a5b07e662d4d502edc3000924dd07ed
BLAKE2b-256 8f80dcb48700591436770b341732b15df7fe8137bb8842fbfdde910c0423883f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e616d04185274082a65c694cc34a94617ec5375c7349c9977038c5e7222117f1
MD5 ccd1eb7ece6dac9037fe2ffecac1a667
BLAKE2b-256 20e328c4789a093760cccaf9fd13b7991eb54bdffc10e894b9ee57ddede249d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5784f3041aa9f659f232fe8de4a32920d70e5646a7af204929f4457101d75026
MD5 b446ef79778d7f99c407785033404296
BLAKE2b-256 a43096eed43b9e1817c45f3674c5f0525b17d31109f1a1c5d9559af512b945c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 210f6578dc4b43e950a8c02a96d8787d4efc5f28cd1a8edefd1348b26887532b
MD5 088bfd8c265d1cf6a0157af96fb3483e
BLAKE2b-256 4ba9036d97244833fe9165144ef9ddd83d9c083bdde1a8327c09313fd31b6698

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 797.9 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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f5428f889dbc46cbad865ef4b388bb26776b0719f8a5ab27a24d010a20e130f
MD5 26c0ed5e055a5f638099a6d99537745a
BLAKE2b-256 a9e0d56a27a937a320d31100d042948465f8810a040c470298aa18aabd1b4030

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4bdf016054180e0ab184b5b3ada94eae1b26cf72021990e97fc52056501c04a3
MD5 33d99eea335472dbc8636c7844d7dec7
BLAKE2b-256 fa5b1cbf674e2b1acf582daac492ee753e7c72ed4ad8ff7c20f79a228ce15f9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 305ccb3ab8d94438d84b7d504c6cafd19343a017167067bee2c77a52e5df8ee9
MD5 f18c51542a6006499a5d3d262b57eced
BLAKE2b-256 1ed865ca320da99451cc7e500d96c35bcf82b972396c0c4640d9ed5431ab487a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 882.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.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29a75944576aa5d4b78ad9a064c0edf506c2d1b455724d64bfba70f9bb59fab5
MD5 e5503d4f37c199b0f7f23c1187aa5e3e
BLAKE2b-256 8e6bff71da5b95eff24d7e8de245fae4c5660c8ba143fb6a8bccee9cc80432e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 768.9 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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fb3ba7f37a5fe5d04868798a3a6d80ce353cdeb324f060ebbb6b68f3a2d32272
MD5 ede7459429f3f990310f565f412135d3
BLAKE2b-256 4c04a0ddc9d16f74be42f8840632c261387db714e9344847f551b4f0390d9976

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40eb6ef8ed3e89f38e637667d4d0c9efc9dc711935fbdacdf4e749169706dd3a
MD5 bfe9b02355597995cca9f7b19e8571f7
BLAKE2b-256 ea20619744b4662c70255d0aafb8916e2c0b70e130dd5a702f14ecb0197ef75b

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3c103a8ec44409c63f119b079c7609df8f02ab2fbd95667232eb5b05a85fcab8
MD5 87a21753a89c9d7b5b5d5bc89b1d867e
BLAKE2b-256 47d827ddc868d7828e77db0bd5de793b37435bc10232492653b573c211123d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 882.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.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0b2e4bd9e5b2b7446178cf9acbe1b37b686d09c8e3ba779489ee5f84da454fc
MD5 a3192d0e1aa98a329daeb6b7d5f58664
BLAKE2b-256 b0a5b97a89aa6299b143fd948b5b09a6e80e37053750a838335157d368373454

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 768.9 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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b4d4871213889000f02a38aa8cf78a825efbdb8b3334670eb550cfd0d52b6e55
MD5 072cbfd9c6cf82b5484af5436053fbbd
BLAKE2b-256 ccc11b80642cfcf6ba43c77c74b3edfc6003dce268cdb9d0ad99b1c7af43e88a

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 856102a3a6df78c29e8838e51d857aba2b77d19ff6af8148f04eb2ded659f256
MD5 ebc1baa9640480c74a0178fa270a69c4
BLAKE2b-256 00f518b226588e9cfb683677c272f8ce0824c5b4281b4b1ec643deffdac1a2b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 632677b4b5d75f95df4fa86da1e4fda4f415c7fc20d0e1e1ef0b2cfe0b4dc8a8
MD5 21e0711c04cbd7577e27d41791279bdb
BLAKE2b-256 b8ebb4eef64851c0d2cbb6e55a44f6849cce1d1db7578137e57fb97456474369

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 882.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.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec706e01c0145504f7b514acce2d2d478a5c54bf0a9fe0e8a7e9b6348ec5fe96
MD5 e17255adf52faaefc1d6ba3d1e1a9155
BLAKE2b-256 fb524c016f472a8d7eb0864f1bd8f8327367a41b852a6b766380fb895a55f03f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 768.9 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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3de065800ac6b9c674fcadd7c95c686a6ed3ecb18c3dcaecd11955e8b4a642d9
MD5 150f804e5f4898efd0e89905c9430d05
BLAKE2b-256 4639c11b74bb340eff3a7a26c4e74017853176c4bbb778d0cb3843442b8cf1f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2d06406689d84cffa155e26387f9db8345309a4242dfc30eec669cef158d0272
MD5 499c91b4c84c6cfeb45e67ab73ce2022
BLAKE2b-256 873d2405ea14c0daad14c40c1be5c54bb2c344b13dc199a154f2f59a31387c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6d5c5f23272a08d32af2cf6e814e398d75d07af1460e0b8421cd94a935b45ab6
MD5 92ba85156c9245eabc4292b353acede1
BLAKE2b-256 fe3d93e1c7bb547c71eb9c8a9bb166aa2bb739e1834663660121146c0114e1f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 882.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.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 223a9279391289797f9739b509297c7b6fb2f02567601a3265af82b56c54837d
MD5 8a21f4b74f890e1af299596d1eb0cb1b
BLAKE2b-256 25a8ed4065f9d7e39720c2139720b1e172795115e7084e424f2afe31ee68d373

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 768.9 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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a796ba8ccbc04bc817d5b573bf29f1619b77f1b36877f0a5b87c79f636dbeccb
MD5 bc17622d4a00ade4e140c7792e5ec080
BLAKE2b-256 fd1a140a34f50e165efa26269aaf9ddc6aad7b6d7e260d62ae7c51a0ce5b404c

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 660548cd56403bb0b4b3b2f41d229851dc4635fff6148c7a98f24467d14b0dbd
MD5 99460679baacd1cc678e62d6d6f3890c
BLAKE2b-256 b636da1e226773f3dcd8d267d5d3241652258e3b62a96a33f19125311e9de9c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for zynk-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20e9556a97ca55ae959d2d34f1d12cef9af4e5f715b4be4097b7ee7ec8a67222
MD5 903cd41e1da9fd8c0217e3855554de89
BLAKE2b-256 9d16d8c7911918911fede5c5223ca365570c046f27c96184ba014192c97ea72f

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zynk-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 882.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.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae92fb371241464ed1621f4358c646c5f51d6c90881406113dd425ba92d97a11
MD5 d898a63cc22cc4073ff0bb0fa18935cf
BLAKE2b-256 8b421fd7a601d372c162ae4faa3303f9698809b8f0f877e1dedc33a4d71a58a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for zynk-0.1.2-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