Skip to main content

The fastest semantic text chunking library

Project description

chonkie-core

chonkie-core

the fastest text chunking library — up to 1 TB/s throughput

crates.io PyPI npm GitHub License


you know how every chunking library claims to be fast? yeah, we actually meant it.

chonkie-core splits text at semantic boundaries (periods, newlines, the usual suspects) and does it stupid fast. we're talking "chunk the entire english wikipedia in 120ms" fast.

want to know how? read the blog post where we nerd out about SIMD instructions and lookup tables.

📦 installation

pip install chonkie-core

looking for rust or javascript?

🚀 usage

from chonkie_core import Chunker

text = "Hello world. How are you? I'm fine.\nThanks for asking."

# with defaults (4KB chunks, split at \n . ?)
for chunk in Chunker(text):
    print(bytes(chunk))

# with custom size
for chunk in Chunker(text, size=1024):
    print(bytes(chunk))

# with custom delimiters
for chunk in Chunker(text, delimiters=".?!\n"):
    print(bytes(chunk))

# with multi-byte pattern (e.g., metaspace ▁ for SentencePiece tokenizers)
for chunk in Chunker(text, pattern="▁", prefix=True):
    print(bytes(chunk))

# with consecutive pattern handling (split at START of runs, not middle)
for chunk in Chunker("word   next", pattern=" ", consecutive=True):
    print(bytes(chunk))

# with forward fallback (search forward if no pattern in backward window)
for chunk in Chunker(text, pattern=" ", forward_fallback=True):
    print(bytes(chunk))

# collect all chunks
chunks = list(Chunker(text))

chunks are returned as memoryview objects (zero-copy slices of the original text).

📝 citation

if you use chonkie-core in your research, please cite it as follows:

