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

Uploaded CPython 3.14Windows x86-64

tokie-0.1.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl (866.3 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

tokie-0.1.1-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.1.tar.gz.

File metadata

  • Download URL: tokie-0.1.1.tar.gz
  • Upload date:
  • Size: 238.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.1.tar.gz
Algorithm Hash digest
SHA256 81e5801b8ca46fac633e5c7390581dc08bdad9e4b7d55b994296149071ab1bac
MD5 84fe4235b6725f0d9353e175be637f16
BLAKE2b-256 22758a4dc2922b36665a290349441c9511a30b259d654dfbe03a0011d8b2ad30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f53df0cec8dd76d0860eed075a3af7daf90316ad352c261ddfe4498698af76fb
MD5 97af1eb78d787de2a072e65a5c351278
BLAKE2b-256 5c86542d6fd2e52f29f52700d8b62f7cf78bd7f467ee3520abe56c70a1748050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 4628c8773467a2a4b982ff0abb88cf076bb968cc647a9fe32c305f7190722e77
MD5 701656d9b65710d47fc3b27d0ee2f6e7
BLAKE2b-256 328b6db8eb1fcdcf6f08982148556fd481ba1f5708338b59b0cbb618b8ba0f88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a277bc7e5667bba57ee59170b95b68c0ce674a255f478631a9cea7c3a85683fe
MD5 956a8367fe7ac9588011f2d7539064ff
BLAKE2b-256 3a22fa020660200e5c8e4ea111b1e04735ff93609d9e247996f6c62d42282f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e6c4289d693da455025a32bb7b6cd9c3b80cfa131fdd08e06cf3e1116555a12
MD5 886375044b8238059127e01c7c232621
BLAKE2b-256 878e99f6e8da129d8b3b70072ee767d30432a9ca1bf0cb7d5ec8ff447e1961d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5036509db4dbf10a8edc9ee8866982e184502a9bf13ed1f31352bde201d985a
MD5 07338227b5fb18f4e345fd63c70aaa98
BLAKE2b-256 863a556132424f254f38928ee2871e74a76ef7e99aaf07bca09d1b62a9fe828a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81895d0b9c21624e342f70bb13f86eb03b827a6f0981824ec110264833bfb265
MD5 450df953df83b071c95f8c21bc3975ff
BLAKE2b-256 41e5e4e2d8f74fa7b258a742ade7ac458f1be5d5ccc6994c15d4bd00224bb358

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 28f71deaa7ac23bb9648e42365a2200020b918aeeb0f3ce70d4f3e6351c5dde1
MD5 77443ee249854d2366462fe0a4db428f
BLAKE2b-256 412cb38c55ebe11b6600f21d7ffc8be07b43d824d84244f04158b8a4f110df2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 63d747e474a577e9bca267b99efc21bb5c6e64f27a0b70835f162d9acabe26fd
MD5 467762d22c6580f0c591efd69e4e7e30
BLAKE2b-256 1d17cb8ce0183a388761260fadf01c15eeada31594a3b2df5a3d3c9ae3eddb7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d43e1fec2e056e254d0f021f7867cf0c6c8acbf9404158170a33704a9ea8ad6
MD5 356f9e96c40f85f6d1712e4e5bca6d89
BLAKE2b-256 6933dc70707fe3b56864d47800c18260a99c60ff7a10ce93e546307322c7fe18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd2cfd70a0f3d35149101f70049722065d7521fe5374ef938a7847cbe5e6e12b
MD5 4ad6965bf7b3f097d9fd4b2359b38f93
BLAKE2b-256 a528c222617e6cb1778e0935b94f4c737e3b52e4581a9878fb788c3b6123549c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4dfe55af4d3eaa5b85e7c4eb02dc07210ca29f313dbff76d8cafaed004411149
MD5 eaedec6c2fc3d8cacbfd698739bdcf14
BLAKE2b-256 e1a5d95c3c00f172a58cff10bddee2cf8b49a8c87a733ecb20c4bcc8376674e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 52a416815660792f5c0e0f4c4750f13dd3c412c2f56f927a132fbc8c5312c762
MD5 474f919b0cc02f62910c8b8fb3948994
BLAKE2b-256 c4abf0b39b448aa4b9de9376081170b9dc6bbfcf7791513d58fff8ab915c7994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8103b0fbb5d6d47e51caa5dc61be7e6c3cea4f190ef8cd7dae7bbccb512b876e
MD5 7c932613c78b7226e68038e3ff0a33a5
BLAKE2b-256 0f1bb306d4fcb898983db21f3ee17ca86fe1f49a1c91ca2b7fbca816c6562995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 438d7e7a4f33b0b532760f97ff2f3356facbc96c9ac6ea082bd7837dc50a957f
MD5 74ae9ec1da2c1efbaa93e994367da846
BLAKE2b-256 94c2b7e11e6894fa52fdcdd09595a4daf9e9a1838761fcdbd1028d3401d1c3f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea4bd7e7601bbb0a7c9e3d1da84f3ffa3c301f34e85a4b9d23982c4e1d441655
MD5 a51f08703f8e18a6f63a2ba8f19f0d17
BLAKE2b-256 cc1222104d2e40cd8c1cc6e899e99e7dea05f9a11c3a7c7ad52b10e6dcd17aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81e361db212f372e44a2f0c67edf262696008b558e8cf75301e309351b547783
MD5 0a718c44fbec17be28cc57579905f4b7
BLAKE2b-256 fbdb92e2185909020db3a8f26a287a592c4a171dd0389f648f237e230b59dfca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 86ed24bdd571df0452279adb0592e35c03e6c0a34849e9510f98069814a53cc4
MD5 d5a363ba428d658116d88bfdf0840ef7
BLAKE2b-256 aa0d70f3c19a89d374448f62ba00e78a99925e1ee1b8367dbe4d15338d11a7c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 67ae31f45beef18d400690342dcebb9a6e3c61474ed17df583e42dd02c6cda34
MD5 42511bab8b1ac3300a6efaa7a695a49b
BLAKE2b-256 c5437ab9d799c7bb42f7609373d68a34bcb4683371a5a60a0d025671518d1c61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e3219262eaa25aaf90a758ee3f4f0bc4169a97503d0f858a67b20a7b94fecbf3
MD5 5764b0376e4b4d6e43656614d355e1bd
BLAKE2b-256 9501b211fb54855ec3245447e624d1b86ef726503823aba96804a23cd3476760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff8616a68248a5aceb11e1a6aa26881bf8d079a110b20b35c0098c68021516f3
MD5 1e61af3076665060e27cfc01015f91bb
BLAKE2b-256 e00a9e700872614b180306546b08a3d60bd152168f456b7adc554e131bd6fd09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26fcae5717b1163cd7f155adcae243615fdaadbc6bd765a65dce34b77553c4bb
MD5 8ee05edcdeaae3a67e028b994e1a5fbc
BLAKE2b-256 7165c42226f5e5ba5be44f95cbac4963b364f4b49626b5022ba7487fe160b7a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a90995d8e4000aee16d364dc1835cc52e9b6ede3efa688875e6099dd71f4282c
MD5 52f3274c57195baa3b169c0024888393
BLAKE2b-256 aab6935b5c6a1d1b1a3aeada0543036cec853ac4431c6f6abda497e834550bf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a6c277813b5e638dfee2a5d5818aa0c5f9a7134515d95c4b7533997486b41ad5
MD5 f9f17aa5671e0aabab18c0dd20eadfdc
BLAKE2b-256 ad6f7ab17b88b6cccb271b39a67ae720269b6145fba5312131cd78ec1309fa83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac694682189b9a64d62706dd7995702b1a2dccbc8b45b26a240aacdca8336337
MD5 8994f8c946339331ca60f7a90b426547
BLAKE2b-256 574d9477744927511593360f569f86d85de48ef59e4f76bb942866be0044747d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed35a73a5ce24564b808266304bbe91499c75682be88588b669eb80155c110e3
MD5 d1310b9781e186987165e30166c96111
BLAKE2b-256 9b12159d1d575f2d7bac12fb2b649ba7d2a1e1ca14dc22b22220cfd5c7c8711d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0bdf1f7c634cf03be1564a30aba7282abc80ec18cf740b73c14bd0c15eaed8b3
MD5 044fa05abed55c16c343b1195939d873
BLAKE2b-256 3381d59fdfc4732621d9a836907182f1244219d92388b0e3ec8afd9b07c6fa8e

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

This release

0.1.1 This release

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