Skip to main content

Terminal Image/Video Renderer

Project description

Hackatime Hackatime Tests Passing PyPi Upload Passing PyPI - Version

koba

A terminal image renderer that can construct images using any set of unicode symbols

.......................................................................
.......................................................................
..._______L.._____.....__BBBa__.....____________..........___..........
...==BBBP=...=mB==....aBBP~~=BB_....==BBBe===BBB_.........BBBL.........
.....BBB....._B-.....eBBF....eBB_.....BBB....~BBB_........BBB_.........
.....BBB...._B-.....ABBB.....JBBB.....BBB.....eBBa.......ABBBB.........
.....BBB..._BF......BBB.......BBBL....BBB.....aBBB.......BRBBBL........
.....BBB.._BF......JBBB,......eBBa....BBB.....BBBe......JB^BBB_........
.....BBB._BF.......ABBBL......aBBB....BBB...._BBB-......A#.eBBB........
.....BBB_BB_.......aBBB.......aBBB....BBBa__BBB=^.......BL.3BBBL.......
.....BBBBBBB_......aBBB.......aBBBL...BBBe===BBa_......JB...BBBa.......
.....BBBPeBBB_.....aBBB.......aBBBL...BBB....~aBB_.....aF...mBBB.......
.....BBB..BBBa.....aBBBL......aBBB....BBB.....mBBBL....BL...3BBBL......
.....BBB..~BBB_....3BBBL......BBBB....BBB.....JBBBa...JBBBBBBBBBa......
.....BBB...=BBB_....BBBL......BBB#....BBB.....JBBBa...ar~~~~~mBBBL.....
.....BBB....eBBB_...mBB_.....JBBBL....BBB.....JBBBe...B......JBBBL.....
.....BBB.....BBBBL...BBBL....ABBP.....BBB.....aBBB,..Je.......BBBa.....
...__BBB__...~BBB__:.~BBa_.._BB=....__BBB____aBBBP.._BL_....._BBBB__...
...BBBBBBBL...=BBBB...~=BBaBBB=.....BBBBBBBBBBB=~...BBBB.....BBBBBBa...
.........................~~~~..........................................
.......................................................................

Demo

Click the image to watch a demo on YouTube:

Video Demo

Installation

pip install koba

No Python?
You can also download a binary for Linux, Windows, or macOS from the releases tab. Note: These binaries are slower, sometimes outdated and not recommended unless you cannot use Python. They might also be detected as viruses by some antivirus software. They must be run from the command line.

Quick Start & Examples

# Basic usage
koba image.png

# Use different similarity engine
koba image.jpg --engine diff

# Render GIF in color
koba image.gif --color

# Render Video in color
koba video.mp4 --color

# Render Video in color with fast mode (only using █ character)
koba video.mp4 --fast-color

# Custom character set (box drawing characters)
koba image.png --char-range 9600-9632

# Custom font
koba image.jpg --font /path/to/font.ttf

# Debugging
koba image.png --logging-level DEBUG --save-blocks --save-chars

# Custom font with specific characters
koba logo.png --font ./fonts/custom.ttf --char-range 65-90 --engine mse

You can also run koba as a module with python3 -m koba [OPTIONS] FILE.
Note: If your custom font does not include a character, koba will automatically use a system font just for that missing character.

Features

  • 🎞️ Animated image support: Render animated images (e.g., GIFs) directly in the terminal
  • 🎨 Multiple similarity engines for different visual styles
  • 🌈 Color rendering support for truecolor terminals (--color)
  • 🔤 Custom character ranges including Unicode, Braille, and symbols
  • 🖋️ Custom font support with TTF files
  • Multi-threaded processing for fast rendering
  • 🎛️ Adjustable output quality with scaling and aspect ratio control

Usage

koba [OPTIONS] FILE
python3 -m koba [OPTIONS] FILE

Options

Option Description Default
--version Show version and exit
--color Render in color
--fast-color Enable color and use █ (U+2588) for faster processing (recommended for animated images)
--char-aspect INTEGER Character height-to-width ratio for aspect-correct output 2
--logging-level TEXT Set verbosity: CRITICAL, ERROR, WARNING, INFO, DEBUG ERROR
--save-blocks Save image blocks as PNG files in 'blocks/' directory
--save-chars Save rendered character images in 'chars/' directory
-e, --engine TEXT Similarity metric (see engines below) diff
--font TEXT Path to custom TTF font file
--char-range TEXT Unicode range as start-end (e.g., 32-128) 32-126
--stretch-contrast Stretch image contrast to potentially improve results
--scale FLOAT Scale factor for image display 1.0
--invert Inverts the image for processing (Color will not be inverted when using --color).
--single-threaded Disable multi-threading

