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.2.tar.gz (247.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.1.2-cp314-cp314-win_amd64.whl (2.5 MB view details)

Uploaded CPython 3.14Windows x86-64

tokie-0.1.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl (878.5 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

tokie-0.1.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tokie-0.1.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tokie-0.1.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tokie-0.1.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tokie-0.1.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tokie-0.1.2-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.2.tar.gz.

File metadata

  • Download URL: tokie-0.1.2.tar.gz
  • Upload date:
  • Size: 247.4 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.2.tar.gz
Algorithm Hash digest
SHA256 a0674f0c44f5cae7f3a32da76c4924d5d58a5281e9e6e74a0d97a97f3b46fdce
MD5 330b7b16cd3f003481f151c7fedf41dc
BLAKE2b-256 3221ef972170cf8346b638aa954c2a6ea5e0e6ce40f6b417a371a847a198758d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.2-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.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c49f35156b5a1ef60b2258b35c5136ece9dcb5aa1bc46899e8a2c43ead55a0a5
MD5 0846fb4b1b8365862f1763a6d618c9af
BLAKE2b-256 111ce7d5f0ba48db347c3ad42628f741cb57628e0ed9c8b5b75322ea0dd9db9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 066b6615bf861c4f8ff12a548a2c73fa75690762f918c370ffe3674b1dda4ae6
MD5 42dc238181ae36cbc2069d701e5492c3
BLAKE2b-256 0e4372574726616efb38c4524be70e16fd6bcc4dcc8a15ac64f515fb6f3d02b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0391adcea57c7dcecc777b4d4241fe56d2445f86a72a766b70b3ab49589a03b2
MD5 e7eb7fd6005b25cf6f6a70e601635fb3
BLAKE2b-256 8c56af0be17b0c44ae0c011f53d7b58ab5fd4dc86f15e96184606681732c5682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3d365f62bc87c519b175d69e755fe8efcf358217b6b2e204d30fe1cba7ff085
MD5 e77bae11ffa593707e109031cc82aa02
BLAKE2b-256 9c259a7d9f4aa8fca037e699a5a3a89894044ebb8f5d44840202ab6c07c04acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a08b635930e4c675c40e24ce8f641fe3ae7061cccb3dca5cb7ccbf72a8301e39
MD5 6a5cef378b41470fe86198a11ad4d419
BLAKE2b-256 bd013bbe08e0b092f4142a0a111a6ae2dc415fc711f0e870b92f1c34c7032ca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f725af6d7e908c5a56916c88cf4edecd7fc9f6e7ab7e293f8a61cf16e60e6498
MD5 00d7455e55c1bbaf3096a150c8e00000
BLAKE2b-256 e72363b347c76dd75f527df40762a68bcbb67762e6d34bf72b3a7b5a6deb5609

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9815cc031e0d7a9f5523992f0bc53eaa6b32f1307709db4ba77a5583de9fd0bc
MD5 aea0738217dca03b794c499b0267f41a
BLAKE2b-256 05c36c56667e3d7afc88d1363d5babc2e8760c69dc06ed1962c23a28f716deeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6e0ef0e9f4292599e7bf58bd9684bca04689860e9e1d4aef738b84b12df85cce
MD5 d2c4eca380f3967c95cc98f5f59f1d21
BLAKE2b-256 950fc6d69592d05da1930a600fe228887e90184ada10f9a0121cd728b4891b72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef9452e0f01aadcb71cf8aa9f574cd1474790731111de1c6f26bd2f7a31d5372
MD5 14f04673dd5b3800adf3e2d60c1fb00f
BLAKE2b-256 75587057d7ed003f08c5267cc64815eced7f4b60aa012565465063031b9470af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b635e731e8f145f58ad1e27c8a6d8e5b26496e2d717095d8913f1db234d64414
MD5 372973740dab770368819729a0aeda13
BLAKE2b-256 3acc89d943e5d2df6fbef322129d202cb03d416810d7c694b72dc9677cbff015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db2c689f53e9b8e957869a98ba8227959a552dc82fbff9d6dd47ebd2586cfcab
MD5 2149c5647663e69df42dddfb3f1321f4
BLAKE2b-256 0ff01499da4b84093703f71a210c5414ce626b22288471523cdfc34dc61b665f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b2b44ceee0101b2e78e768b88647ab0b45e3d0311402e79bd40fc8322282b5e5
MD5 fbfdbf6b16136a54463cb90c005f89fd
BLAKE2b-256 5aa44afd4a5b909eda8f48f88656e9c301309d835f07ac91778c5a9b9bb0f550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0804b4b00676bd10741f855a2760458aef8452aa0541265c6a4ad4b0452cb6c6
MD5 a06e21cc1cd97eab1e8dc213a46f35b8
BLAKE2b-256 ffa55d46fbc80ab0b1fb8c2da7b4d7dfce2988047ca97f58f352a786f2a9d8eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47142baf81a0155604aa076ed0d9c417ca54c20ff5534db5ef86e0e7794fc9e3
MD5 439bef75dd557f7e6ab2ced255094fc0
BLAKE2b-256 c67d9eea849faf160d1f2819090c276d50e97ab660c8da79d5b8cd0b7062addc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12a4558cd104ac396f464de3b8d1489026ff25ca7139e6105ede2aecf4563309
MD5 5e1ffab46e19d010b531c9b1227e3246
BLAKE2b-256 6e30e2c01985f0aa14afc90fed694f2283f3470150285d34346091989023c78f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1b879e9113b20949d9e2286520567d8b7d05f866a7d25ebf20b1086727d37a3a
MD5 46dc5cf346a97d635c29cb34accc1357
BLAKE2b-256 63df38b4fb96cafcddb998873e13197b034b3326cff084296632729676a32ab4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a01bbe1593eca483ff2052eaf2ec4b246fa7046f0d1da24271bae04f1b2420bc
MD5 a1a0115748c4619cd0393b8d2e4af475
BLAKE2b-256 df35572fa0bced92598f755bb38969af87884c24a41028837fe8af565c00af41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c5a9a70a9f2ed8bef70bc94fafe5244d2125e531b7c56599eee1aa8bc1f59f8
MD5 bf68869a02a185a6230f829f26f272af
BLAKE2b-256 d32dcbcd4e895ecfb72cc81d2ef6c4757c9b8a3b35842837c028b1cd00fe6539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d9855f9ee0a563e5f76153393eb7f8d10d4aa211cf000dc2dbf7795987d0792
MD5 1cea4b0a2932d7ce8851955d932c2559
BLAKE2b-256 bf0fe90dd5c76c8968ceb5d41cd24792b17b8fb8ca75e1ec2f1edf005e43bb4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8014abf41deac8f386bc0c30aca050c7d830d72568e76f011626d8a7c8b95d2
MD5 3b672a57612f272cdc382077dd0ad9ff
BLAKE2b-256 3e927c1bf2c0b2cb0a61eed6c41f721433ec915d16eeae84c2547e1c5549ce25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 137684a711e6a28abc8c3c44516672bd2e4ded3b7b89afa0ccb9caebc6e00a5d
MD5 24ccf4c3832b0ca32ccccae66a175511
BLAKE2b-256 42987b11966ab5e250260f37ff3ffc0330b64bbbf43a7531c8bc0a6437482d3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 686cd31bbecafbee7e3655aa0d3a18355be6ea686016d0d5cb6217468a6a72b9
MD5 2c332732426afaa5726c2983a0930255
BLAKE2b-256 e0bbd58c3fc77655d8848eb57722bdbeb4a93ccd3b4ce9dd59a2d28b69e0c694

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0867d580ac5b883eaa5328a8eb41943e0d8142a840bc4ef3f34a4034ba512bd4
MD5 5d26149a934feb3a891beed76aad17d0
BLAKE2b-256 2fc5cfcd1ef8a50d95bdfcbb3d96ffb64da91c9fa5a963b50f8766a1575e8cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1cffed085e7f3727477988945fee9614b40b52c557307511e6f177f11a8ac850
MD5 a111835caad2fdf4c4dd133cd0e5142e
BLAKE2b-256 3ea6dc8bcfe779596efdfeb4f2eb7d59b5fe71c3fff00fa6bcf710fac8d0e1ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d780fb1b122b6a04b3a6ef344efbf91c570180a3d4b9d28d45eed7811a3b0c83
MD5 b90344aae3bc912dc1e54775edcb9a95
BLAKE2b-256 b68f2dd33d7ab70e73b7259499cfe2d4d9525be2c5d68d2c7501ee705bc19a63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e69d4adffa0798f81aee30cdbbcfad8173740a6466ffb604a3d11566e666ce2
MD5 ccfe3da51e8d7de5312d5f88a0559418
BLAKE2b-256 02d5ac5477ad356287a2ca3a968a4adfc06928b0d355f3c558f6236c49c6abf5

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.4

27 files

0.1.3

27 files

This release

0.1.2 This release

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