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

Uploaded CPython 3.14tWindows x86-64

zynk-0.1.1-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.1-cp314-cp314t-manylinux_2_28_aarch64.whl (969.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

zynk-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl (878.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

zynk-0.1.1-cp314-cp314-win_amd64.whl (793.0 kB view details)

Uploaded CPython 3.14Windows x86-64

zynk-0.1.1-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.1-cp314-cp314-manylinux_2_28_aarch64.whl (969.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

zynk-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (878.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

zynk-0.1.1-cp313-cp313-win_amd64.whl (764.3 kB view details)

Uploaded CPython 3.13Windows x86-64

zynk-0.1.1-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.1-cp313-cp313-manylinux_2_28_aarch64.whl (969.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

zynk-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (878.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zynk-0.1.1-cp312-cp312-win_amd64.whl (764.3 kB view details)

Uploaded CPython 3.12Windows x86-64

zynk-0.1.1-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.1-cp312-cp312-manylinux_2_28_aarch64.whl (969.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

zynk-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (878.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zynk-0.1.1-cp311-cp311-win_amd64.whl (764.3 kB view details)

Uploaded CPython 3.11Windows x86-64

zynk-0.1.1-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.1-cp311-cp311-manylinux_2_28_aarch64.whl (969.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

zynk-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (878.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zynk-0.1.1-cp310-cp310-win_amd64.whl (764.3 kB view details)

Uploaded CPython 3.10Windows x86-64

zynk-0.1.1-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.1-cp310-cp310-manylinux_2_28_aarch64.whl (969.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

zynk-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (878.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: zynk-0.1.1.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.1.tar.gz
Algorithm Hash digest
SHA256 df3ea5a340c3144e6a86b91bdce44d6df5f19f28502b729376ce0b5feafd1249
MD5 1dd3bf0b37285f648378f4cbfb64ba44
BLAKE2b-256 3cd42b284a7de09f3b37fc0c368598cd93f18302a689f139b153c0d7429543b3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 793.0 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 4d8bbbdede8b5b7e4e44217ba3e92a882baaf49fc49729fd3f78a289aa41aa93
MD5 131a444a365793d42f48f1e4daf4c90d
BLAKE2b-256 32faac62258db56fbf77a601a5cdec9241490ec9841f54d673b0afebc073ccb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ef78fc5bca5d4162cfe7ad029636c95767e2c2cc32861e5f562c106946d64d2
MD5 067ff8f66e3f422b95bbf1ecf3b80df8
BLAKE2b-256 df21a3a0e660446d365632d39c2640b0d4ba80ff07ca565fa036484d249ce5de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9558c2cfe96ef6a0a1ae63d8dc4a5d899facb16828f7c2f4c3ea64d448935fac
MD5 d642797f878566c159f29268e2a69fb8
BLAKE2b-256 df8ad0b22253164cb1ffbb8a7a9c9aa7403106616b79dc424c91fec24bd671dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a140cd92db5093be2ae9d2e26196728bcf93d0d1d80abd77f28b4a0ced7ff30f
MD5 e9214b7139b69fb449ee4a8341257da7
BLAKE2b-256 49c89069525e281d4c1b2e72582beeb61da9d44ecfcd07ece39ab763e9d5dcf7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 793.0 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 765126e56bde35dd4e636102aee4dfe2a7ba75c618d90cee5c5d82e244598eba
MD5 10d7f3b1e092b9d66361c48d203c085f
BLAKE2b-256 00ee9171d6d238864131023f0970c7d8be1a0d7ddbb4556bc82dc3bf0b13f837

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2fdb9d5a28b6c182e9b0bca6277efb1415b20159972b6e8f6c97ea1af3cfb483
MD5 6c422dacaabcfcd7aeefcd837f4a6975
BLAKE2b-256 3a731db7e406d72b2be41a3f6a60d857643958e53f8cef859ee618bb24edb1a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67d742b37935dfb2676709822751b9f07b6ca62ad0d544c61f7268ee560fd634
MD5 9c538dda492fc676db514f72149acd89
BLAKE2b-256 d5006515582ff98b13e72f3c86e7e6c3563a3ce2f4927c70a4a125250efb51ec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 878.2 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.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05f6a445938da1181f96d984e544b4310a7deb10fc2f1bba9cdcc3927fa2e8e5
MD5 11cace6d103f97d9f959a5726b59ba03
BLAKE2b-256 0039ccc3cc495a23140275b3cd6d4e2d197bed707ce41273da7a6410e1b33bc7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 764.3 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5f16dfa2cd94aa3a04d348ba63fe467576f868c849974324672d48826db15283
MD5 dece70f72fd1640b619e7e552dd6e2d2
BLAKE2b-256 80e20c690714550648c587812b1c4a91471d1a84dcb187c8035fd8dc1e624155

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 376c1e0ec1178b4f2f12a14da66ceb547a596a26c10213cd0b1cdb1c69cd3f5b
MD5 1ec8f35aa30ebb463ad69b84b145a0c9
BLAKE2b-256 e6c6d4967287f527f3ddaac2993ddfe28d142a6d32c3b1ed878a7f6d3504d22d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 508acea0d169c6b2f9b9d9dd3a275ffa8d7481b6ce1c87adccedbf241c2d139b
MD5 a0fedb78472a844ae260ee66c6a9d3a4
BLAKE2b-256 e64bbd6aec158becedf5a059c0bfda87d4d9ab0c75ec81f620c6212ed106ebe3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 878.2 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.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7e3700bf844769f92ce0433ae0be21b64500ef133e515678efcaa793d094771
MD5 a44abebad1fb97c846f5d994ca88840b
BLAKE2b-256 cd0504711f0da6312b9a1f587a575ba4cdeb9755ef7b9a5e10b4ba7d61ce3497

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 764.3 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c38676a7d585e214b18cbecaecd9e51e6b54bc1c2945ee4670ef658e544be4b5
MD5 bd3c322af75acbb3b6d8ed35dd041df6
BLAKE2b-256 0db296b54645b004bf495da49037808e82639fb37e41b82fc44d98d662397f8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b193988edad7ea98feb41c50cd8e64fe12cff7768a8225caf21ece7fe2f4485f
MD5 6d996839d9c48a9d93108c98f85e28f8
BLAKE2b-256 862b0dd1b600b8c7e6cb4cbd42f7d9de3612b6f3bb74bb7d32f90687d4347919

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fbfda9eba4c3bcb5b19c2e3b33b807572b4622e7c28f9100fcdcc68f5da5b07b
MD5 72af38dc4cddc25199809777c37c4ad0
BLAKE2b-256 ce3d19d01163565c046b398cc78c184142a39bd75d1c0e0b266f9523fe1342bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 878.2 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.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b087eb2eed6636c48b6dcf1956594a87b1f53a6a43fe5e4c064ec27d515420f9
MD5 6cd7f350d145a9ecd9d528094d02a6a7
BLAKE2b-256 0454d0e10dd851198a426285c9dfcb27615ac01e388d49876ad64475c7ac2763

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 764.3 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0da56bcc05e2a2a838f53026e1ddcfaa6c50557481f6d729a25b610ae5795d84
MD5 34442d9e8c2400ee567ec4e53ca430bc
BLAKE2b-256 5661293d1edfdc142270e03063f270511ce86fc42beef2461f588615eb896cba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9dfdaf1c8882d262891e5d4a88e4994b230f9168fd06af6e681681c15d456604
MD5 9f378c06781c3549bd93be4cc2cd5847
BLAKE2b-256 eabbb65a1680dcd4a8201c5e18bb727bb22f70f833f52510946b775fa1c78afe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 405e7185744f39a239939c8cc63c1c4e57f6fb7f8480da315af6eef634540637
MD5 1037e036fde18c8831615d37272fe554
BLAKE2b-256 466bd19415f4980044e203ca88a5b9670c23720649bbbe4f5bea824cc1dd0f79

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 878.2 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.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96e48ad21c00840839d3ef82a46b09268e487571c26775c86e1d30d88d271073
MD5 0daed82b1a4f3b5d061b8e8800769380
BLAKE2b-256 2f266aef381c67c8fa4fa6c4c4ab2b2920a6fdaecc6965b1176a3e695afd246b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 764.3 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0a458cdf7b9577026357fdb07140b2f0988ba212b4b1bbdf8bf739c8880d8b55
MD5 e09d8356e24d2141aba237a42c0dd61f
BLAKE2b-256 39212a593c1df3ddf3e9047b20204e5892dcbf2a886e9ee417f72b0958d12c91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2a7884267784d42bff3922d71e32930e594ca4f684271316febfb1cc95b70759
MD5 aec59dd6b9c8e1d045767623896bae7f
BLAKE2b-256 e38b3c9c087cf873be948a0ac295d4ac994e73f6942b3b1aa1b0c2402a5e711d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for zynk-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63ded160010491c05246e8c866e4886572415d8f3760ac77802b846ff1c1425a
MD5 0d3b1747207642efbb354ff814fa0769
BLAKE2b-256 bf031b772d2c566aad4028bf9a9f399a36cebf9437af67f5c9d539b40028c632

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: zynk-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 878.2 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.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe72f3e98eb07abdba3ec744b23edbfa3cf5dbc1df390ac5233d7059cde9f3c3
MD5 fe2d72462a09c5fa6c2ad25bcd9114a9
BLAKE2b-256 2d414a75e94074af4425a0609370a381e8b0730e77e37cbb641e461b1f57e17e

See more details on using hashes here.

Provenance

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