Skip to main content

No project description provided

Project description

kiru ⚡

Chunk 'em all - The fastest text chunker for Python

Lightning-fast text chunking for RAG applications, powered by Rust 🦀

PyPI Python License: MIT

Why kiru?

Building a RAG system? Chunking documents for vector search? kiru makes text chunking a non-issue:

  • 🚀 10-100x faster than pure Python alternatives
  • 🎯 Precise UTF-8 handling - never breaks characters
  • 💪 Parallel processing - utilize all your CPU cores
  • 🔄 Streaming support - process files larger than RAM
  • 🐍 Pythonic API - feels natural, works everywhere
  • 🦀 Rust-powered - zero-copy performance, Python convenience

Performance

# Benchmarked on 100MB text file, 4KB chunks, 10% overlap

| Library    | Strategy | Time (s) | Memory (MB) | Throughput (MB/s) |
|------------|----------|----------|-------------|-------------------|
| kiru       | bytes    | 0.19     | 10          | 526.3             |
| kiru       | chars    | 0.41     | 12          | 243.9             |
| LangChain  | chars    | 9.87     | 850         | 10.1              |

kiru is 50x faster and uses 85x less memory than LangChain!

Installation

pip install kiru

Quick Start

Basic Usage

from kiru import Chunker

# Simple string chunking
chunker = Chunker.by_bytes(
    chunk_size=512,  # 512 bytes per chunk
    overlap=128      # 128 bytes overlap
)

chunks = chunker.on_string("Your long document text...").all()

RAG Pipeline Example

from kiru import Chunker
import chromadb

# Initialize chunker for your embedding model's context window
chunker = Chunker.by_characters(
    chunk_size=1000,  # Characters, not tokens
    overlap=100       # Maintain context between chunks
)

# Process documents for vector database
documents = [
    "file://report.pdf",
    "https://example.com/article",
    "glob://*.md"
]

# Parallel processing with streaming
chunks_iter = chunker.on_sources_par(documents, channel_size=1000)

# Stream directly to vector DB
for chunk in chunks_iter:
    embedding = embed(chunk)  # Your embedding function
    vector_db.add(chunk, embedding)

Chunking Strategies

By Bytes

Perfect for token-limited models and consistent memory usage:

chunker = Chunker.by_bytes(chunk_size=4096, overlap=512)

By Characters

Ideal for character-limited APIs and precise control:

chunker = Chunker.by_characters(chunk_size=1000, overlap=200)

Input Sources

kiru handles multiple input types seamlessly:

# From string
chunks = chunker.on_string("text...").all()

# From file
chunks = chunker.on_file("/path/to/document.txt").all()

# From URL
chunks = chunker.on_http("https://example.com/article").all()

# Multiple sources (parallel processing!)
sources = [
    "file://doc1.txt",
    "https://example.com/page",
    "text://Inline text content",
    "glob://*.md"  # All markdown files
]

# Process in parallel, stream results
for chunk in chunker.on_sources_par(sources):
    process(chunk)

Advanced Features

Streaming Large Files

Process files without loading them into memory:

# Process a 10GB file with constant memory usage
for chunk in chunker.on_file("huge_dataset.txt"):
    # Each chunk is generated on-demand
    send_to_processing_queue(chunk)

Parallel Processing

Utilize all CPU cores for maximum throughput:

# Chunk 100 documents in parallel
documents = ["file://doc{}.txt".format(i) for i in range(100)]

# Returns iterator immediately, chunks processed in background
chunks_iter = chunker.on_sources_par(
    documents,
    channel_size=10000  # Buffer size for parallel processing
)

# Chunks arrive as soon as they're ready
for chunk in chunks_iter:
    vector_db.insert(chunk)

Integration Examples

With LangChain

from kiru import Chunker
from langchain.embeddings import OpenAIEmbeddings
from langchain.vectorstores import Chroma

# Use kiru for fast chunking
chunker = Chunker.by_bytes(chunk_size=1000, overlap=100)
chunks = chunker.on_file("document.pdf").all()

