Skip to main content

tokie

10-136x faster tokenization, 10x smaller model files, 100% accurate

GitHub · crates.io · HuggingFace


tokie is a fast, correct tokenizer library built in Rust with Python bindings. Drop-in replacement for HuggingFace tokenizers — supports BPE (GPT-2, tiktoken, SentencePiece), WordPiece (BERT), and Unigram encoders.

Installation

pip install tokie

Quick Start

import tokie

# Load from HuggingFace Hub (tries .tkz first, falls back to tokenizer.json)
tokenizer = tokie.Tokenizer.from_pretrained("bert-base-uncased")

# Encode — callable syntax or .encode()
encoding = tokenizer("Hello, world!")
print(encoding.ids)               # [101, 7592, 1010, 2088, 999, 102]
print(encoding.tokens)            # ['[CLS]', 'hello', ',', 'world', '!', '[SEP]']
print(encoding.attention_mask)    # [1, 1, 1, 1, 1, 1]
print(encoding.special_tokens_mask)  # [1, 0, 0, 0, 0, 1]

# Decode
text = tokenizer.decode(encoding.ids)  # "hello , world !"

# Token count (fast, no Encoding overhead)
count = tokenizer.count_tokens("Hello, world!")

# Batch encode (parallel across all cores)
encodings = tokenizer.encode_batch(["Hello!", "World"], add_special_tokens=True)

Padding & Truncation

# Truncate to max length (special tokens preserved)
tokenizer.enable_truncation(max_length=32)

# Pad all sequences in a batch to the same length
tokenizer.enable_padding(length=32, pad_id=tokenizer.pad_token_id or 0)

# Batch encode — all sequences same length, ready for model input
texts = ["Hello world", "Short", "A much longer sentence for testing"]
batch = tokenizer.encode_batch(texts, add_special_tokens=True)
for enc in batch:
    print(len(enc), enc.ids[:5])  # All length 32

Pair Encoding (Cross-Encoders)

pair = tokenizer("How are you?", "I am fine.")  # or tokenizer.encode_pair(...)
print(pair.ids)                # [101, 2129, 2024, 2017, 1029, 102, 1045, 2572, 2986, 1012, 102]
print(pair.type_ids)           # [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1]
print(pair.special_tokens_mask)  # [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]

Byte Offsets

enc = tokenizer.encode_with_offsets("Hello world")
for token_id, (start, end) in zip(enc.ids, enc.offsets):
    print(f"  token {token_id}: bytes [{start}:{end}]")

Save & Load (.tkz format)

tokie's binary .tkz format is ~10x smaller than tokenizer.json and loads in ~5ms:

tokenizer.save("model.tkz")
tokenizer = tokie.Tokenizer.from_file("model.tkz")

Supported Models

Works with any HuggingFace tokenizer — GPT-2, BERT, Llama 3/4, Mistral, Phi, Qwen, T5, XLM-RoBERTa, and more.

Benchmarks

Model Text Size tokie HF tokenizers Speedup
BERT 900 KB 1.69 ms 229 ms 136x
GPT-2 900 KB 1.70 ms 181 ms 107x
Llama 3 900 KB 2.04 ms 190 ms 93x
Qwen 3 45 KB 0.15 ms 8.18 ms 54x
Gemma 3 45 KB 1.01 ms 9.62 ms 10x

100% token-accurate across all models.

License

MIT OR Apache-2.0

Download files

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

Source Distribution

tokie-0.1.0.tar.gz (236.3 kB view details)

Uploaded Source

Built Distributions

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

tokie-0.1.0-cp314-cp314-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.14Windows x86-64