Similarity Engines

Choose the engine that best fits your artistic vision:

  • diff - Pixel-wise difference, balanced quality/speed (default)
  • brightness - Fast, good for simple images
  • mse - Mean squared error, precise pixel matching
  • ssim - Structural similarity, good for complex images
  • ncc - Normalized cross-correlation, good for textured images
  • hist - Histogram comparison, emphasizes tonal distribution
  • cosine - Cosine similarity, unique artistic effects

Character Ranges

Popular Unicode Ranges

  • 32-126 - Basic ASCII printable characters
  • 32-128 - Extended ASCII (default)
  • 9600-9631 - Block drawing characters
  • 9632-9727 - Geometric shapes
  • 10240-10495 - Braille patterns (high detail)
  • 0-1114111 - Full Unicode range (basically impossible)

⚠️ Depending on your terminal and its font settings, some characters may not display correctly if they are not supported by your terminal's font.

Example Character Sets

# Retro terminal look
koba image.png --char-range 32-126

# Geometric patterns
koba image.png --char-range 9632-9727

License

This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.

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

koba-0.6.2.tar.gz (104.0 kB view details)

Uploaded Source

Built Distributions

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

koba-0.6.2-pp311-pypy311_pp73-win_amd64.whl (127.7 kB view details)

Uploaded PyPyWindows x86-64

koba-0.6.2-pp310-pypy310_pp73-win_amd64.whl (127.6 kB view details)

Uploaded PyPyWindows x86-64

koba-0.6.2-pp39-pypy39_pp73-win_amd64.whl (127.8 kB view details)

Uploaded PyPyWindows x86-64

