Skip to main content

Static application discovery for Python and modern JavaScript/TypeScript repositories.

Project description

kenbun

kenbun (見聞 — "seeing and hearing") is a Rust-backed Python library that statically discovers applications in a repository. It reports application boundaries, languages, frameworks, integrations, dependency manifests, build scripts, entrypoints, and diagnostics without installing dependencies or executing repository code.

Kenbun reports facts rather than deployment policy. A CLI or platform can use the result to present application choices and derive commands, but Kenbun does not select an application, decide whether it is deployable, or construct a runtime command.

Usage

from pathlib import Path

import kenbun

result = kenbun.scan(
    Path("."),
    application_dir=None,  # optional repository-relative hint
    entrypoint=None,       # optional FastAPI "module:attribute" hint
)

for application in result.applications:
    print(application.application_dir)
    print(
        [
            (technology.name, technology.kind, technology.role)
            for technology in application.technologies
        ]
    )

print(result.to_json())

scan() currently accepts a real directory only. It walks the repository, honors built-in and caller-provided ignore rules, discovers supported workspaces, and returns ScanResult with schema_version == 1. Results are deterministically ordered and available as typed PyO3 objects or canonical JSON.

Supported detection

Python applications:

  • FastAPI, including static entrypoint resolution and dependency diagnostics.
  • Django and Flask identity detection. Kenbun does not infer their entrypoints yet.

Node applications:

  • Next.js, Astro, Nuxt, SvelteKit, TanStack Start, React Router Framework Mode, SolidStart, and legacy Remix.
  • Standalone Vite applications, using a deliberately strict rule: the same directory must directly depend on Vite, define an explicit build script that directly invokes vite build, and contain index.html.
  • React, Vue, Svelte, and Solid as supporting UI-framework facts.

Vite can also be supporting build tooling for another application. In particular, a FastAPI application using Vite for frontend assets remains one FastAPI application rather than becoming a second Vite application.

Cross Inertia is reported as the normalized cross-inertia integration when its same-directory Python and Node evidence agree. Generic Inertia integrations are deferred.

Kenbun understands uv, npm, pnpm, Yarn, and Bun workspaces, including roots that declare both Python and Node workspace metadata. Technology and build-tool evidence attaches only within one application directory; a nested package is kept separate and must independently qualify as an application.

Output model

  • ScanResult contains the scan paths, optional Workspace, ordered applications, and aggregate diagnostics.
  • Application contains technologies, optional entrypoint, one or more ecosystem-specific DependencySet values, explicit build_scripts, Python metadata, evidence, and local diagnostics.
  • Technology has a normalized name, kind (language, framework, ui-framework, integration, or build-tool), role (primary or supporting), confidence, and evidence.
  • BuildScript records the explicit build script as data: the raw command, optional safely parsed argv, optional inferred package manager, and source.

See the v1 specification for the normative model and detection rules.

External fixture corpus

The normal test suite is self-contained and does not require network access. For manual acceptance testing, the external runner downloads immutable GitHub archives listed in tests/external_fixtures.json, scans them without installing or executing their code, and compares a stable projection:

uv run python scripts/check_external_fixtures.py
uv run python scripts/check_external_fixtures.py --fixture fastapi-basic
uv run python scripts/check_external_fixtures.py --offline

Every fixture is pinned to a full commit SHA; the runner never follows a default branch. Archives are cached under target/github-fixtures.

Development

Build the extension and run the tests with:

uv run maturin develop --uv
uv run pytest

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

kenbun-0.3.0.tar.gz (105.9 kB view details)

Uploaded Source

Built Distributions

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

kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

kenbun-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

kenbun-0.3.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

kenbun-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

kenbun-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

kenbun-0.3.0-cp314-cp314t-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14tWindows ARM64

kenbun-0.3.0-cp314-cp314t-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

kenbun-0.3.0-cp314-cp314t-win32.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86

kenbun-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

kenbun-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

kenbun-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

kenbun-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

kenbun-0.3.0-cp314-cp314t-manylinux_2_31_riscv64.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

kenbun-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

kenbun-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

kenbun-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

kenbun-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

kenbun-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

kenbun-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

kenbun-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

kenbun-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

kenbun-0.3.0-cp314-cp314-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows ARM64

kenbun-0.3.0-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

kenbun-0.3.0-cp314-cp314-win32.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86

kenbun-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

kenbun-0.3.0-cp314-cp314-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

kenbun-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

kenbun-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

kenbun-0.3.0-cp314-cp314-manylinux_2_31_riscv64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

kenbun-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

kenbun-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

kenbun-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

kenbun-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

kenbun-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

kenbun-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

kenbun-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

kenbun-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

kenbun-0.3.0-cp313-cp313-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows ARM64

kenbun-0.3.0-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

kenbun-0.3.0-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

kenbun-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

kenbun-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

kenbun-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

kenbun-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

kenbun-0.3.0-cp313-cp313-manylinux_2_31_riscv64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

kenbun-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

kenbun-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

kenbun-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

kenbun-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

kenbun-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

kenbun-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

kenbun-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

kenbun-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

kenbun-0.3.0-cp312-cp312-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows ARM64

kenbun-0.3.0-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

kenbun-0.3.0-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

kenbun-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

kenbun-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

kenbun-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

kenbun-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

kenbun-0.3.0-cp312-cp312-manylinux_2_31_riscv64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

kenbun-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

kenbun-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

kenbun-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

kenbun-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

kenbun-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

kenbun-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

kenbun-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

kenbun-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

kenbun-0.3.0-cp311-cp311-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows ARM64

