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.10.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.10-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

tokie-0.0.10-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.10-cp314-cp314-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tokie-0.0.10-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.10-cp313-cp313-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tokie-0.0.10-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.10-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tokie-0.0.10-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.10-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tokie-0.0.10-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.10-cp310-cp310-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tokie-0.0.10-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.10.tar.gz.

File metadata

  • Download URL: tokie-0.0.10.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.10.tar.gz
Algorithm Hash digest
SHA256 6333aa7bdd5c0056f83f51d1768fe0b4c41fdf1206a590a891997cbe8a7216a9
MD5 54259b93e17b79d30955af8876292fc3
BLAKE2b-256 0bea00ee6ed9b873b3f11ff3ddf75eb4c6e22813eff86affb6aa61c57522ba0c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.0.10-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.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c517811de6a9f4ed230619317f50e1c9a5f2bc948f11f95251ee93cff3c67cb7
MD5 ac14548d6cbae8fca3c0e141b645d9ea
BLAKE2b-256 62880da7795e99f373a63a52ccf2afa055032d3e6aabbb8860f7ffa7a64504aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 84d457a1bba82561ad618fc227b3f93e27f3cd6e9248a23c4406b81318ce64e5
MD5 59d2b16ce1bb46307500c8c7237786ae
BLAKE2b-256 3064795e8befa06fc7dcbd12ce1b63bfe9bc50d4a5d4c6742b5bc7383ebf81d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a96450b25adad9e71466e16ae77b4aa36a00ce0d5be0d4af6dc6e0bb82b361e2
MD5 1d8857ce1dd06d29118c5083b60c21ee
BLAKE2b-256 1f8c34acdcc8fa973bac37d5e01505bf6f24353ddd22afca9e848283a6a430a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d0d40b2818c9f8c30e5e2adddadb55019b8a3ae7b34b8d4f898124308923fdc
MD5 d11d66c530982d7c076d030fbbb9c798
BLAKE2b-256 32d074fc6f80ffcb8d39cd9ef0a7f000d118aea2db1c91c299008437938060e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bce1191e38a8d02259aa010b88f394e712416208868acee15aaf7e3f48525d69
MD5 9f7d0b5b4a7f494312b929e8bd2dd70a
BLAKE2b-256 e208b73ba4246d604421e75749f1c01e3fbf4f50799f8c9138abd4bfb9be1a69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e261220bb8a03a2276d2d501fd199df5a6e882894b1c0340a07f6ba5db6c96a
MD5 2bbac3fc804f704c9c7f4879cace4fe4
BLAKE2b-256 829f5f548d1eb97c152d0b7bbdc36b9426f97483910935e97cc9770f2bd12e25

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.0.10-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.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 37bb978ec99d0dce405ffdcae8bc3e1e5da3e3201a9036b701ddb20cc1169c1f
MD5 290fb4e99dc71fb794cfc7a6b31d61b4
BLAKE2b-256 acc5726ed23e7c14dc58fefde38f54200a990a6e9e353d8e0cf3f40824adc434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b860e80661649acc19649b495a6505e653aa2ecedf6c5ca8a93812b68ae4d8b1
MD5 b50b7c30cc756f9c46e0db17da3f878c
BLAKE2b-256 abbbf7e75d6f6e801e1687f54c1765b1e4cf8a0e2cec13e2e9119f878292f398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60a750d991716e16fcce8b1716f28d0fdd68924ebf87b26fc15af3b43f4b2df2
MD5 798ca37662a87e8fb4581474bdfa2cdc
BLAKE2b-256 047cffb15e7fd0e8b9eca6b4d359d47518c34c9013b4a0780320659b275d7509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02e8d6be8062d253960e89a59090fee74535c825a577c900c50a5b47b2413d0f
MD5 67945752479c808643065b3054810975
BLAKE2b-256 1be2557c1686825f289e72a5ecdbf3575b301f22d4322e55612397cd7bb94906

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00a985f7ee7f3773b1ea181d79ee9bd823860aae2797d0063fa31c9f23444e72
MD5 4a2eba6b70df6ad3ec5da62b746b0ea8
BLAKE2b-256 8b530bd8ef223b5f52228be6616815199256c7ea2fcc573cec6bc6bcf1afd077

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.0.10-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.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a399078a0e17a0df7b381ec44c9ae632fa99c0e116c5252bb2b99f34f6db2e5c
MD5 a0271b6be622f6df44aa86fc59c8aa72
BLAKE2b-256 aebb40eec34b7e703fd383d2bee5f36b692a45c4befac3bc020f64225f6615b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86db7abada9ef77d673ae760e937d6215aedc3312229b2954a4c62f66b59797b
MD5 760b0da4cdd7427edfd4457a27b733e8
BLAKE2b-256 f43d7abb78a99d7ae881fd6e0cbf43685df9d4e985c2cc6cd1a6d3909ee079c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0969b7d168c1f812ac95810a23b1d9917cb4bc949c76485e913c73bb7e0de50f
MD5 9866fd2cbfa3b4738c0b374a6c321ed2
BLAKE2b-256 2d07692eb9884c6756198f7228e79a580953699fa15841276cb91377a2270a93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b126a9535a9debce71b65d508fdfff28e0bbe151d7b255baf239a14d395b0a3
MD5 205ad1d2d9262749f9728bea41d1120b
BLAKE2b-256 f46e8cccd2ed7539ef04884983bc5eb92473470045bb500dc265dfefcd86a635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 792079ab39712bf2bbbd6146039191d0523f67266ca98f97e94203e5071b5548
MD5 0daa13fdc469ae106b3f83603313a884
BLAKE2b-256 9a8174692d64e7d1b64bae59f03b3521c06b830e2c3f9f2b1898abeef63abbf7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.0.10-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.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b71c92febb8122ad7dd9fca9eecf1bb3070171525e27797cccfa665d03d9a42d
MD5 e1f88f3f9a2ccb3ed7ec041ea3cd10ad
BLAKE2b-256 8fb03a2e2cc2167bc97755701c506ae1ebe0f7e4557e84f102d7cb7d56f4b7c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bba46af6a4427338f624f90e2d65405a07261616bb8c7698770c83fe39cd6577
MD5 ca7313b64e889be78dd9c3c79962b1a9
BLAKE2b-256 ee1db83e7c4c9ec2de0be9ba02ba9d244a8da5c569000d44ed20a686795ce6ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcbfcf10b8abbde08201f66484e43a8febfbfd66fc718d291f1bb2c82e8f2f06
MD5 155160133f25f3bbe06449e6d165d013
BLAKE2b-256 8e462cc8af76480c9d7ab81e12b679dd88d06db87f0f493ca85ce1c509385706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aba89b0f6a50d2af393fb1d07fce44305dc36f666f0bf0643b935c8a1301879b
MD5 fc60a32f27afb0a5db62371d009bdd7d
BLAKE2b-256 a450e4773d7a939a961abafaa75dc5dfd079453891e83811857fb6f271f09ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 435ce67c7703cd610353bb455cea8258c6734c26d56539f4b3860efbebed373e
MD5 8663017bb0a94dfff6c9642b86882e80
BLAKE2b-256 244d6a17a48ef7fdd489e5aa7cf27d7f08297afda1ac2c93359b2874857c8260

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.0.10-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.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 471c8b4d6209b88613fcadd33f7e993332e5e0c404f70c1571a88c8d5e3b332a
MD5 571efad7c31772937fe24c65bc116694
BLAKE2b-256 cb8083a26267eb4300b99b28e98442cd9f4e1753d92b36544bc7542005e11abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c3b569583c727369c3c818a11acfe5f5e9fbb1cd403199a3cd1318f4b2f319a6
MD5 62eea3898937da9442e1b3a02dd29a7a
BLAKE2b-256 88abbb43ef1a1cd39f4b725c29fb07a33e9263385e922333306a53eefd237376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 031de2caae9274d72bd8a956ad6156a6408df8018e389fb9bb0f7787dc94c3fc
MD5 f8c56dad36dbf3d3860932185313997a
BLAKE2b-256 7606c967e13c90d70e24dc7cf7a647f2800329a905a034e024ee2cc271f18e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8030ca4cc4756bed147b7bc9bdd1564ebf1ba9f03cc1c89cf3a172b48fa5f91
MD5 05ae894b290297d596dbb4f05ddc6350
BLAKE2b-256 29b01548995281c5e8eda2e7402533019b7057370771fbc314fdb8246549e58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.0.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c88d5106d0cc0feb0b1900b5b1b53a62ca3ccc0c96b4a588077925716a3eb64b
MD5 debb65f42daf53b681b6f2595830206b
BLAKE2b-256 816f6df4fced69e1db91824988c8cc2ce014a314f1ad615a3621a65e9287382b

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