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.4.tar.gz (280.8 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.4-cp314-cp314-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.14Windows x86-64

tokie-0.1.4-cp314-cp314-pyemscripten_2026_0_wasm32.whl (958.8 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

tokie-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

tokie-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tokie-0.1.4-cp314-cp314-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tokie-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tokie-0.1.4-cp313-cp313-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.13Windows x86-64

tokie-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tokie-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tokie-0.1.4-cp313-cp313-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tokie-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tokie-0.1.4-cp312-cp312-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86-64

tokie-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tokie-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tokie-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tokie-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tokie-0.1.4-cp311-cp311-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86-64

tokie-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tokie-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tokie-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tokie-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tokie-0.1.4-cp310-cp310-win_amd64.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86-64

tokie-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tokie-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tokie-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tokie-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: tokie-0.1.4.tar.gz
  • Upload date:
  • Size: 280.8 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.4.tar.gz
Algorithm Hash digest
SHA256 c8707df026d79a13228d410d607fde0dff5860d0f45ce11d89d85fb0a4c2a114
MD5 388fb495e54be1dab132dbe91900ef31
BLAKE2b-256 187eccb0f35fcdaea03ea4db7b4f6066aeec63d71bebf83d8181cda2fa320661

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.6 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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2d4fb5a6b9cd4e137c3e6429129a5901909414552f35236c213668fbeab6cc77
MD5 b67ee7bdd4843fa115a990374b130d41
BLAKE2b-256 859dd727a3a0d05bb78cc839e77a46b00bf8542769384ac6aa64c953314d5bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 9b90d2ac37476497b7f5de25df4208b83d6a4a3cf43c790b7b91dcbc5419da8b
MD5 8d181ddad9ca924df821293b27a6eeec
BLAKE2b-256 7836b97834b2152c24e6c5a5aaa39b6e4659105b3b3c472877e354d19baf3237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cbc7b468fba5d5f506b85bb4319ffe825ff2c328aaea3c8ff57a36740af00e6d
MD5 fa40a209bb7a34ae1211ff123ec2ac4a
BLAKE2b-256 6b3f8267161d70197f25ebe33e01907cac6a427228357b4ff9653900020f0e1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25344e4c02e47fc8cd2a146b1aa4ea5286b478bcbc5b109b1ec1da8d0ac17ff1
MD5 ac5275c212a0521bc0e845dbdbd1dff0
BLAKE2b-256 4c42078cc772347e8b6279fd9b643b5c7fb47eb49fe4eef88e3b8bbe165bbffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55b80085348b77d7e783513bfdc79dd4452c0602a28e04907124dcc17cbed8e5
MD5 fe2f989155630831921166abbeff081a
BLAKE2b-256 e2db150c266d98d5093fb65c9d150c8594d598a2b2626e6c4b88907552659d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29013b3b7b6a6f3ed4b2e1fe35eeb4702236088c59bf137f8cb85954d69d5e84
MD5 46b7e0244e645cef9768d75e44b00b57
BLAKE2b-256 0f324a0f5a30c5f31868fe795f6230cfad64545ed4900ee98f9f16f688f9dbb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.6 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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3ded2223b0486c8cf7922b9cf632ff10ee334bb7c736094f257515115826de87
MD5 46253e3a4d633d967ba08963100552d2
BLAKE2b-256 5499d2444072b3ad7f2bcb7c40286e71d39f1cb968ebc52a90e6de31d5e5782d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b39bf238b7b89bce19fa8ee353581ecffed46a7aac038502b9649789854b7e51
MD5 42224bb82cc2219474adc2220bf4fc53
BLAKE2b-256 82453e0fb358bd6fc3a9166cb7472f48055d7e894188b6f7553ebbad9e4e81f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2c41b8565e22aa0692e4cfcab595c0fe8b7ee742874e884ab9df928aa16d70e
MD5 2f5f038705ce140c178dd1fcc01b8eb5
BLAKE2b-256 f06c114dfa287748d1bc32a0ff2ea56c24284a8afa4b9a1a391c65d2b20fed90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 199738e086f4a32892e651d9f98d10e606d12d581563041183e5c1b37a83745b
MD5 bc9950a0995f7e74e04e02ce20af157e
BLAKE2b-256 ea3f35246c2ea85eb773342c64521da2481b0ff363cf1b39b1118eb6ab1c2ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e28c1c825479c8783ef2917bcc75964113d16ece254f9cd83234d19f3eaf7ff3
MD5 d2dc7c3d0490dbe572cb56d9593eb956
BLAKE2b-256 96153fe8af5fe7ee607a6f6817e1119000b8bc828c9322dd68cccc724334ce38

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.6 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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b0d245887bb806c42593304abce545fd1e7808c091946a9f3923d9211e99f4ff
MD5 9b5a576eeb2d0442cb31728e4bcfd7d0
BLAKE2b-256 4c64e2bf4606adb89c942f72524b2a5a832cb6899676a623df04adaea1eee5b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bbab9991a569beb667a0fe5f7c5698050914a46c015d0d323d8f4ef9e8c8aee2
MD5 9819e972ac1d62382aebd8a8037ffd45
BLAKE2b-256 6266b630a22d546da4712765e0472c4dbfdf50dcfc77b821ad274b12ee7be469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eecd300fa19704fb3022aaedf8c1eafa9d9825c87ee13d2203e383bab4e764f
MD5 99359e1466ac4c7bb6df2f47929ef030
BLAKE2b-256 bff432eaa1aa37a5ad86244a1315096401cccefbb82c2c723b7181a42ee668e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ad390232d70e8e4b239e6e7edd8578e56433014ad496ea3597faa677b5e18b3
MD5 9e5b8b570b675ff6db6e429b3693a2a4
BLAKE2b-256 4a3fee12c8b77393ce6ceb5c465908b43ab96af4499fff88bff7e16f13022b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3105e5d0df6829fddc0a6761e726dcae80cb8b373f39fe6396a32a2014157478
MD5 5527bc6b57b534f16f5c4202c52b520e
BLAKE2b-256 7baffae60b61803429d29f0ab5d01e474ff8461496d91c6c7753a7cede5d8db7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.6 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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 885691c40fe47b1daaff1e7c9d13cc2f9734c8cd089a00fee5d05ee0f9a703d0
MD5 bb257512c97f4f5f57cd1e44286f1dad
BLAKE2b-256 91ed41aeae9d70bb7484ca4e4a9166d5330781b4a59b3cb8f1413a6b62e28204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d3ef8dcf454b1601d80ef8cfb5c5b86f89c8dd26f68dd05a5c25248872d20039
MD5 ad13f4a951842cbde5a318c8e97ee80b
BLAKE2b-256 ded93b10e0c2c753db3b85a55d891548796f2fc16e5000941167ff2c6f3c6428

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8a5b5dd143d807981711e973a9fff21a4fc48e472ef3a976054be04ac236a63
MD5 82bd967804c1cb1b02ff6de654266d2e
BLAKE2b-256 b004e447decd69987e3f4c00015ed4cd08106d851fb9ab2e9f34643d5cff7df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d06278ae88011f0fc6ff99d36707c856f633131f94dfc35f2033d0a71107d4bf
MD5 0ced1cb35ffd8bef5b22212154d74bc8
BLAKE2b-256 cab8cf7a51c9d08bd2e5f4f8510c4da20b558bb8056e215a6045333308c07f69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d922e3ba6635ecd513cfd6b8cb0969e88c0b329a41cbc0dd0c1a2c9053800f0
MD5 3b18ae80d67ebb4d2b8939c76ad801ac
BLAKE2b-256 19b653cd60a1182ce475812ae38ecaff15cfba4b447976920289f2caf471b14c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.6 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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0bc02cdd9bd9a15d997a7b5f0beb3e148d9c3efd5d949b9f51077f6c53aef6d1
MD5 c35ce9202d75a7dea100ea7ffb1d330b
BLAKE2b-256 5b0e5c6cf9a817513dcc081c922a333b0a54c2d9ad506d32ba2d31a1f864e40d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 440c992d28f457f79ff244f1b8291fa0e245d058f131619dee728b99ba7e5eb8
MD5 decbcc387d0c77ff9022fdd556067d8d
BLAKE2b-256 3ef5839989186caa2769936f1e0a5dac7d33e6d73a46a958a164f8292cecc887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 450e7270206afad356cad1e7d9c83cda98e5a0a8e633957df0abc484ddc08589
MD5 5cda9f8079407ac0f4c7077d3f64dac9
BLAKE2b-256 94b0c3bb8317d854c6da6a56f646bfd99ef7632c71b837462f06c8af15dbbebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 299a87141ad6802fb48c7146dae3496c3716fc54f99e2a909b32c742780fa03a
MD5 72ccfc351476fb4a0b0a12b580aa08ed
BLAKE2b-256 d03e2b23f018a1bced6603a049c2c73b6bf902da17a5956863847b81b06c2133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80ff46843015605d2c3e34889f68a370d41d0f257e0edee4a4c253916b9eb3ba
MD5 cdb389405027ffc6aeecac8038983ca4
BLAKE2b-256 b6f86507e5ef1fa3ccf8d8b453787ae5e8dd3214bdf925194442adad9b72e71c

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1.4 This release

27 files

0.1.3

27 files

0.1.2

27 files

0.1.1

27 files

0.1.0

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