kenbun-0.3.0-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

kenbun-0.3.0-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

kenbun-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

kenbun-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

kenbun-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

kenbun-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

kenbun-0.3.0-cp311-cp311-manylinux_2_31_riscv64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

kenbun-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

kenbun-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

kenbun-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

kenbun-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

kenbun-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

kenbun-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

kenbun-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

kenbun-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

kenbun-0.3.0-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

kenbun-0.3.0-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

kenbun-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

kenbun-0.3.0-cp310-cp310-musllinux_1_2_i686.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

kenbun-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

kenbun-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

kenbun-0.3.0-cp310-cp310-manylinux_2_31_riscv64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

kenbun-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

kenbun-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

kenbun-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

kenbun-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

kenbun-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

kenbun-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

kenbun-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

kenbun-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file kenbun-0.3.0.tar.gz.

File metadata

  • Download URL: kenbun-0.3.0.tar.gz
  • Upload date:
  • Size: 105.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0.tar.gz
Algorithm Hash digest
SHA256 c5d2c44ed7a51bbbc3eee4c05ec50b245c2e031829a239ed415c54c1fc13b61f
MD5 60d79e96e93e7aa7ee5ad3bc2d809791
BLAKE2b-256 035a5326e944389a3150b13eaa72caff9142f4bf6df75052b0cf31dd1caff4e7

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dfacbb06948d7e6b2557aa0f6b269950f70f7589d8b27bcad0651cf71dad7ea
MD5 efa11aba0f3b219c7198155de63adbff
BLAKE2b-256 4b6a1135afa9eb8304dd8d962896c15512df3198c35e991763bc1f1987547e33

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9672f55166470887d73bfd6e73b385d85336ed555724def9a19cd320abde007c
MD5 af25e5e849219df42fe0b58559c2be04
BLAKE2b-256 4728597deca9a44814e11c216750e9576e6219e113c90e5e8ac1e356f595fed6

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40cac783ed5c6a61c15c1990cf73bab7dd390319fd2dd857d3cd42e6d6c3045e
MD5 3a8ca90fc228dec349ed160775d2595f
BLAKE2b-256 a2550a6ebed1e34fcf527aef48c8c892f4d2a127cc3ad94e3a5b2bcfe98ed4fd

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cf527d2f9b47af01bf56cc533cc609f340dbb150872244d93f623c3efbb0808e
MD5 7f6a6cdaa41c131665252ad181293e8f
BLAKE2b-256 4ec723785fe8d2bbd2653c79e9009e894482e2fa63b512f14a3e008852839d07

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 bc997ab5b334059da2d53267272feb1f60c295cc91dfa31b817a63a511a2c312
MD5 6d728fa90c1efa2db2659cb1eacb85f2
BLAKE2b-256 6deb3689cad71421641f74cff763399806fd9cac856dbb8c9a9077850c1e0276

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1a105c527286567056fdab9d2e70e6fd1bd754e04b918e7a32e5e2566c99633
MD5 88632a3c8db21e3f17282445b1d92648
BLAKE2b-256 7bb23636f60cf77a9a5f5946f8cbd43f067000c5ccde81c6beaa342e86d2bf95

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc81439b502e2a70748dbf855a785db69ed873e66bf02a29f2f7edcfa87f1827
MD5 03a201b7ce1ee5a79cf9e4f7835bc719
BLAKE2b-256 ebde6f794b3289610cbc59431345489954db1636ea67421fa8b593cd1e33b39c

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ebf7f563dce2ce3202332ccfc4d51a2c6555000e691536ee9107faa1a9ce410
MD5 54a8e2962eae159261fb446e362e62ca
BLAKE2b-256 adb173e2cd838f99e966b181ae7f9b684f75969a0ca9d107bb6813d6ee2c85de

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9bc339fc4d41ad882eac78a9b9cc2eb035fb62d227df9fb796146ad6a6067cb8
MD5 f55d512f6c02e2d224156b878c83a413
BLAKE2b-256 03f1a52801fa40b521c8ada11f08fa25707b2a614e126e01d4f6d26103ef6786

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 984d3cf68e1e047a6cd28ca9270b6db706c1586bbeda51db78b46eb577691325
MD5 e926cbde65237854951bf35778530847
BLAKE2b-256 30f97ef1a06b79df210b376427d4917c561426a7d27c4c526de9f1aab36b49a4

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 696eb94f86cba195e31c5b546bc56e6ab02a703b6dfa7324f1ac327155e70ca8
MD5 fd3a35831074cef889532d0e823b28a9
BLAKE2b-256 b2ca7b66294136692897a693e9734f458880876b4a51766e0daa8efcb208cd98

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b9c6501d85caf0a632edfbbab9fad9feff00f95053144048b0a3fa08e07a124
MD5 eafc9ffe7d8fc673f1ee514005c0e306
BLAKE2b-256 6fc767f39b88f6f8e8c958b248f7a30625c770b434a7f8cc9051c93745ce7c7a

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a7feed7596da4b38b2a6c4292a492ade7311b9bcaecc43fb83bd0bb033a95ba
MD5 29fe621730076116763585aef739f77e
BLAKE2b-256 4bf7446b828bfa43cb6acb48927fbb857ed527eccde97c2aaa1fa9ba7547e1f1

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78716f69adce581d88ceb4580b6787d82611dff890ef027bfb209e5f8f9623a5
MD5 9c88091b594c608c168f34e3553adfba
BLAKE2b-256 ea5bf05c859fb8fbfef78dec03adbc435437d5b80c9520c40a4859a83d5b6b30

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3e065bb5bcc5f0eed96c7ee74a1e64036fae285386adf59516ae3fbd0ec1d68c
MD5 cf9728e5449388cfdcd26e7d6a277eed
BLAKE2b-256 30722f8faa95c300cccd03293401f83e37343e26d7d821004b9064677baae4cb

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 53313c8b1751083dcb1bdd5cccfca772eb512e31b05db0c363979cb11fc9c395
MD5 667801b5c572ed1c92e13ae2c7e45d35
BLAKE2b-256 dbe7df362172b6067262a76fc1e273c9c30829e2ca6cccf927f0d377357b006d

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5511c3115338bd7e26c50e46b89f77db90e95b203bc0f1e51d53133bad7624f4
MD5 e32ad7a175c62abc167ed5da6fb7124c
BLAKE2b-256 c76936e7ed0038f7b4412978b8333a235e67dff1c22a1e92f05ac0189d27809d

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 e101dc068817e3850d47fb283300f21bd3fd9ef3102ada2ef0a1fd16c2e223ce
MD5 ff8573413744ea357c868bf246bfa64f
BLAKE2b-256 fee5138fac096f5914ba17862cdcb0b482dd5746783105a1ee2cb103853e37c8

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 293aa9d6e936bf261393903aacb4860b10eb89ab0a97b6f039dd2bc53d144181
MD5 5ff09797dfc40e80c01d33858cab0ad9
BLAKE2b-256 80b4e4e2bea3289d9c7aaa040ab16e2c44c59d34efc4b3636bfe689b99a0b2fd

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ccd93a403d34dafae84abdcd07cdef7b8964a8eaeb077fdb2daeb2fed063f16
MD5 b8913cc7a59ae0e5a3fa7eabd15f4dd0
BLAKE2b-256 0806f851a57fb1aca102a624a0f04a42cac7490466fbc691b3212c6ea8eaceac

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5017cb6d2eae499c21906e1f1343b97605c11db7d60436a1f9385872edf42df3
MD5 73b21df0c7d104bfc180160214cf123f
BLAKE2b-256 42a0a1f1b17bbd58a24da6fdf653a4c39493a28eef622159f4b8a2af1c1e0d3e

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3c0f4cc8ea439511df4ce8785aa0d93be2791c7b368a370250e8e72182183ee
MD5 917b2118b27e2e6b9950cfbe3afab3dd
BLAKE2b-256 94f5acec36b91ba66473155b276b24181d6eb412b30a9d68010e12203f4cb9df

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1505f5c7ab6c97d6a3ee5610d8b63237940da82d392efcc1d204a4cc6287bba0
MD5 1289e7877eb0a42d9cd50f21461994a5
BLAKE2b-256 6f283de4b7ef303dd3ba2a9e57b447967c686dadf1f10c6c75eaa7c0e9a63aa0

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9442db0775d6fa71775e7ecd09939c56cbc9036578a64b20e044d08ace7042bf
MD5 1117f52812b2eac3b1e8b8215f9b9a29
BLAKE2b-256 b845c81c73d45f294cedfffefca1e2a64fcddd2f9ae42ce3c920c4e2147abc24

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20d80417ab728baea9a49509ac28cab276eb92378ddb978c3b044757f0c88c9f
MD5 09791c204a44b9d0e033c50970645d88
BLAKE2b-256 95a9b5b47f0941fa38949a4e0a502caed252956fda3ab34b07e26ae405d5e01c

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e049c757ef9a0e0db657c3aa26f25b831796f8c17cd99c365a5527bfb222682e
MD5 e5dbc8d2a9f91e7849db5f6933f2124b
BLAKE2b-256 b35aee621c64149950b94cce2be8e96bfdef78a3d2cd3f95abe35dd34e0b58b6

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 712c62108be724591b43660b86f9f2daec122cde7b8596f67d908cbd5ec586ca
MD5 25ae02bc67086cb48591d832f209f804
BLAKE2b-256 551470ec0c84c2f1d78d39dbe25fd4ee9a0ed48914327ae1aa7cf86e2f2a475d

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 965529eeabc3806d6fc9a68ef77ed1f1d2b80ea7b92e166a9a2eed70a59fe6f1
MD5 9a12e4bb83ab46b6a71eef611d159beb
BLAKE2b-256 aa2f59fd7594345a452b113d21b5e7645716a70089c8975769f7f5e8d9956de3

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2e3404f019d1b90056d879c8091ba7199bcb78f84288ce810ed1e9b3708687aa
MD5 93bb3bc4abb510fe10dc2ecc5f103e6f
BLAKE2b-256 e5ae88eea4aff28841d238a70b3fefe0a21f62ac711ecb6edbc89018fd7ab0c4

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a8f4b3fc45cf90df33d0d103260786e6d6f5c4b4ade2f372ccb23f24ebb4a02
MD5 247f9d381d445022e62bf37ed1a13805
BLAKE2b-256 943b6f1460f91eb8261ad1f9a37dea3ac99e5304323166f81bbe4ce4a6370f07

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 42bf7d70f9cf3fe2a1e49ebae6f5b79c7910f42d32f0c064a28cb3c2e1ab5dd1
MD5 a3711f923f02d0c3912ece130bc67c02
BLAKE2b-256 9ecc5805aa960c396bd58d6da37265a90a6587b0f21adb55a401993f4506c317

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ab1dba24c121cfd62ac863ebc94f717d6283ab68de6a36c95d1c1ece99fa80d5
MD5 732cee7b0b2fa442e78d3cc6c242fba1
BLAKE2b-256 90e430b445be6d247f938faf471e85d696f8c054d65b3710e80262684e68c263

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccaeac2d1ec17fdd8b51b960ba7cdc233a0341d507a594690682b8d092f9838e
MD5 11441d3dc6c21b01d5e5b186fef1ab53
BLAKE2b-256 7508133a6c7fe23dab601a968965911ad55a46a15207e85c684991370bcdf485

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 673da5d55e23ce7ac625e35006dcbff0c788383e5b176bfa435b7f941d7fd5a1
MD5 b57cdb50c9e6b70c295986ff15559375
BLAKE2b-256 a808933248d07b7271a759dd54e452b35ac9cb21d2b60c00670d82afeab090e5

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4536f07a750b9f75e7d475b78025046ae5edfb6689a4f44951a2542024073245
MD5 e308761f5876f22d1374f6dcaa4d66ef
BLAKE2b-256 7975dc674a892bb41b2de2e493ea2b92cb5fb3525ee7eaa5472f5cf2f4b3d781

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8556171e64cf3f9d1de597bc4df80e3d0999b5494e9cb5a51a1298d4da528077
MD5 008947fd5241ae044919bcb91d604ce2
BLAKE2b-256 0244394a52faa9199f3aca08c149f412583aa513a901898dec80f100e18fc70d

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c31b958be6e49461990fe61298a7f74496c9efbed6ea045f49a67c5cada77d97
MD5 86aed988ac9cf0fffd34b17d3184b4e5
BLAKE2b-256 2672c49cd0c478f2ba3846e1ec9ed1c60e51ebb4e852a0240e476321fea812a8

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7edc7643d345909c5c492d4a947218883b0bdb4b96442cbbf7d259794e45cd17
MD5 0a2dfcde5cfe88921395d1f862cdf6d9
BLAKE2b-256 3703c25539a116ea5b939bab5fc3cb0ad31dba95a77024cae7bc31e31918ae21

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9641395e2daea34026091b4da8ab412d23829327ff76199cc055a1169a51fd0c
MD5 f2cee8c980426d9b690fbf689df05db9
BLAKE2b-256 23eeedf11081f0aa27e834fb9abd4fd0024d05cfff4437ece6a7835221ad60f6

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b850df6596fd01706b4cdd0221bbc62c8ef60d15948196ac1b9c06ca8356c2d4
MD5 a4fea1b898939622823e3dc8d3d59252
BLAKE2b-256 9c480dfb89c3fcc443dbb4d3a86e6e1b9dc5b5d573424e652255ced637df5aa5

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65fc72ee2d47cec175adad8110a0b3ddd08fe010ea5959248880a697ddc4aae5
MD5 fea38960b26d30c6f773ad7e65b6d3f4
BLAKE2b-256 503446830134a094bdfffd52a336df3ba46d56dcbef372f858bee43bd0fd7bab

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82ebe6bcdd883e60db180c15723af6f815bfdcefe8ad7954c886196c9a987100
MD5 7ddc2fc4c6db3ed9ab4ed9d6cf55bc54
BLAKE2b-256 2b5d68253bfdc8d577090eae1e0d860054d3d7b8b4cd3a7be2bf27a51ecefa88

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3ff5d5434821d51f9fa33a0df39f0b7e1fec62dd2a292edef4022f08317ddf11
MD5 ca75e49f9ac65aceff252737f1af944d
BLAKE2b-256 f6f023f064001b6dd8096ebfc736db896c81773293628b007e82805da339a9cb

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c882d2fc1431621276ebf845192f9dbcb71dfe9ec2618ee147941d00f15bd7a0
MD5 5c07f9543bbe7a446a907655676af0a0
BLAKE2b-256 5f50d269a29f8fd2d135b085a2f799f70043b16266f8d2596d33701983b98aae

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a11d72e1986c051939a3a18d2d3fb04ecb13d062e1bda77df15bc9bb56be797e
MD5 8ccddff621dbdfd12c0d9dea108eca14
BLAKE2b-256 17eb6da5a9ed7e90b640602eed20f8feb7b715d7423f0901ea4868be4df93044

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd6a7874ead4286cc9e4b0c1a3640e92d5c1da60ac0896e3893b4dc3fbbdca2c
MD5 d06cf820615c07ba7ef78ea3dbac364c
BLAKE2b-256 6f09539f6397adbf3adeabe6eec9164c3228c55264d8a50748a788d076690241

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f143d866e97e3196c9a74ca06ede7361f255cef25a2bdcf26ad1950360ef4437
MD5 acb40677f814e13b1d9001ccce3394ed
BLAKE2b-256 bfe211143263ac39d0013cb455e7549322a0df0611032e6e65052f36cc2f24e5

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0837adacc7ad7f16e5371f61fdd5ed8b922da0d1b1bd771f0e00dc9c74c83c8a
MD5 0028c8a6ab32e932ec072eb5481f66dd
BLAKE2b-256 4f1f7b3f28097cf608763335f2209a04a5c4ac97f51c102dfab702e840c5048e

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8e825886320ccba695314327c7d4e69f990a21775ea4369c5f7f0b3525d81f4
MD5 1399896f34886565ee405591ac2b1911
BLAKE2b-256 a0aeadd8656b1d4d1a33afc0105558b2c9e18d7294b870d239d66e6351d67dd6

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 e301583f8a4ffa5c07e5af806c16db5f2928b3c284eb76efca8e58bed792ed14
MD5 80cd23da77fc9305dd83985051f957f2
BLAKE2b-256 424891410453ff700a9624f757c7ea720711f5866b15a47419a7d8e7fe2aa6cf

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 771b76d162b2d00ad50c1758ee6f2870ffba6f8067103ea2fbdf170dcdf00d00
MD5 0a923f77e81ac1e894f4ac0b12acdcdd
BLAKE2b-256 9e5ddeb43506417c72be7d1364de569e06d2f6fb4de3b06bcfc8a664c98f98f1

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9a13a345f524432d0e258af0733fe9de270cd2e7fcc2288048fef11436d0142
MD5 dbb64d218a204839e77b5c14c6c1246a
BLAKE2b-256 a25a7e6cd53e7c5fdbc743d7dc5e058e4723ddd8e678866665e6f4687cf6bc82

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ada453bd0411bed522177b9a16a7d141ab8d5e79ac7f8d4fd5033de8ae9e2c0
MD5 b56f169be17e5b2f89b00eccdaced67c
BLAKE2b-256 53c189e0aed12fa9b70483ce595f88c0e74c953f0cca7558feb2d176d69ea3eb

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16b5f7a34cfda808e387a90382ce8e18a1f9562655c5171bd19c29b3ed52921e
MD5 cfc4756228447017ba99b0b9d0c52f8b
BLAKE2b-256 bb1780a51f37fe066215cfbbe5a0eb828b4a0ccf3e1a2e0ca15ca5ccef928485

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 114f607e2e13cc8129bb169191ff6b195bd2f1d9b205fd3649468aea8592f21c
MD5 e0a6563b9264fd3bee6ef76e4514e993
BLAKE2b-256 d5fa9217ffac3848ec18fb38dfc45c0f3cc2f9a4eb43be7089b773563c02cb2a

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de8192e9a718a4e0cb0bacb9315e190d931b88bc27908d877294f92bbce37284
MD5 c7e0462d85d27c5bd40bc9796e743f8c
BLAKE2b-256 b65a655b668a46da39b3c3c04bfef8d27a433efcaccd86a007e520d3bbbe8f97

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b60aad617741fb167f971e820e2617eac6f297026f0d4135d59c56e57b65dd83
MD5 8af772f919f605bbb44ce38594b78dc2
BLAKE2b-256 972952ba42a2178bfecace41cd4441c79e70ee32e234888c68c73830c6f2ebdd

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd6a50877634743e1e35444e0851b31455483c2148a4c3d749881ac429eb0d83
MD5 f4f650c65e31408fa290be6d9fc4accd
BLAKE2b-256 63e6e4fa2ce7196bc9befd1abc880531efd637ff25fba0712e06481c2784de11

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b037e4fb1917a0622ccf1dfd62810228f0246ae36a1d00d32e00a49b46ba133d
MD5 4312fd166697229feb0d828419b5069f
BLAKE2b-256 a0984ce9a2eef0beecf27d1da614dfd627aadc88e4470b31062667786e180555

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 df91cd437cacf1c83bd411056e457d00aaae2619766cb9059ab529eb40a13158
MD5 7e0a6fbe4d9be218d8c66cffb93a598d
BLAKE2b-256 c75c0ad66fd41500574e8068d7f9cab65ac26b87f1c203300658dbf64c6ef671

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 fa27699ad05bbfc75827e86201c55e36c690e9a1c18e1f7c4f99630743b35f9c
MD5 e782f4558665eb5d73e1948bccbf5890
BLAKE2b-256 fdd00230c392d184f1a4cc55c25a74b6fa31967311604a936c7d32b4051f782a

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f67f3a5552d93e695cfce97b2a2b3e69b77d3fbd99a38fa7b91746dc285c8aac
MD5 04a427b9e226b3ef2f2d56561eb451f3
BLAKE2b-256 36071f5c74daf36916a698a9e2ed755c1150a9fdba9e92a377260f0ffc16dbf2

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb210cf4e69fa6dad8ffa484010dbef6ebe1763edb954fe59200ad2d430c4996
MD5 f6e3fd1a69f85970534bf91dfce6ecce
BLAKE2b-256 4a707e4cc193c57642277343a0dba57c0e9766cc0328d00da54e3f7ed0249d4b

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 15fb887b3360b12480af05fd871a365b0ca8a7d3f06c1d5678d993684704d14b
MD5 a36cc2ac2d27e3326d46c5d01162379a
BLAKE2b-256 8ea3755393208828b5222ef78ebe94a1bc8806c4b61b18dc330c59f183f99334

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14d0c569852d59b6bc88c610d8d6004b3ef668c4444e1ddd0e20f62da389b41c
MD5 355e8fe6a70db3ecbee54ce5cefc53d5
BLAKE2b-256 d6482290da6100d18370e33418a9ac48a90ede5eb2403aa9a28d1e00e7bd5e49

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ec17759b7d20380bd00f06a787038554752eee6e8ec0e471c978cba8af1e904e
MD5 b89c414ecd5825f0996209a72bceeaf9
BLAKE2b-256 bc3a0f682a1a120fa8092d15056038f58f03cc6412aafaaf5efd830ca11dc7ce

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fa3c1ac2f83cfb1a945ce171644a397b8d419b2db71dd97fd8b970db78aa3bf
MD5 3a6fe8aa4bcb6ce17bb1b788cdc5af31
BLAKE2b-256 4b0e10815dc73181228ccf6eb563e019fbd2ea4272dab6ff9b8dcd7608dc41ad

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c8c8e4a88bb44e4c2c44b9df3c2a9852a8698f4bd79a1730e3874d5de8824c04
MD5 81b60d5bb4eb18a6b7c163520d6618eb
BLAKE2b-256 9ad69a2229fbaa0ef499a5bd42178c7af1323f50a0710236b8afda687109e283

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff2ef26eec31f598c99140960bc3585b15400339716c9b72c9d79fe95527f974
MD5 cd128dfa60f4d5aa7c89eee381618d99
BLAKE2b-256 2f5495dc1cb179bdeed2582296656b01fc91936890c74e87cb43286837ff579b

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f091cb75315ccb59e4ce77c9674d4adb7b34d4081b31dcac8c07979e6644a6cc
MD5 c91feb5fdd99b58e4382c58679966d9b
BLAKE2b-256 3c7bf5a526902c6561aca8052d8686441953837402066ac6a9f6c0094ec33c69

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 43c0e45de7e622040814805cca1ea939e265e5893ba9cc5bf7a81805a6d752b4
MD5 426abeddc0ee85099caeb10394c46d4e
BLAKE2b-256 06f929c5a6b40044bd4f332420c0999b156cf58e0b62a72c264368c0f91ddfa3

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c831d50a007222b0377c252d8a0b7c38ad4eb91130c2bcef7c849fbff942571d
MD5 1ff3d49d058b48defc23df9d5bf8e546
BLAKE2b-256 140cf2095ab304e47ef82a606880055b1ce8bdc338ce2bec72636b72ae158fde

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 795ccbfc656eec11def44d1abf332042f122deb14f0d6c7fba1f8bb83b1be4fb
MD5 0bbfdd9a6057654e6ab0ce153fe8bd77
BLAKE2b-256 4bd1c53c22615dc6f6e353ddd6f20cef448ddab5c393de90663fc18a55ced06e

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f16c2db553f75e9c488d0cb1a08d6502c5ae4612f75a7222e54d767cc3ab4c27
MD5 58e1b094658316de58e0328dd1a707e9
BLAKE2b-256 107335439dd4d7f0eed9366abafe36318c3baf2a9f5e9ce43988ffd398f0013a

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3d52990f10644e8e7a50f52e20aceac04d5d154e31a9eda56567d88c0262f2c1
MD5 c9fb82fd8fefc87191a7333edc1aa8e7
BLAKE2b-256 6953a0967d1f4be5104f2dea0a3bf2f2c76af4506bbe7d60d3e3f57ba7619442

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f3d2196a761fda955559e822e87e36afeaab1b7626a44f2d29eb65f756bce8e0
MD5 f57a9d78e85d044ffa09898d2aa2da54
BLAKE2b-256 817908c6987f6504ca112a9f6455e2c93f2c6aa536a33a64ef7b836f95a5bdbd

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f6c6a0231d0226bf5702ecb05cb3a92beecb76ffadf4ba1962c883874c5ecd75
MD5 31801b9282fce8a3c137b3bd4c7186db
BLAKE2b-256 3e19aa201119de62cbe2857a63effb722eaa66505a02ee750f5b8b8bb5dfe4ed

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7a415c439704742a77e1e77fd58ddc30128a9c5ed7877e588788f4546152f5b
MD5 012dfeb750821e9ca9ad9e0a5cc0f300
BLAKE2b-256 0f69242c9f53e0a083ce3a1784c683f761e0ed486467fddd001032fb875dd2c9

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6bca65bffc7bab7f0bfb1575138783bcfa51695e952cddebc73f6b211fc4bc81
MD5 e422e2f174539b6ee30a9880d7dcdf62
BLAKE2b-256 d5a5c9eeed549b8562116be0e4d5e2bf761d390411b1a271321b67008d2398be

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dc4727863828074c2da7e875c3f3b77caec3fe59fd957e876f3e8971039837fa
MD5 d62291f625564ac37178c7117170f63b
BLAKE2b-256 6626ae954e95cabe04852ab2ba1afbe619d5ebc9dbc0120d33ebe2384ce19e63

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4bb6a8b22bb588b659f34d1739721ba72fbd3c7a4dee0a25157ec4a6ee41a2ec
MD5 1d77fc684624cc7a93564cd1e877ca72
BLAKE2b-256 d6dfcfd660d0d88aea395fbbc7183f6f931ec4fcb9a9393956feda11ed520c2c

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 cef9a3689fc170dc67bd8314f469ea17768c1f39255748e55e79a8e51298c186
MD5 c1f4b6e1ee08343a730de4f94b8d7a4e
BLAKE2b-256 89b4ad01d1a9e0936785a522ac705f4bfe669f5a410fa23d6caf2cdfc51659f8

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 decbd8f6c992650f44163dab09685ff40a0b46cd5172eaa67b37d8090f0dc23a
MD5 1b7f76c405d38dd65c79e7cd5eb4a155
BLAKE2b-256 f72a50c928ef5e39f6374cd380f426292c758ae20d1cad32a087e9dde217e394

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eebb9da3de77873137574d739291e38bc3ab23e02ff7a93496ce9b913852e3e0
MD5 10117744f5fe09803396342414e840a7
BLAKE2b-256 ccb00690147b7536820e3d266013ada8ce064c939e23ddb942f25a520bf9b279

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 793c9a1fbf5e54a316d8bb492911bfa208e8b18c71147d8e7d6ed4231276479b
MD5 a2e12c1c466c1e3135763ea8440f22b8
BLAKE2b-256 6c94977c8bf6174dc11fc037b80e7d3839d33ced8ef0731144726bfec9bd31bc

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 abc8c4b0b45075b80173d1bf2b391b89addbb79557f7057dce56ce528c2bce91
MD5 88a9235d56c5f84b88d25344c71457fa
BLAKE2b-256 20ead50dc13dca14964b26c3dc55da93bdfb24aaca26f5006b356bcdcf3858c6

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18951c1b55af0e4a1f964cea8fd25ae51fd7b570464b5fc259c32f896f62b85c
MD5 0cc8b2466818e272820e3775d5685a7b
BLAKE2b-256 d0b3a6c7fcd17197270a18ca672ed1dc8de2be47a998dc673a943a347e70953a

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4fc7dfea2a50e127ba52a17ab6c044cc3207fa919f8bbf161e72622d9e0b5e6
MD5 951889ea98690b9b89792a0ed6322f5c
BLAKE2b-256 32fc9bc72b93f3e2594ffbbe80faa4c158ef6c47bd4c6212f2a1280fcc0cda1f

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7ed8c3059d05cfd644a9840d25b32b6fa3b735f9cbe3d574e25865ea5f49a88
MD5 c633f740a06225ec203fbc81466774e2
BLAKE2b-256 d67327bb67c96f268860d218234f50e9a12638908f8bfb856f50a9630061d762

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71860ea4c45d1905dcf1649187c20814ef5a5668a2a488a792f98194127cf5fc
MD5 03b15f0f8284a5476431a884f7c98e30
BLAKE2b-256 4142c6e4ede65766600ab124a7cd7e66d599b184670145358fe438196428b094

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 4221c9e55e991a4397d267107f0bd5c8264c386723b69c1eda5095217c197765
MD5 b7af399d69e1ead94abbde32e65e46a9
BLAKE2b-256 d2fa8c923ad5a3a5c5c01d0ea0ba6410860c3728f12bb8325d492850b91d3539

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5b4bb2a5f5f8921f57c2f370113225abfbcc19d2c4de56e9f52c1075478333d2
MD5 2100e8e05e0c4a136001f5a53c86f383
BLAKE2b-256 02575c502f59094299f43fe7997338e80c33fe160ec2cf530d9bd2be52d921fc

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 632518db5c89b255fcd924f73ba5f0aae7763f8b48d9e6054c065d220f23f105
MD5 d05491ff48b3ec2d19a4f167d1468103
BLAKE2b-256 d7b2d4914c52e4bcce2fe285240050968a5a6b916cf0ad5234e739c5441140fb

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54febc18e6ac93aab00e655acfb0c91f88dc7bb41aa51dee34ae26ffab6c5720
MD5 91e5a282aff5604c509f6283180a967e
BLAKE2b-256 3abcb07fee929635fcbed08335c660c6cbe25d931f0f4e0475dc401d509ac0a6

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 caac391fec311a944b7e97b14b76d0cddd224222d6cbc7f342fa828cb6991132
MD5 c7d672f46fb08daf0fcf481723edd95c
BLAKE2b-256 6b84deec20e6a6c9c16a220f4368ed9faba8ce0d2f62f8cb7b3d1de8cb02fd40

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 befb23419077b634f5a4f1068e5ecbd373daf8921b6dd3efd6ffcf40628d6441
MD5 7b61dba07b2d90b0f800ca6a5a578150
BLAKE2b-256 bd86d88b2cdf2ac09e1009a3cf31a3040e39eb397b85b01ace6a7d93e46e4055

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73662b7961f6ea5865690b2af06e98e677af91a2cc87efcb2c3b095c3fff0c5d
MD5 eb3df9d5721672aeda14a95d729bda77
BLAKE2b-256 572776afbf758841d40615251cd8526c0dbd310c2081ab20b153dc004adbad63

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 97f235a71d6c51edb7b975a61c0267b263dd5759cdd234805d09fa2fb42f9ba8
MD5 f6715a1a6f2cc7bad4cebb15f29be862
BLAKE2b-256 f24d6a2b41553b8570c3a2f90d5900eb9fce7c2a44099a4804672f36aebffd1e

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05ca290b2b42012197066cd918c0a223ece48691d4471beca5b6de580ccb40bf
MD5 3f16615ec40711170d236ab6758c80ea
BLAKE2b-256 5d26e9f9cf49fb3d23ad66bb1d9cfbc237327c6cc452f95ce94639d2bd629082

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0829c2c0e0ed297c288792bfa94fb33ba6334b4d315dc14833fe573661f4c91
MD5 2468f3a082c9bb56bb8235c99ed9a801
BLAKE2b-256 0459e7d5317b801a55985bc30d9315c8c2b35d3a4d7d7c871e6cd7cd2a6d6446

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32c2a83640998af632a8dd6f3db1e943fe5f5ddfdf10ce0f19657e42a5b00152
MD5 5b32007c40037df9f2b7c1504cb3e343
BLAKE2b-256 817ed5dd1dbf28af086097c3e5de1a764f78f0ac98680f19ed2ef0928ab5d9d7

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d3147a069615cc8ad8249dc6a7882e6abaf04ab3fb10712c2a7eafbd46178a6
MD5 300d9a11ca834109825649944c9ee007
BLAKE2b-256 60bac0bee8d913e4d681cce5e2f75f3970e04f09ae3914e97096658f630e35cb

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b83b37ffff4314802f90b71db1264711a75548a47499e9c9e49876cdb6cb627
MD5 c665e34c8a93b5a29fcc20eef5ec8ff3
BLAKE2b-256 d86b8b08ebef292124aa80dc23c165aea0e85a4717a369c3e82c8e1c8fd508bf

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8026274f4d8186eec7956467fa435344fe637738f1502bcc08bfa9446eaecf8a
MD5 9f18864f532c829df9be5bb5735a5b97
BLAKE2b-256 1e69b97fdb81db903a084785342194887cf8d6f9668cfa0859b3c7c14117ddc4

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 669f134471a9feca06fd41e01bc3952e1156d029e194d8daf0bd62e6540b91b8
MD5 0fc1956d6636a13da7987567e4a78b4e
BLAKE2b-256 371c4e00179b6c71f578e8c082820132860d9c5a5fdc3626244a78c63654fe40

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70893dcf3e8cd7445e6994a749d5b4618b628a4d6e24975904fef0f520ca2dc8
MD5 b8df279ccbfdf2cdbf607af359d7cbc5
BLAKE2b-256 905dfa4f24984b3e10376207947a35eb019bf8dbd7ca3ca407e5320b6820ed67

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 77070c2adc5bda67220758e5fbf0b8bf1c1659069a52700b3a47462e6a46c0c2
MD5 ba48d7f5a6e7c3e39d49e35e52f7bb22
BLAKE2b-256 8bbceea9a2446eed9d2f8f26f7467fb79724adc87baae303d2d5ef25e16b6ed7

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b1a21357da4bc941e285551176bead9ebfe665ebebfd632da0b2f1aac99c7e54
MD5 6a2fdc587497f320e8b2c25b71f54896
BLAKE2b-256 53d11f84ef7e00a29d7d86fbbd9593d9a99df38fcffcfc5ffb6c58ac0588b98a

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13806ae67d2d9bd8e1be329ef11096d364bf03f1b7962931d5db4bb213da4f47
MD5 3061ec1bd4031166a2638cf711009963
BLAKE2b-256 110868faaeea7829ae85908332948be81dfdf1cd74c7ca119e24c80dad4d25ef

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 482adc7803d7712d75f38769c1e888afe01101435fc6b1de834d52bede1b7190
MD5 41cbca152e9d1d6e44c0a7d0fae0d3e0
BLAKE2b-256 87bfe214d00fe475ea14e2dcfc8a2be0b9d02cb1d1db9ef0cf2a8062a9ea58a7

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98314e4b8a3bf1e2f245aef4776c6f4dc374f306e2d128b167ef43883f452a8a
MD5 f561422a1358b2fe236c079462ec2be0
BLAKE2b-256 4c2148f55c5d8eecf2988f2ff98bd13cf043f72711697df09a001e5c0e53687b

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ccee1bdef81945245b01d84da0f76e23c1df861abdde3a171079467a2f58d0c3
MD5 937311223d581a13b7d82c0cedbb3a4a
BLAKE2b-256 256c0036d356f23bfbea8566cc14520f94dcad1431318a38230f18e932e6260b

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 eba227d4f82467668d57ac2b182704cd8f6b57cae5f8262a759eca297c38a8f5
MD5 7cc3aa886f529e203aa6400c585537d0
BLAKE2b-256 fa449c20ee814e167ea3f95cd8766590a63f99f2905fe0b1f98d307c23810aab

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ec2884c6327a437c55add46841932a5a9c00addbd56f7ab26da6d5203ea993b
MD5 c32a526dfd71b3cc9b69beaf0dc67f6d
BLAKE2b-256 d3ffbae3c8e9288400ad92dc568c1e4e646a1fea6dd42302dbb9e78eba178cab

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf899f1d3eb8f7aecac0d357f8c327c776ee5e052d4ad5f9162ffdc2ac93d9c1
MD5 1b62a44f5928c61446aa628eac5ca00c
BLAKE2b-256 709924749dae6defeb7c0c44b5f1af9af73ddfa5764714306c137c864f2cc2fe

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc776a6f3d3c6ed4c7037501eee0d2d9375e1018b6d061d6cb89d6f8411071fb
MD5 95736fb2a3cb4c865684b648f0ba50ce
BLAKE2b-256 265589cd46ad1ed4c086a8185ba1a2daf2331676332e2b49dbe39734e03be56d

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26c9f5791d6a2221836d1c9306fedeb90c787c7fe5dfab112afc70b77fb6a296
MD5 0008de3e8cff8045eff828e2efd7172b
BLAKE2b-256 e77354faff4f2f598d7dc70a62d115954411a22621703bd34d3b867d23dc60ca

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe685c867bffedbc4dd684170552216b3c75cead94ef5644376cb1d837dc9118
MD5 598218250d10608efd209fbbd1348b09
BLAKE2b-256 f02d58d3701fe8b5d2ebb90d1e1ecbcc8fd8522b954b8d948777a9cf588b41c6

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 efeb9ec28b98b445157726ce5a329617eddc06470186a8382d4e33ea6d4e83e2
MD5 bee960c1e5c4d7152de27541294ad98f
BLAKE2b-256 9ca6f355c17840e30b20cf7696062ad51039fdb5966185f0033fef89a9f422dc

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3949e799bc9f99961248959c0346cd8030c83f767bcdd138ba21987a6d0edcd4
MD5 57b1fac244721176e92d305da2b91954
BLAKE2b-256 4b3dd454bd124f1c69337b444168cc66959132f3473f76408df5f2343784895e

See more details on using hashes here.

File details

Details for the file kenbun-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: kenbun-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for kenbun-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d738e673022d1bbada540dbca6a69fce9606ce256cc85678bcaf0d95fb274b4
MD5 ef91239675be0387a386ec7745519466
BLAKE2b-256 17cc966d97e735cfa8d8b6d13c64d4e7ac722e827e1f24d2edaf7f2f54f80aba

See more details on using hashes here.

Supported by

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