tokie-0.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (863.4 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

tokie-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

tokie-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tokie-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tokie-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tokie-0.1.0-cp313-cp313-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.13Windows x86-64

tokie-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tokie-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tokie-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tokie-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tokie-0.1.0-cp312-cp312-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86-64

tokie-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tokie-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tokie-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tokie-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tokie-0.1.0-cp311-cp311-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86-64

tokie-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tokie-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tokie-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tokie-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tokie-0.1.0-cp310-cp310-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86-64

tokie-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tokie-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tokie-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tokie-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file tokie-0.1.0.tar.gz.

File metadata

  • Download URL: tokie-0.1.0.tar.gz
  • Upload date:
  • Size: 236.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for tokie-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e0d31da0b81553f90377e6cf19a055e7f93ce7d48bc16c9537b42ca1fef774f3
MD5 ab7c5cdacc7d83b39bb30d594ed1699f
BLAKE2b-256 684ba0f3beddd55b0c6a0e59e56aabffddd96829533bf7a6a6dab1a990a46eb5

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: tokie-0.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for tokie-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e8decefeeea3e79555d21b576f98f7134c72c2c1eb6f80a0e2b641f33e79c458
MD5 abec776a468b5fd5f039a0f50929a3b0
BLAKE2b-256 e17a0fce4d7820a3d6fb520223e0c1d965758fe3c9daf164f6d738ffa79d32a0

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 a523024d454dc5cd3c34236a51c24ceb09f78a72aee99086f6f65c88b3d65851
MD5 0b37da4ff9efdc74471d50ea6fd3a04d
BLAKE2b-256 24950fdb698b54c813caf87a1b814fe58dc40b2121327b18bdb3bd8c95f2f460

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f6e143f8cc7c46bf44cb0636b78b8dcaf945258ca19d8432e73c788043090a8
MD5 e14ba40a933c186e555d6982470d1184
BLAKE2b-256 444b00f9114765a5e58a6795ab037a70d0b796135738d0df776afd7278e299bf

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 832ac72bf2f1961a9d85c69ed8cfad15f6e468e4e64368a816050331fc1e217d
MD5 abd7bb7fe2a7caaad9016f0df788878e
BLAKE2b-256 4f0d005519a7924fb532f88d1b03312f76a69bdc138a6c3b3c8de43914670aff

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95f04c46c53ca2ae79eb67acdbda6b655f8789d3fa57f9aefbfa878be574384f
MD5 4bd30825f2545928344450e7296b43fb
BLAKE2b-256 c7c1810cc4d771744ef449422bf1b9660b480f4dc244044d3a42338efa6d3fe3

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10fc4f1d2d5f544886c75d3078084b896de84a68881ba1cffa7008047de74bbb
MD5 ee3729f0b25c9b3e845eeb65772a1bce
BLAKE2b-256 864d5418c3f8cb9aaac685c1a6b1209a822c625dc85085b3cd128e75c3ac780a

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tokie-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for tokie-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ab756bc7a432e1ed124f3f1910503eb8d67e6e657012e19bdb0e2f247ee08e57
MD5 54ffbcddb8b73e5034e9501e6598e71c
BLAKE2b-256 201553a1fd5fac9810e246ceaf686ce1ed6be221a4acf30d90e12b6dba8d1612

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a35b4c8641c098ddedfa3779a81b62644ee749b30931843f098a44ef0a34058
MD5 681585ca2ef8937fc551c17f25c8437d
BLAKE2b-256 e6335291c940fa27b59f5ddc1dc83bc1110e047a31937f101242168ed92dcfd5

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3a702989a7c308cb8220e92e4a599e899ac88a6d7e76954ac7846e51a29671f
MD5 cabeca4a4435cb977a759dc5889ee787
BLAKE2b-256 a7f97be75c4bb375c590d425280048283453f524d875382df0b2d402a271490c

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d479ae1bcc1e67e32f7ae2843afdf3bc1dda288acf29f0bb21b67b65fdf0030
MD5 8e1c604215441d91ba3ecadbf7cd42bb
BLAKE2b-256 cf14633386111d7b9a956687e1ca326d40d6fa341dc0a89f603addc941de9d22

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 510f874eba69845e83846d9341c9f113441f0afafb3e99f18e497cbac544b815
MD5 1a5f61675d3fa77a3873f6505f10fd29
BLAKE2b-256 526b8eb0383286cc4ac4116faf4e5e0c6a10048d8d5f9d51fa04723631c5c77d

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tokie-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for tokie-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1a3ecb94bbb9ec0138c90c8589785e8f5ed52b2c3113453423d79e04098317b8
MD5 ea7ac6c42c7538af2cb0fbf4902bbd20
BLAKE2b-256 45b5c2692619766410b8b1cb924eda16a7e8b51c239208a8639d2970f33f20ab

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c4d52aab0c760b5ef61d006337efb9720f94a10f430bf97ae52d25aef999426
MD5 aed4c8d6c376c08810df8d974dda401c
BLAKE2b-256 a0ac71707bbcb1cd93ecd6c962097cb64827c04a1917e9561268e6f8d6d065d0

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaf09f0f3e4c0033dd7e4d54dad6465a0e464aca856a3444995995d1b2bd3c26
MD5 11c2dbb83a9c0997cd1164f7cd70ef59
BLAKE2b-256 7749bfa121590c95666d709018d415773db6b23af53cc7ea5aa7da32f14a49eb

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8bb759e14f0e16b07a5d999801c39ae80fe72db9db4f868842b2c501cd8e950a
MD5 013ca60821de24863495cd6d33a0b4b8
BLAKE2b-256 3c35e3048e5c13f31e2849503423a4e69661b9b3ba1ea43828b3a087a015db9a

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae61b15f789dbe82405ea1a39fdccf97290e30b47602ac83bb7d269424454464
MD5 8e593d8d5b1dd30a1b938166bef18690
BLAKE2b-256 ac509724c2e420187fde41a5d66cc4315830c909f636397b33574fe1e9e55ac7

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tokie-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for tokie-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3c4b6d14c8c47fd8a1a2046c1617c7b05d0e69cd2cedc1fb81b5e07b3d6e58b9
MD5 62c5b4fce51f4c7c37c3774b45701fc8
BLAKE2b-256 f316aab7a612f9654f5e03f0f9537a97f1074d3b4acb0a9eb6d391a49a0a5cf9

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ad94dd084a1ffd9341563182c17f16ce3c3d005be77e18cee46140ac67fc242e
MD5 61bf30179f24a3174cbd000a87ecbc68
BLAKE2b-256 81e9c2fd8d792e1d8a3223cf91f3e9dbdbc37aa39d2ab1cae4febb24fb8c329f

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62c7bdda6d5dd303292f5e68e3654845b69824e2354d41e6f37d679cc95d88e9
MD5 677c74f7faced85dfb0680bc041e3bd3
BLAKE2b-256 d79eab886c426fef7cba9b80aead30640b4c8c20cf95f6f7920c9f676279accc

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72bc86231c44a10657af63120edd62561c7b5c61ee8779982a823adcdf0059b7
MD5 b10b34b15e00f4e377f6f1d365d92248
BLAKE2b-256 1027dfaa73f1fef5421d6ad028968f681802ac8887cc7d12307916902e580f2c

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c7e99bf6c97fc8c0fd2c65683f577d04105e002c5a93631ba9273b24d1323cb
MD5 d004e472e87519d976fdab4278c492eb
BLAKE2b-256 5d396d7fb99e42ace8666eec57e728e0e5cded678fc7b34adc069fb15a3dd08c

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tokie-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for tokie-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 21eba590824774e9506b37a2b2f9edb5b312000a33e28b149b53a1938c75b1b4
MD5 2abad737ab75d854595be3d830f3046b
BLAKE2b-256 97a60b2a9f9bc1e2bfcb627607fc095f4aaeb3fefafe95fa849a3fc362ff7099

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5efc2c418588725d8afcfaf9e5e4d92288ac6ab6cd66ac4fa631a74bc99f3da2
MD5 2abbabd3068228a97452fd9b234c94c7
BLAKE2b-256 cc9e50b01a3c7a31093acd9fac7d1aa11e15034d6f8ddb0d471a01f202587f79

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f73bc3479f01c6e01f86a95ab46d1dda5619261ffb0d322ba6796366d328a163
MD5 c74ad01ee1287f1b37efd18c94a025e0
BLAKE2b-256 3de5954be41f448ff78d34e4d58d9a8b9ed4b0de65ac6e3378de34fe3f6d961a

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bea7fe86bed2c1f54b89c380d38e14a92d1f766313478a10eae707f99a2a425
MD5 9fde84f2665fd4c636a4d2e037cab9e6
BLAKE2b-256 783e8f1c067399d19adaa19fcd5fc16e727e12b78322ebd8f4ec7a3e80d5aa4e

See more details on using hashes here.

File details

Details for the file tokie-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0290eee4485ef1e4b6a93d582d5483d372864974b5d4b8c33785e022ec5b50d7
MD5 6fb8f9f94b4c4b2658d33f05cadcd8aa
BLAKE2b-256 d9677da7e50797711bc3f2ad04c11237b412545c07f4d0a22173dd8e3b2d947c

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.4

27 files

0.1.3

27 files

0.1.2

27 files

0.1.1

27 files

This release

0.1.0 This release

27 files

0.0.10

27 files

0.0.9

21 files

0.0.8

16 files

0.0.7

16 files

0.0.6

16 files

0.0.5

16 files

0.0.4

16 files

0.0.3

15 files

Supported by

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