@software{chunk2025,
  author = {Minhas, Bhavnick},
  title = {chunk: The fastest text chunking library},
  year = {2025},
  publisher = {GitHub},
  howpublished = {\url{https://github.com/chonkie-inc/chunk}},
}

📄 license

licensed under either of Apache License, Version 2.0 or MIT license at your option.

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

chonkie_core-0.9.1.tar.gz (49.5 kB view details)

Uploaded Source

Built Distributions

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

chonkie_core-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (390.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

chonkie_core-0.9.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

chonkie_core-0.9.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

chonkie_core-0.9.1-cp314-cp314-win_amd64.whl (222.2 kB view details)

Uploaded CPython 3.14Windows x86-64

chonkie_core-0.9.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

chonkie_core-0.9.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (364.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

chonkie_core-0.9.1-cp314-cp314-macosx_11_0_arm64.whl (332.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

chonkie_core-0.9.1-cp314-cp314-macosx_10_12_x86_64.whl (347.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

chonkie_core-0.9.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

chonkie_core-0.9.1-cp313-cp313-win_amd64.whl (222.4 kB view details)

Uploaded CPython 3.13Windows x86-64

chonkie_core-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (384.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

chonkie_core-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (364.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

chonkie_core-0.9.1-cp313-cp313-macosx_11_0_arm64.whl (333.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

chonkie_core-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl (347.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

chonkie_core-0.9.1-cp312-cp312-win_amd64.whl (222.8 kB view details)

Uploaded CPython 3.12Windows x86-64

chonkie_core-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (385.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

chonkie_core-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (365.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

chonkie_core-0.9.1-cp312-cp312-macosx_11_0_arm64.whl (333.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

chonkie_core-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl (347.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

chonkie_core-0.9.1-cp311-cp311-win_amd64.whl (224.5 kB view details)

Uploaded CPython 3.11Windows x86-64

chonkie_core-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

chonkie_core-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

chonkie_core-0.9.1-cp311-cp311-macosx_11_0_arm64.whl (336.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

chonkie_core-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl (349.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

chonkie_core-0.9.1-cp310-cp310-win_amd64.whl (224.3 kB view details)

Uploaded CPython 3.10Windows x86-64

chonkie_core-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (388.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

chonkie_core-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

chonkie_core-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (390.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

chonkie_core-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

chonkie_core-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (389.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

chonkie_core-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file chonkie_core-0.9.1.tar.gz.

File metadata

  • Download URL: chonkie_core-0.9.1.tar.gz
  • Upload date:
  • Size: 49.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for chonkie_core-0.9.1.tar.gz
Algorithm Hash digest
SHA256 f5f650af3fa309f420339984337b7484ccbd8b4dae6f097d59a11f90402954cb
MD5 2ae4125eb3bde51c9a2c27a13134eddf
BLAKE2b-256 35e2d8bf503f55a4a6657125311c75f392d1e90c81003597501b2175d7926cb0

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff9e1a74002dead95fb954723824c53418238c8a5bf4948dba154d9e7bb78758
MD5 b89fc5a43b2e07ed223c0cfbc0285839
BLAKE2b-256 375e4b7d9cd56a6ca44665db97b994a88b1e12c5a6e9120be364c6df9394ec3f

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28d116887faa1a6cce42a5f6ee9692e6a4b5a5d13f4a8978ea3f6e7978bec8df
MD5 3c37c79cacc5e270c48e092216fd6711
BLAKE2b-256 fd589856fdf52406f8d56a44dcbe61261d542fb17f27a2793584d7bf9599e268

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61c49706f6677a8e09f78acc4e401d27af490b5db5cf8f820ac73e3206681107
MD5 1d033eab0bb7d5fc5788ac525f969d7f
BLAKE2b-256 6c879a7538a1ee8fc7207af8b9e5d36d65d59cdaba1149b902d0301b2af736f8

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7da9626e130b5637171216ed2d8471568e3e70bb52ef4a2b1b9bb24e44536dd2
MD5 1900bed8bfe4902eda06348ded920dbd
BLAKE2b-256 52fa02a4818e32801e3bbce60c8d3d2ea0ea9aa839b42ba097278f2271b1bb60

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b84075dace6249e9bd315cbe06867b2d2f0357fac91e7bc50db66ed5de1dacfb
MD5 5fb0801c96994fcb29645c9f48017790
BLAKE2b-256 49d477e85f40b6e8ed7f3d55b902ade9e4f7582cfbf5e624af3fbc77d544f1dc

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac175cc2cedaf5cc1f7d6835dc2e0209fffec816732fbb5d555478b1198ac297
MD5 bc534ec5cbf767281efb1392c7357e74
BLAKE2b-256 5cbac4de313fe165554f3d92679c99779947ea112a510d741385fb7666f4664f

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 876bd537bd9430fff99c8c36a6ec40eabe880adc30a9eff521e5a3cbf3331daf
MD5 172c2f67d8ffa07a81aacee0f82a2238
BLAKE2b-256 2b21e1c5b870eaf58af5e84cc71e3a056aeb618c284a8abe6627bb84e7112b63

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7f31ef2f26e678abc8006684e11f0b4f4c92c310407f27c006257724fb283e9
MD5 bbc1219b6b34ee289432e0072725c0a2
BLAKE2b-256 98d8980b868aa6f2e483301d99aa3911308b8746cd3327c64943a1f0a887b9d2

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04e95b4689c9cbc0f46a1d4ce0291eec1169596131dd20634df421aa34216815
MD5 42896cd5e09925cfb71c089c0c4766b1
BLAKE2b-256 6c362382e6aca63cca7cbb7a3a8a86c6728068ef379af60e0e86f623cdad70bd

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 affb3baf441c2052b786da88d532652598f82ffba0b5aaa9fa0fdf433f04c022
MD5 de81f90a23489ac7d6893c42c5457f1d
BLAKE2b-256 429d86ea238a71ee8ee639fa2f6e691d1492de11ab3285eb920a0880cb92af7c

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90bb44ba345807e7a5688b4ed48dd3a61d12ad65dee65d85d5f0676cd6eb2059
MD5 e58480cfe0109bdf5a9880343d99de92
BLAKE2b-256 adafccc743f8ba686ccdc1ad2287095e873a78e5810701f10290d786f8e7002c

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa614028decc321eb2c87574e487859922de498423ceab00d2f3b49491e17289
MD5 0efc03de92229518e90ced47c2a43753
BLAKE2b-256 7e3fc4281ebfd5ead361523348becf46551c671213dff4560938f20983596b36

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf49dc291a5aeecf1b5c713b72397a8be8d2b2de677d81ce18ba313cccd0e8c3
MD5 f38dc1513114abda2a712f80578c216e
BLAKE2b-256 4d10ebb36bd8296fb94f4a7142dd0c0a01fd50d9c30650a6672441b13322917b

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c64d4fd487f8f6b225f1e0ce5495c849333a1c51b90090964fbfbb411d627da
MD5 319ca9926f9e945fb28f9670a779c9e1
BLAKE2b-256 c69d8eea8bf16a417303d783a336f0ee8fc40f396e1eccb956efb8d806180f8e

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc7b5cc9a33891f8cf69f254a2388f1fd017c658f706622f002a5fa83c2f2886
MD5 82cbdf02336d563dff49da34428073fb
BLAKE2b-256 05ee988beccc9b97673d2b91cc4584b189f2e05b21e1900eb95c2b1c91a0f5e8

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e259145be19eca18b0a30e4ed5c82c857678113ff23bb9d6d3f2555f9fa5a4b
MD5 f5ba2dc916b08b0a4cc0e44e04f12f2b
BLAKE2b-256 4c978f448238c73770de9065befc1dbeeefe8cba290c0d7278c875922434b0a1

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 563d5dec72d1bc55e037eba1fb06f6177d0cae511d891c7fa7f91bf99db41a47
MD5 93e91dfc0bbf62b1c4cf93e2e7ca6856
BLAKE2b-256 949391918413c8dd3f7a223ef244de57f2a913f8e1f70bdbca0bd6be80ea8b3c

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 beb3478d82750a1a0d4db6e82ebef2cb2fc570fe572f299dcd66a52f6e79d446
MD5 efae70119782af6c79917496f0961ee5
BLAKE2b-256 aef9ea4a8f51cfaaf338ed433ae0933e2b97dcdcbf9dccc4ab0dac361b5a0eec

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b35552ad66eb744b6564cad63c3a706d7549604fd06da6e3098f2eeffe50115e
MD5 e4991fd966096e685db06f14f9502808
BLAKE2b-256 13aba0da526417226c1386527b0781e8b0c40ba0d3bf11d56950821f891d8375

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 492918991c9e8e388ba4d12300d5f31f0e8f5f5a1ba54e015e90dddc7878b02b
MD5 a76c778011c3a5eac0f8f63c4322117f
BLAKE2b-256 398f2199dcdca8129d2565c573a928319d73c77771a7926df1633bed3a9317c3

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc4abad52357f7ac23f41608eed4605c319511145cd1e0eef9afbc340d86dab2
MD5 b0dea265b1be66cc6840513ef7caeac6
BLAKE2b-256 d164a32dac4eb44adb6fa13707681305f8a30ac3f825aa0bdfd8af5577e309b7

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5467eaabd56489ad0337bceabffce3640a1ecc11866eb071ba253a0199ae3e78
MD5 a0b680be6ca7ac560334d18ddb3bf321
BLAKE2b-256 f3a6283d851763a6d5080b64a752a6bd087f51809a29100994bec6da8f61f788

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2f7130af733c9c7399dca319d14821acabdfb1523d03a24e061afebf421cfab
MD5 2e0193738578732682ac880382d86e02
BLAKE2b-256 cca3b8ba1545b26430994483eccce6d93188277e42e06fc8d46795896d47247d

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cad71a2013f88b3b1f234eda0b7c13cfab5f35432daec985e0dd7572c0a20fd2
MD5 1fb3713d743574662d688c342d672db7
BLAKE2b-256 d9d6ac82d2398c1273c6a121a056665ab505d024dc7d0774127d23715e41e2c9

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4d7c60696aa7e8f099dca9d6efebc28355e8089584fc0113b119ce0d560d2760
MD5 e05f58c4b1a9406d8a94ece1910b5f6a
BLAKE2b-256 b319f9871c87ea44ba134074f62cd2d328c5643b42632d19ddeb1c3f16811fa9

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 242eb454c7deec9bf3ac4d1c666dfb2bf0fcc083e2eb9d59276ee6cf03a5aa56
MD5 cbdf2bfd486fc27a9f22c9f43325b0d8
BLAKE2b-256 0ce6a6409f166d6ee80cfbe42a43ca89c2743b23a01c7bb94a6fbc4076aaadfe

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec53bd3d3188bb901345c94ce2e1ff420e96280a9e3d545885f68820c6ee3ebf
MD5 9cf4d44b2f9cc28558bae9bc5a437952
BLAKE2b-256 abcb4589887d81fa7c09957e650da3c2bb7c4fde28ce65ec440af5aa261e4556

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b40c4048ae8007e6140ce0e343c858bd766a2a5189c4bb89a76a8faff0f3f027
MD5 eb6b94f343b9683f31eff6a22d2b040d
BLAKE2b-256 b52e2f837c2591c55cdb0b7e83d16391e724ae1d5602c3d5fd5609a1d4927278

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 688dd7f4dbc4576fcba670e39a909492e0a52bc2e4b870f147fa036e4aeff155
MD5 3a35f5144246846d1634266455bba812
BLAKE2b-256 884c494504eb0b1b6e197019d3c8a27282fdaa1d2879e395cd227f68c68b1825

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10a2a322e5c211cd0b4e5844138820b03791a496634765f2e7e5e3a4fd4172db
MD5 a4cde2e8d19014640467d2a1808a8598
BLAKE2b-256 feb92e2fc83249cd4024299082d27530ffa6f5b5fd0e1c42b7c35e7ba65f3a56

See more details on using hashes here.

File details

Details for the file chonkie_core-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for chonkie_core-0.9.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c36c635b7f75e5893d19c0440834b3dbc4fbee40ec5248a48682ef415dd9887f
MD5 66573e3c653d0d7126b3b3386d9712ba
BLAKE2b-256 6bf6ba791fedbca7b89edec5cc33d05a91d802db52aa2fafb6437892c00bcea4

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