Skip to main content

Blazingly fast tokenizer — 50x faster, 10x smaller, 100% accurate

Project description

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

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

tokie-0.0.10a2.tar.gz (135.4 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.0.10a2-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

tokie-0.0.10a2-cp314-cp314-pyemscripten_2026_0_wasm32.whl (761.0 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

tokie-0.0.10a2-cp314-cp314-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

tokie-0.0.10a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

tokie-0.0.10a2-cp314-cp314-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

tokie-0.0.10a2-cp314-cp314-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

tokie-0.0.10a2-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

tokie-0.0.10a2-cp313-cp313-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tokie-0.0.10a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

tokie-0.0.10a2-cp313-cp313-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tokie-0.0.10a2-cp313-cp313-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

tokie-0.0.10a2-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

tokie-0.0.10a2-cp312-cp312-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tokie-0.0.10a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

tokie-0.0.10a2-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tokie-0.0.10a2-cp312-cp312-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

tokie-0.0.10a2-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

tokie-0.0.10a2-cp311-cp311-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tokie-0.0.10a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

tokie-0.0.10a2-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tokie-0.0.10a2-cp311-cp311-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

tokie-0.0.10a2-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

tokie-0.0.10a2-cp310-cp310-manylinux_2_28_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tokie-0.0.10a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

tokie-0.0.10a2-cp310-cp310-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tokie-0.0.10a2-cp310-cp310-macosx_10_12_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file tokie-0.0.10a2.tar.gz.

File metadata

  • Download URL: tokie-0.0.10a2.tar.gz
  • Upload date:
  • Size: 135.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tokie-0.0.10a2.tar.gz
Algorithm Hash digest
SHA256 4756756a84011d21f891ca4c71e0773b22cf55fd50c0264091e215c6fb7304c8
MD5 f93fba42f86a8a1d798c0250ae1f1c5e
BLAKE2b-256 7a40c6f022e37c1a0593b7515857641d77199ec36fb0bb0506030ff44583564f

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for tokie-0.0.10a2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6de3fcfd3a31fe6dda17036f7309d74dca5143cfb7908876c77fb6c7f4660b19
MD5 4252c381f43f5e0299e52ae09d18350f
BLAKE2b-256 049159d6a9cab6876090ac455c75841c65b4fdb0d716dd963c4c9d9e72ac9679

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 0b150b6639717ce2c6597d7f5a12d398d7c3fb6119f9dfcc08c99963ec66c845
MD5 be36c480f853137c92c0e1f1e8998c53
BLAKE2b-256 b524f894455cb0cab54d63c1c3a6889f85aab7c1a31c43d50b4a82471496b85f

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b57b6af414d920849f6df3f6891a74ceee82d997a9d71193b1c37c47e440e144
MD5 9b5bccdf5320b9633135fa7d9ae8e8b6
BLAKE2b-256 f0eea0d10e91e0cd783be649874fc786f7638fc0b6a346bc1a3618f297ee0951

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49200c7fe231f26c2691ae6f86e5801e1b513be759d2227f6cb7776a24b038bc
MD5 be61d4a671921280f09d94b53e0d4799
BLAKE2b-256 dcfc9b5a8f1a8c3b9b103d37baf3d37c0a1bd7ed9575d455844563f35075c652

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76a517cd3d9dc1680374ae01ab72ee24e6a9f8db4adb19787c902b93f25ddcf6
MD5 8b708f81820217d4970a9dced7d13887
BLAKE2b-256 2646cc23d7d899176e22ebc9f7e12583d82f090673befbf557ca6b1f403764a5

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 260396225e925fd7dcc3678a144fc492027480e419428e9e1f00051629f0732a
MD5 3e6be34ec5876799841061491fe97e9a
BLAKE2b-256 865e6dba6cbf1b8bee7d3092aee27478711270e6292ef8be61c81e53561b0c23

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for tokie-0.0.10a2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2278ae6707d070c81d26d2dbf2cde7412982c1e8f4d19b13ff090f6364f17ce8
MD5 2508cf132f424c3dec22128a106d5064
BLAKE2b-256 4318eb8d0a16eaec6c71e1e8850e7bb33fd423a7234f9f570ccdeccc9d4a873f

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 069307ef33f0ceb1e79f19095f2672e0e6dd1954cfe641f427aed47551c874bf
MD5 4c0ceefaa293aa388ba36686fedae565
BLAKE2b-256 9614993ab91abfe0741c664d836a5066a77d8210f1c86563e1448a70ba8acd2a

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f62085c60a8106e0dfff265e94db7389d9c7e86d948f2aed3bb5ffd82ebfb13
MD5 df63e509fdbe62a6eec4b2413a5d0fbd
BLAKE2b-256 589de677bc731ce90cddd6c3f24ede0a2852a87d0b8d66f767c1f5e2a3382a29

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b695409f9f67bbea53b8b8e9960389bc2e291646d48eaf2e573045a0a03ad56
MD5 eaffdff2e1748bbf8439c7d87ccd53b4
BLAKE2b-256 9e44e53ea8b15d1db1f4ae7483612c6bfaf93fd7960a8bcb52cbecba493d6a37

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c697b6d57bae7a6a4bfdbb741038fcbcb261bd1059e320a48b9287f7368859f
MD5 50f78bd711bd8c43a863a9404827ad49
BLAKE2b-256 044f542ef4c1e32a5ce0cb8c4de70abf04ed776fcdd8e24db442062465a014e5

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for tokie-0.0.10a2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2b7d5f3fc3c1bac897b560aa634ac648d28e0ef195c448e0d67aa7de1f878ea2
MD5 b0c92ae99652b6d0c3aa371d19999edc
BLAKE2b-256 a683ef6bb3758d10482f777ee2a243cb3cfb97972477020af9db05df242ce35d

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d101fd82f933ab383274032144d5d427e406197f641949f01b85a6fbeec310ec
MD5 2aa77053e5cc288c2df2558f53b36e13
BLAKE2b-256 1de88646acadcce16c8d365f14eef133a24623e753976b0594033d862ab05fea

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b802993da36c08d3f2d7e0048384b27922e0cf5987d9e7fd8004bd856f4b6626
MD5 1cdc61f947a96d8319a4c6d17083569b
BLAKE2b-256 881e8f1db17784b8367b8ae3d7d25c1a5ea84ba79c7864ab7c165c6c5e993b67

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cad0b0ccfc8ffb76143bc1653db3a709ecb4541bed22716c86a8062a42d0f816
MD5 24f91fe3443c9db3c047ee9a210b8748
BLAKE2b-256 aebf7f3487ad8e0c217f444d50a63855d1d626f8c9df968f90fe4d17d471428c

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fe62e30b0c25525b9f5ddd116e1d01e2c7a8ccd9118592fe79afa8ec2dc656a0
MD5 27eb6b3cd27e977149d8af8206970f49
BLAKE2b-256 f972d4c9c783bef86c299be46287b9c1d6cfc8a01fe467cfaac1d777ba500ef7

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for tokie-0.0.10a2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 617e6a8b3eff73849921c76512ccffeed1da187bc33f3cc82fd75012fe6d53b5
MD5 66d9db16ba417d3075f06671cf9e37ab
BLAKE2b-256 adf0fa21132682f218519b5f727d3ead728cc89f74460f8bf09cfb35b974a784

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 984fa827d1c34d729f76a84342b6693b9c77d5ba1403d2f9579c38dcf4510d12
MD5 35748d997804dcc1471f9b105320c6e1
BLAKE2b-256 a7874661d321ea20db51bca1594a00116fc68e299f4c4b696ab44c08849e1cda

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b84f72441b6ca15118253962d5b83ffc7a7f347282da345b6f3426cd2cd829e4
MD5 d623bd307d568278884945e8f03a0294
BLAKE2b-256 636cb83bbe0f602787019258ea56abe363c0e7c8dc7047734e3525bf0d109576

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f51eb3c9beb5c38c6cdda942e9ee4c3404ec30aa56134a10b1a26bdb63c6e542
MD5 06f40f7973486b8b17ea628fa875f9e7
BLAKE2b-256 43c90dee13df50f3f761ca0003c6953c640ab4ed262b911de5251d8bd06d19be

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 538326a8c776d361b281cf542882fb95ea7f93ee6b938360b2b830047f7dbe71
MD5 c2b92739343daa808736b925c3afcf16
BLAKE2b-256 8646b2982babd4af604eb12590f31f83f6882cf6e94ea97ad202515e42825cb2

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for tokie-0.0.10a2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fd08dab971d681b96bb586f4ab6df007e85215121f38324200caba183a985af7
MD5 41b31b98251a16e37eaecddc15e7a40d
BLAKE2b-256 eecd0108976a9e9139ce3f080a18469a3612ff0d10582f8958ff65c2e55c4023

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c15e08186c563b32404852579827b7a588fc7940628bf21312a21c451fbe7da4
MD5 563bf134f947e858007c4a2e7b3bb08f
BLAKE2b-256 bee29cc12a580c001aa6ef9e7f159f57f35b9c86845020458bb4d75513538004

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d5b19d986de5644f65a817f191b8993915dc3d53c8887d2e0da3cd85bfc102a
MD5 6d83800437936e35720456138e69b7b6
BLAKE2b-256 18bcb183923f74c24c03aee158d5d238d8e4ed532cf527234ef663683a9e919a

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6bf55ed59e660553468d4ecf1ed3c35e9cd732376a191e4d27b6c9eb56db459
MD5 be88e8ec6afd30d45855e414220f6d2f
BLAKE2b-256 8a06df59e4bc9d830f63e7fd5207012302a4e579a4d535b567f4802d49868639

See more details on using hashes here.

File details

Details for the file tokie-0.0.10a2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tokie-0.0.10a2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9b917be7a7047ae6da2f99ee0687e394ded6f19f66904adb630bb0ae3610371
MD5 f8c67a46a26743f5d77a1d88142883b4
BLAKE2b-256 bcad164d09564f743fc67531b24c33407c622a0514e7da288ce9a183bb963b0b

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