# Then use LangChain for embeddings and storage
embeddings = OpenAIEmbeddings()
vector_store = Chroma.from_texts(chunks, embeddings)

With LlamaIndex

from kiru import Chunker
from llama_index import Document, VectorStoreIndex

# Chunk with kiru
chunker = Chunker.by_characters(chunk_size=512, overlap=50)
chunks = chunker.on_sources(["file://doc1.txt", "file://doc2.txt"]).all()

# Create LlamaIndex documents
documents = [Document(text=chunk) for chunk in chunks]
index = VectorStoreIndex.from_documents(documents)

Benchmarking

Compare performance yourself:

import time
from kiru import Chunker

# kiru
start = time.time()
chunker = Chunker.by_bytes(4096, 512)
kiru_chunks = chunker.on_file("large_file.txt").all()
print(f"kiru: {time.time() - start:.2f}s")

# LangChain
from langchain.text_splitter import CharacterTextSplitter

start = time.time()
with open("large_file.txt") as f:
    text = f.read()
splitter = CharacterTextSplitter(chunk_size=4096, chunk_overlap=512)
langchain_chunks = splitter.split_text(text)
print(f"LangChain: {time.time() - start:.2f}s")

API Reference

Chunker

# Create chunkers
Chunker.by_bytes(chunk_size: int, overlap: int) -> ChunkerBuilder
Chunker.by_characters(chunk_size: int, overlap: int) -> ChunkerBuilder

ChunkerBuilder

# Single source methods
.on_string(text: str) -> ChunkerIterator
.on_file(path: str) -> ChunkerIterator
.on_http(url: str) -> ChunkerIterator

# Multiple sources
.on_sources(sources: List[str]) -> ChunkerIterator
.on_sources_par(sources: List[str], channel_size: int = 1000) -> ChunkerIterator

ChunkerIterator

# Get all chunks at once
.all() -> List[str]

# Or iterate one by one
for chunk in chunker_iterator:
    process(chunk)

Contributing

We welcome contributions! Please see CONTRIBUTING.md for details.

License

MIT License - see LICENSE for details.


Built with 🦀 Rust for ⚡ Python

Ready to chunk 'em all? Get started with pip install kiru!

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_s390x.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ s390x

kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ppc64le

kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_i686.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ i686

kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARMv7l

kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ ARM64

kiru-0.1.6-cp314-cp314-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86-64

kiru-0.1.6-cp314-cp314-win32.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86

kiru-0.1.6-cp314-cp314-manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

kiru-0.1.6-cp314-cp314-manylinux_2_28_i686.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

kiru-0.1.6-cp314-cp314-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

kiru-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

kiru-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

kiru-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

kiru-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

kiru-0.1.6-cp313-cp313t-manylinux_2_28_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ s390x

kiru-0.1.6-cp313-cp313t-manylinux_2_28_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ppc64le

kiru-0.1.6-cp313-cp313t-manylinux_2_28_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARMv7l

kiru-0.1.6-cp313-cp313t-manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.28+ ARM64

kiru-0.1.6-cp313-cp313-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86-64

kiru-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

kiru-0.1.6-cp313-cp313-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

kiru-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

kiru-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

kiru-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

kiru-0.1.6-cp313-cp313-manylinux_2_28_s390x.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

kiru-0.1.6-cp313-cp313-manylinux_2_28_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

kiru-0.1.6-cp313-cp313-manylinux_2_28_i686.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

kiru-0.1.6-cp313-cp313-manylinux_2_28_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

kiru-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

kiru-0.1.6-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

kiru-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

kiru-0.1.6-cp312-cp312-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86-64

kiru-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

kiru-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

kiru-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

kiru-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

kiru-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

kiru-0.1.6-cp312-cp312-manylinux_2_28_s390x.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

kiru-0.1.6-cp312-cp312-manylinux_2_28_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

kiru-0.1.6-cp312-cp312-manylinux_2_28_i686.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

kiru-0.1.6-cp312-cp312-manylinux_2_28_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

kiru-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

kiru-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

kiru-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