koba-0.6.2-cp314-cp314t-musllinux_1_2_x86_64.whl (240.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

koba-0.6.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (241.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

koba-0.6.2-cp314-cp314t-macosx_11_0_arm64.whl (130.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

koba-0.6.2-cp314-cp314t-macosx_10_13_x86_64.whl (129.1 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

koba-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl (219.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

koba-0.6.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (219.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

koba-0.6.2-cp314-cp314-macosx_11_0_arm64.whl (128.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

koba-0.6.2-cp314-cp314-macosx_10_13_x86_64.whl (127.6 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

koba-0.6.2-cp313-cp313-win_amd64.whl (130.3 kB view details)

Uploaded CPython 3.13Windows x86-64

koba-0.6.2-cp313-cp313-win32.whl (127.0 kB view details)

Uploaded CPython 3.13Windows x86

koba-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl (220.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

koba-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl (220.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

koba-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (218.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

koba-0.6.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (220.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

koba-0.6.2-cp313-cp313-macosx_11_0_arm64.whl (128.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

koba-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl (127.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

koba-0.6.2-cp312-cp312-win_amd64.whl (130.9 kB view details)

Uploaded CPython 3.12Windows x86-64

koba-0.6.2-cp312-cp312-win32.whl (127.3 kB view details)

Uploaded CPython 3.12Windows x86

koba-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl (225.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

koba-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl (224.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

koba-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (223.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

koba-0.6.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (225.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

koba-0.6.2-cp312-cp312-macosx_11_0_arm64.whl (128.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

koba-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl (128.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

koba-0.6.2-cp311-cp311-win_amd64.whl (130.6 kB view details)

Uploaded CPython 3.11Windows x86-64

koba-0.6.2-cp311-cp311-win32.whl (127.2 kB view details)

Uploaded CPython 3.11Windows x86

koba-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl (218.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

koba-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl (218.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

koba-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (218.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

koba-0.6.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (218.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

koba-0.6.2-cp311-cp311-macosx_11_0_arm64.whl (129.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

koba-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl (128.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

koba-0.6.2-cp310-cp310-win_amd64.whl (130.8 kB view details)

Uploaded CPython 3.10Windows x86-64

koba-0.6.2-cp310-cp310-win32.whl (127.2 kB view details)

Uploaded CPython 3.10Windows x86

koba-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl (212.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

koba-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl (212.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

koba-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (213.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

koba-0.6.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (212.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

koba-0.6.2-cp310-cp310-macosx_11_0_arm64.whl (128.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

koba-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl (128.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

koba-0.6.2-cp39-cp39-win_amd64.whl (130.9 kB view details)

Uploaded CPython 3.9Windows x86-64

koba-0.6.2-cp39-cp39-win32.whl (127.3 kB view details)

Uploaded CPython 3.9Windows x86

koba-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl (211.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

koba-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl (212.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

koba-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (212.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

koba-0.6.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (212.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

koba-0.6.2-cp39-cp39-macosx_11_0_arm64.whl (129.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

koba-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl (128.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file koba-0.6.2.tar.gz.

File metadata

  • Download URL: koba-0.6.2.tar.gz
  • Upload date:
  • Size: 104.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2.tar.gz
Algorithm Hash digest
SHA256 e588378bf3fbe8740f0d852067e78025d932b9bbc92056280d65941406ab19ac
MD5 4c520c1c683905802c1e3bca9509feb2
BLAKE2b-256 281595c4f90ab239a473585254ed0c62540f1c2ea5084376c6219e666ec23caf

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2.tar.gz:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a3e9f883b78d2cb7cff6c0ea54cece69fabec73ec41a963f211da376516d031d
MD5 e589a62905cde79e3d316f1195d0ec95
BLAKE2b-256 0ab2aa008199201e7f0e4ff8919da5c25d5e0d877479d3d601fb9a5193c30b1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-pp311-pypy311_pp73-win_amd64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 350de5b4fd4344d21252eb0117d1db5f78d985529876c40aec5c33b9e6cb729f
MD5 0f5a9d5264dec9a2f6b92dbae5ae8a6f
BLAKE2b-256 b0424a9d3d7da5c585cbba7a01b1e815e0a47f9cde2526dc969a2cf0fd5922b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-pp310-pypy310_pp73-win_amd64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

  • Download URL: koba-0.6.2-pp39-pypy39_pp73-win_amd64.whl
  • Upload date:
  • Size: 127.8 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 11b5a02b1d70ee0805cb3b313b622837ed76474c0864484d519cfee2ecbe6546
MD5 2dda2aaa8976f01ab96d8edcec4a68a4
BLAKE2b-256 a64d14f3e5c7e1edcee6df7dd1c349dd9e25ff485bdfc7d6c35f5e60984660e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-pp39-pypy39_pp73-win_amd64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81a01005802d5d79c564a514725129ed72c66220311994ee3f5590b132d75496
MD5 c74cfae4ec8b2bac7a2a51fb757de59a
BLAKE2b-256 0a209eca66a2f93df65f02d854b60f249231b4c2a104bb182f1dadead44a08da

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 789e31ce274ee6645a7631bcb34f06605db539abc571a5e95a46f8ac12419e70
MD5 36e961e58abc8ef5df7ba3d82540a7cb
BLAKE2b-256 e16cde8bfaadc54df48ac5d3b7f65d1029b81d6fdb0f153bad5f0998cd6c0998

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf8fbbd99a0ccfd6ee6c6c176f01204dd2d3061f4f2da1fa94db48b6e014c9d2
MD5 56dcf725f14a3c857c49aee9cd15712f
BLAKE2b-256 966c04cc0f178f17ed704ef975825e38023b11782269c43dd84bdc5399c1771c

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 51c33b038ef4308a8bbb5f183045c00e0624a402b8be186f1074a2eddbe4ddfe
MD5 5c8bd086112b08bfdde8d786adf8e53c
BLAKE2b-256 9ace263e419a1c03e91f00a23d9f95d6f7dc5950e4a9e5153892402a902bfe52

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp314-cp314t-macosx_10_13_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d94d792db2afaca947455a26844745604008a1e7a5814dfa1376d5e00642d41
MD5 cc823cbfb60051e33561721013f857ff
BLAKE2b-256 c6bf932e167f70fcd571bbf89cfe4e2defc8acada8ded39142ae846b35e7cc42

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 26c9cac09bf53b4d46a0a0ec12f8e72c566639e04047f80e71c3c6bad75724e2
MD5 53cb15187a572e8d209c8ff541817d00
BLAKE2b-256 959c4e856962077294f0e7d9d6ee914e179749782a46695bd57daef332b77014

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 448d0cab6ed66fb491b1da6df76f52a5dc25baba04fb87ededbb4f9600c17794
MD5 8a2c497c81f70802a81243e7c7b22b1f
BLAKE2b-256 69bde6f869c64f15580acf9dc735c77fe3e71412e96a06187d125493a47b0237

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2106d575fb95f4ee5c1d074d8ddb51cfbea25d894fa879a93f471e9ae95b479d
MD5 7a1b3ef6a7eb4a6cf7cff9bd76f97e87
BLAKE2b-256 9bb6984c7189cb04934dec5d64e44a56a349b678c12f2381a684bd976c711b35

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: koba-0.6.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 130.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 da02ce90f3c0c22887e552717577a167f4091c4c9197ae7b6f146477b870eedc
MD5 f3af98c5f6f9e812b2e24a328e6915d9
BLAKE2b-256 08f9cdc29de72ae40e7b940232c5ebf83c2151989cd9affb6c015560979a4bc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp313-cp313-win_amd64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: koba-0.6.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 127.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 259461aa130f95f5b356a0f099bac96c855e4459fbf47ebcb0371daa988e5754
MD5 04303b85796fb024f5ecb6df944bfd34
BLAKE2b-256 c053fef6f6e9c86d679fa6a24f93952b70180343502db0186c41249f414ea299

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp313-cp313-win32.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 039cc74b93232ed10b14f19a955b6222277af39c3a18550d54fa453ebb796d82
MD5 a0c73cd994b98540d9e6b250b6790cb7
BLAKE2b-256 bbc6a4889760b006f999142d0d09167067f4a334a6362e7375992d7b6e508588

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7cb4b16c84d893048ef086a6931a89ea82fbd57a25d168c917c179e51860235
MD5 e6f77bada11fe19614a02b2f991c7e6f
BLAKE2b-256 2408549c75bbbedc1348d5ab372cbc3402abfb5dcc8e22fc2cd1fe50fa31a859

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2a9d3a7dcc8ed2535e7b2552e9c6e5d609d4f838483209313a4e5a8bc1bd1ec
MD5 3533c3a55cb563fda3065571da354daa
BLAKE2b-256 4ebff73ad64f66d1d6819ba726442cac5e12a831bcf41fa2512c072f4e7fa699

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 434202257178aababc977cf98e5d397ef26cd528259ea1c952262f427feb4ffa
MD5 ae0471584a57585e896c971c40171024
BLAKE2b-256 6ccd7504b9da47a0fbb9756640c35fdf6e358d2e48b87a6ff6355494cced1358

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e73eb396809973bfc22308ebad93d8c79ce633ab1e4bcf781c787a864ae0950
MD5 c87d46f4243a6dc200a5a60134d5d62d
BLAKE2b-256 730f189c9544994ed200d00d228df176ca2090714624b4d9cc8f3cd54b143255

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d4e4f7b086b34b63ab9a5cddc5cbc83c47c5be177f939f7caf6dcd0ddb1af3c0
MD5 e6e86a75e37bb78956cc4524295fdf53
BLAKE2b-256 b8e9345981812d854c37704e2d250fad48bc60201d883d52dcaf3440ddd14a24

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: koba-0.6.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 130.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4b506650239a23d39ef4905d6ee5842cf5bd49e7c19feb3c5b1f12bf2d2159cb
MD5 73ead03c59617a1b5334ee8f7670fa06
BLAKE2b-256 acbfe094a6d8bf9bd59ff42382ac892357005dedcc85fb07561528748f995899

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp312-cp312-win_amd64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: koba-0.6.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 127.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 30e41c0d181c232ed28a90ffdfafdcc3ab726b2aa4f76cb4b86532d3f81eea42
MD5 95f64bca8e6eb588fa1a37604e4d46d1
BLAKE2b-256 a76b92ea33cd4db8787ae66e3db940043edfdef2b38bf33e329f5933c0489b6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp312-cp312-win32.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfe07155cf7d6d4d0f12c682f411d84063351979255bb71b4bf05c25d9bdf183
MD5 1d214307e231783db57a52e663c48ed9
BLAKE2b-256 b34837de4f61cf7fd5084272714f6f94d2abe0249c45445b1ac19fd217ce64da

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c997d255159e652ee420f3040bcf08d38c1cec48f8467b3bebd92ec561c76195
MD5 8edbe3215fc2d9e3dcd33e0c4661a0f0
BLAKE2b-256 9cba3d7ed14970c36694cf1615b3452de0464d6f344a375ee02d2b008911ec47

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 355122b37f42e57e2e5e6426672de2d5c3b0cb81cb5cb3f4538943d78ccecfe4
MD5 f6973cef7f95d3fab588ed4241ee1998
BLAKE2b-256 f99b7e941e020ac7090896e9cf72ab54050af4e3dcab9d9be87cea67f1fc95cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b6fc1ce7ab2d8780bc74ba376ffda6d8ee49e2408a5a6439af1bdb09923e1dc8
MD5 1b54e7f47b82a932102891f882cd30d8
BLAKE2b-256 b14e1dfdcc2391ba2d991a0506f48c3b948507570dcfe48fcfba9d62b651cc94

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 04cc0df39824d89c1bdf3148ef33123119f94125c4e0fcf83b5d6f51b5d0a930
MD5 01db55e23095d214c7810b4c4de84e37
BLAKE2b-256 dc0449074131474a17de747e42348a4bb30321eea9db7ab147629ffb8527489d

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c16e88db4596578d8099b7c4844fe000faff4def6c16ad56c57a1a7939bd010a
MD5 488fec470881cdaca3cf56e5c233a0fb
BLAKE2b-256 dd6a86dd16c94bfe926bdf06e8793ead9f14839707db412f4f6590554a4019cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: koba-0.6.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 130.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2ff3e44334700b7137576cc05344eccb61867dcf70b488907b7f9b131e72b42a
MD5 7a87c26a7b187dd8208bb300ed081755
BLAKE2b-256 a436ce73438ba76c6022aa3bec9769a77ee00437c4606ac01237c714c1c1c4e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp311-cp311-win_amd64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: koba-0.6.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 127.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 59c97c03541038e6906289f756a2e548d213a2a6e0dfcb8592dba64ecb1f9a21
MD5 a9d2f7d99ba142b9e3c22b39d6462808
BLAKE2b-256 f2eac368b0225d54dc762dc592e7fdea428e0f3ccd802e000d414c2395353236

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp311-cp311-win32.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 00492abf0ddf958368541bf891e6ebb7abc204f83d4346da4a27885b4b9ae989
MD5 818b2e8933e86beedf061be2cb588988
BLAKE2b-256 a93f0ebeb39bf15e76f57a97624fbb8b550ea0e18e44efa96cfee05ff6744a91

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f81e9be687188019420b26a377f8a7209b7e2912eb8b45d17090e8000a628b8
MD5 da487ee4e169b514216e89180e58b109
BLAKE2b-256 313c89d3b59cf7a06a00361fd7f4572d409b06c52587c15e52629fe4754dd2e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60f1dc04bb6f1afee8e2c9cbc1484cc3c6e3f30a143e8ea6f685430da605ed05
MD5 7474fb22468cba78c83a543e2aa32b89
BLAKE2b-256 d8622b6bfb4ca6ad899298734e98a5d9c10e861ad01b3f7df71bb44c438b8e9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 442e19f888d4aa97f3abb926bc641545ff75f47bd14085087cc9a3b0ac86e447
MD5 795d3b96cb4f603f861be258ebfed1a1
BLAKE2b-256 4a97d791c9635225e2d9f6118c9e61a3a6d6f6978e1544287a7d2de8d11b3449

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 033b25069191018ebf93dec61a7b1b533fb0a97ea8dc7410bf08e2e474b4af2d
MD5 c6c1e00b269c9570b69accff94a0ee68
BLAKE2b-256 fa31b01826c1bd7108831057fd006998b1fcb8b764c7abc1ec8ef478fb576442

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4939d6f319341250278a1fc333473da09aa24c2d5b9647970dce10d6c19252e6
MD5 048845eb25b75ebc247ef6f8bf1cee08
BLAKE2b-256 1c967415e3adee840a8abf0d1a3aac20a482a8ab53fa1254a70ad3f43566f6a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: koba-0.6.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 130.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 370dd0d89fe42ffec28d3c9915ba4fe5e411293dea4ffb34c4c5db768a5ac46d
MD5 4a7aa2bcc15b11ebe07feda18c6aae35
BLAKE2b-256 43edbe929cfd0593dcefbf2affa266832f00f645e0551bba4115162c5f157608

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp310-cp310-win_amd64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: koba-0.6.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 127.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 40906e9f3a0f9fc1e2f3516c541f25be7fe03d1f069dc1ec43b88c86d44c9b8f
MD5 928fe2ebb5ae8c59c715c97131331dfe
BLAKE2b-256 102a4dce35f310fe3e47b3d8d652dfe9fd36052a7bfa2c55c51f0975e6d62ae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp310-cp310-win32.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e135fbdef4d3dee732adf29440c4be2f93a80a8566666dfc98872a13f538abab
MD5 f99e5a16df0d1977ead05044005b4961
BLAKE2b-256 55177a6498120d266147864adc24f6338f8b38c4631615c6736200cb59419e37

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69758db4f28ce52f556e6f824e27f5fece8316e0ba4fe13a0cb1745ae3bdf5f8
MD5 122dcbceb4066c13c29d47675796d2e2
BLAKE2b-256 c58ba5f208c01ec2315ae245843c470cec0cdbc9564407b7b8e5f7ff75831b87

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4554e9412102c3b52e739513302d6dd3360270a030bd665021282f1156e1f013
MD5 e5b748f63c228cec5b2d12751569b353
BLAKE2b-256 a1a5874de1ee06d59378f8323df05cd55fd898e355ef82a38ab90ada21ca6a9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5263c185b6fd93eda9a0545cb2ae031902059e857e8d89f3908e359ff8d86af6
MD5 3416570e7bc7c3513a454142527f3735
BLAKE2b-256 6703f87cb3492afea3bdeea929fb8b1c77ec3704f3ecddd36c4e7f3ba039d839

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9df8692d52bcd0a3e000cf88ea31796d58d84d69487132d431c2e11802347a51
MD5 f2bc7bc9318a85b9938a734503d208c5
BLAKE2b-256 60fc64f642d5fef0be81877846d67bbb0259efa4f99508efc102602ad66a3420

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d36aaab46f00f8d53d5c9b9a97151a074e230ec27a4e78add5dc0ee1ddd49171
MD5 19eab759e0eae3e352f3680840990fe6
BLAKE2b-256 58c0dcd1c37b5b18feca08c34a036c1b8971bbc5786c0ef0b2dc39ae0b82cec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: koba-0.6.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 130.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5ea000bc92b793259809fd1bc8c99eddcf352a81f8151bcf9120ae2979ff66b5
MD5 4f412e6683104ae225c137919ddeb74e
BLAKE2b-256 7d1b88474739d0f959d83433bf26777bdb389373cd9314ee2ba2cebb30de1be2

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp39-cp39-win_amd64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: koba-0.6.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 127.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 22c5bfaf130c164b8513d98122b8142f1685f500fd89970c8605d2adf3c91f5c
MD5 7904a78fd278f1046629f3ae35cea57c
BLAKE2b-256 8eea57a39b38edd9e0e8902abfa46a0fb911d9593823ac4240343ae12804bd61

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp39-cp39-win32.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: koba-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 211.7 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44827e816974e154b073c81a94a5c520f7f4fd67929d3cf1055794fa3d2c13d0
MD5 c923e24bc375893154d46daeec6ac632
BLAKE2b-256 7b268af31dfc6936612413154865125b081e44b8907cc8c7cbe6ff42c79fb2bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8de5cfaa345c620b5f126f2fa76b3cf44bdcccb743e732106ba9eec180d38f23
MD5 decea291bc4c3909f768ec02f68b8dbc
BLAKE2b-256 5cb04c9755f64c4ea8fe7b925c1f91e2c320c1397e60c64bf6cd75aad7823cf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c6703dbd2db8a8ba1848ed5f480eb1de17f102c725e9715364812b73bd164ae
MD5 1e1df47496b3fe7ba7f6c7ab6037e220
BLAKE2b-256 6bb079965158cb2affd3b35e96a49b1c4ea5316e1c2e216d7abd4ec23059ea94

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for koba-0.6.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bafb2dddb81b3a7575d39ffbffc0ce4f0e1e9011a6c2363f1324027a27d001ec
MD5 b210d4b6110c510efa267353bef240b0
BLAKE2b-256 1fdcfab829aa96547eccec17ddff0211640e2285cb6358fc847442afcedaf22d

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: koba-0.6.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 129.0 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70af449292ca44b568c646e4a6ff4ce161ecf4a575e15d6a82804fa5dddcc8d9
MD5 581df3c46d6f6e384eb1a726bd113c55
BLAKE2b-256 f8494924d57bdb9c71a0a4646db5ea78fbb25c6ccc643f7f53bf7318dd26da4d

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: pypi.yml on simon0302010/koba

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

File details

Details for the file koba-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: koba-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 128.4 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for koba-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 07dafce05a3f09818ee6898c37e88f5fbc9cbb766eb0e9946e859ab7e626bf14
MD5 4c4262a18be0c5646e31a32ef2a3c923
BLAKE2b-256 485513f6dab8b5aac55e6f08f641ca373299fde78cc94f1b4f68d2435e9aaf13

See more details on using hashes here.

Provenance

The following attestation bundles were made for koba-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: pypi.yml on simon0302010/koba

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

Supported by

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