kiru-0.1.6-cp311-cp311-win_amd64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86-64

kiru-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

kiru-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

kiru-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

kiru-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

kiru-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

kiru-0.1.6-cp311-cp311-manylinux_2_28_s390x.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

kiru-0.1.6-cp311-cp311-manylinux_2_28_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

kiru-0.1.6-cp311-cp311-manylinux_2_28_i686.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

kiru-0.1.6-cp311-cp311-manylinux_2_28_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

kiru-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

kiru-0.1.6-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

kiru-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

File details

Details for the file kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f88a5b61dcdf1619b90a0f4cb777b68a435568257ec197aea32390f4a9391c6
MD5 fdc025cda8aa51955203209d516106bd
BLAKE2b-256 622257a7e5bf0c35d7a1654f53451469ca152183cd88033fb61279a7e21b91ec

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce70618e4cbf0fed461d54169c9bb86c2005ae3c91981b468f878826e3ad66e3
MD5 46c41ba757238bc883f6d19b1f982c4a
BLAKE2b-256 07b0e7db6a2ccb7ab28a4c18badcc754c17948d58608ab4e597650189275acb9

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba7caa1d789b02b60fe4d0286789968fbd117dd5aef7afb952ffa8d5cd429d02
MD5 42f15796c29ba265f840bc4cf4c44031
BLAKE2b-256 02657f2dd48b3bbb47b1e4701f0a861b57e90a3bd69af287a346f8c3b0f7ff02

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6249aeffbb7371d9c373cb87e16b995cd397e55fb18df677a176498f58394866
MD5 fcbdb998ff50a81ed7f9efbdaec65299
BLAKE2b-256 e29066d734649027253c322d7863e8398264fa14d28d42b17dcf462520667b63

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea2d8b9a96fdd0006bf09358c4a03f11e82ebd4e1377f57ba095eb4dddf7e098
MD5 9505c601089d2fc194f204927f193372
BLAKE2b-256 7951262bf514da89105c430ab6ce0b61d922700b3f0bcd2d4d4e9239bd3ad9d1

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1047d8761dd3597717e0820efc03237ab532e268b976eb35a68e5cba02987d44
MD5 25576847bcedd8d4cf959ea2a0391f00
BLAKE2b-256 4652b016a49cdbfbec6bc3805f9d4ae99d0aaf45a81d6b02908df1c8d30f1c6f

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 40ed70d85ba56d4c0a5ed55d7e0bc3c52d13604fd7c062edb5245ad3a9a36fed
MD5 2e5b43642d3890b0890b1464964cf044
BLAKE2b-256 c541d9e0822c1eea18a2809156f7119aed60ab799750af74edb568fca30ad6d1

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 586142c7d0d8c3e4677660b76fdf64835c65166a13d8bb8a97a70494bf675983
MD5 2e92e1d5aa3982926427f60d26ec2d50
BLAKE2b-256 3cc23cb5bf5940ab36c206561e85e29df661f137aa3e1e504a36883eb0c5a4d8

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 b3fe82660ed140aff34eb79dce049c052dedf28f543f0e710f3e91c004d7b55d
MD5 ee9c64abf026168ce66233c9eeaefadc
BLAKE2b-256 dfed0cedb3256c3e9ad6f4df0560d390b3c796b3acab10d7ecdd0321dfe296d7

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-pp311-pypy311_pp73-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8025bd05f1645a6851e7442538cae522a9614e63cac86a27c47dcc4263332ef
MD5 bc026c90b0393e918d94ca8019c08535
BLAKE2b-256 6471bc5782453a69083b7bbc46b14296e4d58eb8e4cd82d58ef6fe80b2825223

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: kiru-0.1.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for kiru-0.1.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 62d20514faafb05ea77fc9b162da15e53141933dc4d46133cfafc7bea47c2492
MD5 c5b71285752219e9a184bfa3f5090385
BLAKE2b-256 a1ab6165c7f7b20dd0a4f8db8328bdd8ff40f90ef464317d2354e279a67e341e

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp314-cp314-win32.whl.

File metadata

  • Download URL: kiru-0.1.6-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for kiru-0.1.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fb5b3958c481250d9801db8acf0af191578eccbc2cdba0f8120c382bf1756757
MD5 6c18f62911c7cb0f046c51227b234ba9
BLAKE2b-256 693239ea4e311526aeb5e99928fccb633deaad65c3216960783bae7d57e8036c

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2bcfe3cb296e0309183c30302b0f199234886b37a15fafe62b262dd49b442bca
MD5 917d493313dec3028f179bc1be9cf3b0
BLAKE2b-256 f8b9357fe9402ddae2bb69cc5df47c887ff7c2a0c3e0f5a51e89c21a33481410

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 282119b33916cf95ebeb7f7a5cb5f4c9ffc758137ff3cf2335f0442ffe9e3205
MD5 4bd58848f74b5d0e0cc9e2d165ff2766
BLAKE2b-256 0005fa3c3c9cf158fcb502a6173a0de04bf4d3bff4540ab36019f800b7d6bc3d

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67ff38ecc1929319fac73189ad2e056af1e040b1c43e59b3eb1a4b85d302df29
MD5 95fbd8a09ed87bcaf77a7d3355ccc00f
BLAKE2b-256 5f8729e1a8ed559b58f27b5f4c0c0049efda5188220f3f61a7d6e1ff7137703d

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 935b16bddd360c6e0fea2aa01af7d258a845422b7b0c1ed115145f6ed79b8057
MD5 06615f55ae9d396dc611ea7be1cd2478
BLAKE2b-256 158821de61f83a9fbd0b3c2ee0beffb03f9788b935302e1572bb4ec06fd82bad

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a8339082b517646bdfd48814287ee82f43844326236a37cb924554505d03bbe
MD5 c23e09656e7238b89415187f07a21071
BLAKE2b-256 feeb33054187a602f50467a450322f10f9bb46053768ce10fc392415f6324c1f

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 daf4d70c95517779be08b24cbd63348c7d0a5b88d2acde8652394f40db0491a7
MD5 b7cdfbd1de9947d67996d5a92d6fb268
BLAKE2b-256 a8691a6a899807c360d0a0674966a4adbd1e89adf9a280f7d850fad25b7a272f

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c804ff7d6522acaa69fcbb60545368fd5a43da0c04ad2ef60a2724f995eb32f4
MD5 b21a84b0453181b9256e744e1ae79948
BLAKE2b-256 46b47f957d77f44ece7e2e694699000edc324c077a804d4356bdee5a159132f3

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313t-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313t-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 2c3f05eeba51199f1526da66f1afe179e8ee8040a1cdeb5ffebc38cde1afa7b8
MD5 4f3f41745ffd5571eeeb9b33830ded75
BLAKE2b-256 caa2e9ffa9ab1711e8a0696e514e1b3bf35443914646901d97bbd50d2a6a50fe

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313t-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313t-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 55f7e335b144e5f33a9d41f84237d8876dad7dfb6e814b4d735aa2d7ac3094e5
MD5 5a554b117073143f1b46e0feea7650db
BLAKE2b-256 acfc2ccf0ea1414d545f73880b1ee95760eaff054786912de184e8213b3f9896

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313t-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313t-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fcfc4d0fbb1911ade05a670bd5a65989ba5c59e365805ce96ae5517861ae1b0d
MD5 297b0e57aef47abd8bacc25b7f26235b
BLAKE2b-256 b4b41083e1313414c6a6799e7716071bf27654750e5aab4251036c150f063cb0

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2d711bcacfcfa2cde8c83e75851454caf0d0eda25ea29c4dd49badc9aa8e0c14
MD5 234b375e46ddc02c2c3986f631f56f0a
BLAKE2b-256 a55666100d4c1dcd58e47a10426788cd431f78844d4f5ba94f8394be0a61ee0e

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: kiru-0.1.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for kiru-0.1.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e88e2c8ba3e198e43c951b423e5b291960c5adc13d7d7c617dc0238a6d6ace96
MD5 b08f082fe91256d4fb38fde675602487
BLAKE2b-256 a3a6e6f9ba768e4b67102044149cb1fb4268a27dc82bf4e1f69f041f914761d5

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2e6b9954af3d13db6c1c1b02e0381363312edbc1176325fe2ea09218316e087
MD5 aabba1a34a081f07d5f66224d7a82927
BLAKE2b-256 5d2a98a30bc6f37ea067639c7d4e26d9ca4355c989b54596196b33962b4edbe1

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 70db7c0deea71a051a1990448e7d3593d431ec5b085445092ec989569f8bb911
MD5 9262bdb541931d574393e3fb0952c9bf
BLAKE2b-256 799c49a594e9531b92fb4e3414d6e5ae9c4b40346237d47eb580d49d75a067f1

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f9369914ba0332114c115ef749880f00fe56ec1284fcca27aba420801e9a3ee3
MD5 c4850f687d9e89c957701a680b84cb34
BLAKE2b-256 d75922325ebdba82926d3d70b7a6988e950decc9f4d44d58d2d7bacea32f95ee

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b570232d96a34a66adc63595ba3ca63fa0ddc75b0dd59584b6e25ffa3ddbaec4
MD5 ea10d262404af2e70a55f99916722695
BLAKE2b-256 fa2546dabdae23e8353354d3c1dac0652e5a5ea410e9b2998debafdd61ebfb73

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b5ca120def91c907626a1ff734b0858c5c82fc1aab3c7ec8aedb5b401be2303b
MD5 1edeee92e414588163f6d563234cc2dd
BLAKE2b-256 23a6fd67507938e97f76c2192bdbfe1298e930cd7e84cab698fce525d697ea9c

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 5a9be21433fcd09cdc517cc0d0695919d206582634aa41f797673bb3955e1653
MD5 c260fec5df697342ca83d37fa652cc34
BLAKE2b-256 00b9cd076173ddde68cf7862be7676e2362b86eb8440ac3c500947c74f7f2bfe

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 e89f2009a72165bc76eed343e499a3f6d99555ab3914eb143a1031c48d175890
MD5 e85219fe8ae071c303ca7e934443edc0
BLAKE2b-256 56fc1c8d4bb159753067a99079f83e2f5b0204f59ca1459cb6f357238df06f8b

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1193effea02843f73db5b523088660c4404364b2ffe8751273e77b36f819bc86
MD5 be995b97dc9c9e19ca4329bf79d3fd74
BLAKE2b-256 e4ba47a6d3c55d2b0dd434ed6c1dd5a84aed0064c6ec1815f2634e9ff9561237

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1e6cd1d52b6f7241f554430fcf394b0809b9301f55e7da02d4aa3df857b6e999
MD5 018d66ee67b6d1137f3825420e54f902
BLAKE2b-256 b3ae72ac96cd2d2974cc7843c717c1c41398acae4fec261f90bcc1fd9d219033

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8f20ca88fda9b03133f1dd5d90399b94a9f5e3fdeb952650fea63d54827e4cdf
MD5 3a9d47c7b51802769b08e612a9ae320e
BLAKE2b-256 ce5bdd849cb235e8b09cb3a05ce70f1c393ff33ac42d97cb4527d24e98ed751b

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 067a8f49765ac348b5afdcb96a5894e52993a847be0b03327710fee57ea984a4
MD5 556ed3608f7ae6bb66f8fd16025528af
BLAKE2b-256 d2790a4229c12c0d4edbd80fcde02b41b5507db43137f35614fce212e630ee5f

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f5333b15f50fa936d4fb73a08e27f065d3f8d1fde07e57fb6fea4dd85e36498
MD5 32c38bb4a8a1676b8855450662705dba
BLAKE2b-256 a12fb544b59f9498b279f4999f9e69d3886b4a1cc3cbec9a0ecc5ed16bc87e73

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: kiru-0.1.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for kiru-0.1.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7a0a5f0b42c3e1826654aba7977605f46d20310429c8ff5987194e8265fc833d
MD5 0f3922e84897a0af2d44468518c64e17
BLAKE2b-256 36f9cf5f671ff30a7aa7215ee9dcde8e8a284f5a2aa4d57b264c73f39338589f

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a226fd94542003ff151e45aca90e28da124bb011555b3920ef28024b87ec0b45
MD5 cbd4228ed7a35d1d130b569093add85a
BLAKE2b-256 0ab68f5e671d121fc3cfc3b1ebf2bc70b0100c9144f0bf3098b5ebb2ac05e7eb

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fe2be39f62bf12ab5f30ea9bbb3812fac9a38b44b8c36e17064855c7ab8da98c
MD5 fa01449e075243364222b9247e6a89dd
BLAKE2b-256 e532f80f59fbae639be3e531a56ac0477937ca6b9ee077a820ef58927faada27

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 435fd124e4bef153d2fe6d2f55f62f3f756f331e280a7e22a77b73ecf43da539
MD5 6b4325bd7ff439f2b04e9f4cc52a842b
BLAKE2b-256 3cf34ab5813c4e95c9797bfa499c89ca608ba25ad1a08289ce91038137a461b4

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d3162e6b1aa55cfcb49a9118a452684aec88251c482636679910962b608acb5
MD5 ed66d3349ea30fc263959ced83b49b74
BLAKE2b-256 30b7f1531d5e59d4b30ead56b87fe44e2f9756104b456c0e2a9ca5d1b7788417

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d18c30eef02da7e4878a05b287b3c3488e121e646a2039fd1a00195b032395eb
MD5 74087f11824836f3d819cf3cdb226ebd
BLAKE2b-256 ba546128ce9b365e8cedb667413989f3f354840dcf05eb13a92b4cf0a34d3763

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0268f47825f6b5cf4eca7ca3fccf90fe99f6cb447aa0136860d257e6f7450181
MD5 fa688db883e13324aeed57e91d879197
BLAKE2b-256 a7db47054c15906235031f0cabc959ae651b039f84e40514124bc286852853be

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 591637b5351aac71d839e6ca28756390d40a5f686deee16bc219f1629cb6ac77
MD5 c6e9433e709952210f8676a2eaaec169
BLAKE2b-256 32d17bd2abcca532acc1b86f766d21b6f1b87f1caf959bc2b75f8c18d8f7061c

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 034e461f1a97de860a557f75c8c8f08acb4dac5232673c3877c2f0d9814d2bab
MD5 8e0dc3a088c1ffaf4cb8f56400aa0c4a
BLAKE2b-256 cb27873b04f8dd2e2c9c429fb83a53c166fa48f3545d5e6862ca5c9b512a23ff

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7a9474508ffce5c605a262c5bc33f4c8923b12aee7a73951549b9f55175d97c6
MD5 d8d00ff046cf468542a2d4e1632cfc9b
BLAKE2b-256 52f4e5eadedd3c6d6b649760dd00389b329cd327f94a68711c65c663e67c836d

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7e66176eea1457e51e03948e2787bbd367216294c5f0cf20bb2fadd68de3dc25
MD5 4b9a25d884c784d55b67161297f40295
BLAKE2b-256 e5b1efb7913183d21fd8e6faba6f5b72802ddc8858cafec8106dab0bd6fb1a4b

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24ed99c0b9caf0dea6088f534866f5274d192be6f8bfd2a6005d702d31fee523
MD5 d2aa886c8eab0e363c1e644df3dbdfb6
BLAKE2b-256 414e51b0963227b13315fb4efbd1488c5edf3d32eba3e6c7836fabc07d019120

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d149828dbbdfe9ac130cdf2576422e647736de603c7a525a937bec3ed428a569
MD5 94471f94090a1f0f16bd66dedc167340
BLAKE2b-256 9921a7675a3716738be14b6edc8103a7604cdce4f4d78c8e6d095e0da143702c

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: kiru-0.1.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for kiru-0.1.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 80b6c79b9fb7d4dbff0a673a69bd18e227adcc7206997a59ebe8cef050409a0d
MD5 1558dd3d5994d6e652aace51d8d71557
BLAKE2b-256 be0dfb3a89987fbcd0f102aaf41cdbe270462ff3d91f60c107ef836a30d82b3e

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ccb4b8ded4fd8773cea0f33f494b6a794c0b9ba5c682ab66de7a563b0f2cf443
MD5 8f5bc9306d84747830e1100740ee93b8
BLAKE2b-256 256b102b85b3e8a6aeb1d716fc2803b8ac56364fa609aeefa1c34eeb45b49652

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc3afdd4651fb47a2ecc244d0ee2e05db6396fc8c50772b028a125fe5e3387e3
MD5 6b1a3379c423894a15e997db1927d3fb
BLAKE2b-256 de4e9b8560ec7c71ff8fa7d1328830a2ba140ed0d5efcd8e4a8b5c50e92436e4

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e1e9154ccc3caa513456bdfd9776f91d7826762d3dc2517ef2642aff0186f49
MD5 2474ea119c58d708d0337caa870c91b0
BLAKE2b-256 e85e3ccb7a835e979d764810433363ee5aed5bdcbd019e0ce4960eaaa5f4ecd9

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c42462191106b3b3dc6d5ec5f2ec27ab01aea69856c499c1734c654c7e19501
MD5 0f411e386ad7e3bfaaf6bafb596fae9a
BLAKE2b-256 1d920e2414612ba58679103a8cca1b18d9ba06392c1a9927acc79ce969383767

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f113fb6179a921794410a4ae3912bbedd8e22174bd84b91569f3bfdfb1445ab5
MD5 bb18a04d3a45a8ed1d7090831705c772
BLAKE2b-256 59da1f85e92c285e3ce71ad87af7895fa77907d5f13f577b8449ce41b55dba1e

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bfea2af002af506562e4c86365ab566844f7a3cf03bde89e1707e06b4612a598
MD5 d2f18379abad1b3574406068a549b836
BLAKE2b-256 d764da2a2c249282754427b070370f5fede705f661fb77c98fc9d5275ca972c1

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9dad181618d8681bc7d4e22f70b56598a7f5f9f1284da25711cd721d3b1a5099
MD5 e0d92f1ccbd99f312bf07c83e084dcbe
BLAKE2b-256 cd7f7f3552c0acdd299bab2c781fad04d0fc879f463044c48ee93bb9e8fd696e

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 77dda217879fa9e1a398967867e7bc898896b4deda71a12ffc818f519ab08067
MD5 b02527cce8893bb3e8132209395347ff
BLAKE2b-256 09174ff1e520fd82020a36f7e3bd2180425f5cd087502466e75d58207ddb21c5

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4a7db33a05a5d80d52d5ef9ec10d901018f01d49d4bbd9ebbce80fdd5d052b60
MD5 303c95f4c01f42d7a8ec6b6c8bf5d119
BLAKE2b-256 4f0922c75683cc6310aeca9abc5bc98f23bcdd32ffe904935818d9c26422e0e5

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f0fc312f940e57410c345a31226430500d3e5e75511b369f5bbffde391c4ff07
MD5 614c7714e50eff2bb075e0c95e93d465
BLAKE2b-256 6ccb578185b5fe270e95172c2cb4c6e04ea7175f295b055e6fc303bd0d3fa3ee

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b52240d2ee7265eb9f498a2dfc473010bbb22a6a2724e33fe0a333f9cbac25a
MD5 31ca6fcf206af1fdc22b5b6657d16b03
BLAKE2b-256 970a869df1de3913ffb7ee5ed5f648e4aad8b2fa490af3f60bfb6080afc125e2

See more details on using hashes here.

File details

Details for the file kiru-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for kiru-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb42b43e25e83a8810a74e158a908f416592093ba320c6f69a92b246a025b2c9
MD5 077c70fd68500392f92da1ca12cd766f
BLAKE2b-256 b1ad0bf15da81aa56b739fee283523485758adf266d787bc8c165a78da059210

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