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

Uploaded CPython 3.14Windows x86-64

tokie-0.1.3-cp314-cp314-pyemscripten_2026_0_wasm32.whl (954.6 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

tokie-0.1.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

tokie-0.1.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

tokie-0.1.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

tokie-0.1.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

tokie-0.1.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tokie-0.1.3-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.3.tar.gz.

File metadata

  • Download URL: tokie-0.1.3.tar.gz
  • Upload date:
  • Size: 276.2 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.3.tar.gz
Algorithm Hash digest
SHA256 cfd71746509c88a0b77de0c57503a695de498bab52081314c145a51a1837d608
MD5 283bb78e51bb24a23c36039c5de78cc9
BLAKE2b-256 e59beb6a9067306700da6589881539a6ee92bb2469e313ce210bc09e17c5628c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.3-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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7e45dc70645759818724fc799278681432af2fe46cc51e24ce93f5e431f2af90
MD5 a92bbbd97e6e5c2d671ab5161754476f
BLAKE2b-256 895c0c1e389261a89d52e562165fb70588adba6a97fb850df4859fa5dcc830b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 03d106d9649bf11f39dc89bea58a3ad1760356f377218a1fcfd72dbd42ef1920
MD5 73a22f4bd9d97bc8b4a073057bcafa63
BLAKE2b-256 fb4ba3bf28bd9183361687304b5ec22ea71e82047db4a9c4b9e6a4573fbe8ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 448b57b6a17c9ed1c4b78a7039c24aed6e85e6b696b0566bd63d284bb783fd41
MD5 18474cc8e7887c2fde30e7622e0536c0
BLAKE2b-256 e01ac53ca9637367ac8bb50afaee02225bcd68d9780f41ef2241a4bbd0d58bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 687f452c6b2224aefe3963f24df47f380e286a3f143974f8dbce48708bec1c50
MD5 97da2e9f68c8885e51dd1e78e9cfae9c
BLAKE2b-256 1fe2c444f897b0e8320255349e895d0c72d0d19e3d3fc598e891ac8929943805

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f86f5bb010a3828a9aea91a6aa3db7d749f8130230238b77b30cfb69a55b9dc2
MD5 bc1366cc69ec77e4ef5100747c30c2cb
BLAKE2b-256 08aa91594eee0e8074f5565bf35d0a63535246b1f4977d01090dc6cdf83499f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78babfe4d5009b0d97ac225b318f8ee4b6c4882228fbba3b919e2e7c743e5c8c
MD5 27c332e728717ec384b1af5b1346f0a5
BLAKE2b-256 83b19af18aaf10965150216514cc0f8d0d9ffaada71b2d0dfbabe6f72179b46c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5fe0eef4f4679243c934bccfdb7d879087ccffe877d42f963c9686c5eb2739c7
MD5 7b66e087e416938b49ecf347d2107eea
BLAKE2b-256 1884c22ac256fcd9dca5437f308f316139299f6595bdac10e3c95a9e6baf79bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c145cd5bed53eb109250d020b04cdfae91fff910924d91a84c3dcf84d80c18fd
MD5 2030c7efc68e8f06a4bc8eef1e577c8b
BLAKE2b-256 f040088dbb750c85b89ea11822d95861006a37000c439025b111baf7c17f1bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2577194781950eb378221d30147a6ca7f5a9d5989865f98de27d5f3ca17f4c7
MD5 9c6ddfa5c471ea76bd085b4ad5f60fd8
BLAKE2b-256 4d986814fe95a651cb2bf9b3f996785e9437d1e41f6051ea4a3038c7920f462e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e0dc3a68845af2b401ed4c9d9a9da1ed446c996156ecc144c9ac2ede56e8b04
MD5 e73d7076c85656feafff79092329bbae
BLAKE2b-256 9d9dc58eacd952b33a3ce94bd3abbdd2f8a4750dfa7f572fdf706dea9c22576d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53f677689ed4604dd17c9386f7f95a7ad841ac91ca16db29f5110392197d5114
MD5 29c988a25f78b0c2f1bdc2f071c4b371
BLAKE2b-256 d1e74920e0ccee67c020241e1e1f052b0de5eb087ed008cd1c9f6a048120d49c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b8069d016e58f39f249ccbe907f5f33a1fb275762ab4f82a4db6dfd7144fd1cb
MD5 f0bf899cf7ff71f1da6b066a1bd41cbb
BLAKE2b-256 1e8614e9d0087818b2992faa2fb7c06f928f9de4b255294462a4ab29b92c6b11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d5a0f1a35ae6075198604ff6b6731191729a7d81b0946745601bddd9c02eb3cd
MD5 ebdb17314676c1704837018af81ee253
BLAKE2b-256 0a75f6dba31a87e70f0e9d3115c9f76488af2bef690321054c07c4f89094cb56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45175ecd257057c5718bffc502200a5fd9dc3ab3e76e985b27d8a30273e057c7
MD5 25e45d802d53f4181fc16219819f8ca3
BLAKE2b-256 38d8e3012bba1a441a5c495ba195dfa48437b690b691cf4302d4b8bac3a2ae66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb4861529bee79596df17cccd1914f5f0e5e59561794d92a1ae73f09527737d3
MD5 4b66ac587d47ca31b516842fa850b4d2
BLAKE2b-256 715965d51c75f305f28c2f7e3fb133b42284863804ab19073f2b30c13a307e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 396f884006b78b3fe918a0dda6d15b8562fb3033cdd27710677c7d5ddbcaa055
MD5 7dda1fc44e87081f088c3a3a12b3a5b1
BLAKE2b-256 948ecc54b19feb070bfe4612d9d96c47a320d0134dc3953b1027ed9fa8abc37b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d2f65b023b1d687d19234294fa60acabd43f551b078dd7d154a2172bcc32ebb5
MD5 e13e6491ffa70814c48fa6f3f24d1df5
BLAKE2b-256 51cc1c4b6d225d5de1bf4daf6a9409fc014a15162a50bc82ea0ac14a832a8f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e8ee6b9268b411a3713f3ee6b66602ea14438803b08267b7b08aa60136b2a1a
MD5 f700d0d98e485f57481a990c867e1c53
BLAKE2b-256 dc7770ac3b1682b427c4bc0d1155af2d39c96dce7de24fe98ae647b94772e2e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99602b2a6d75b95c7719f0e3c8a8025d08221f96f0fd954c86f7c74cf7e05b3e
MD5 60dbd5b2538c7b3c51c1602ef361d815
BLAKE2b-256 e0d13a56cf4c12a170cf5699c0331a1dbb6c5d59a03830927510092fb90eb303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2b992a5779857673b6a09052b5b32a7585cf4d196e57d5877eff985f3984e04
MD5 1cb797347ecb6664049085a33880cf36
BLAKE2b-256 0bab3acd4a04818c7cd3fef9182c0c4401371ed0267f7cb5d9dcad8b49fd2d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fce6e43da5bc4cfbd07c475256086d1d10af36cad8d773109f0161f4d59ae05
MD5 3f9aa14722c318f84c7ed1dae5354228
BLAKE2b-256 3a8a2f36e199246ff8e862d8852c6eddcf17ccc0ab544fca570c3fa8bb0b7c88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tokie-0.1.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ba541eb3e3d19b4d654faffa075b0b30b998a94dc5708da91fc934832d6017fe
MD5 ca39bc9e49ffdd4074658e7dd551c1ea
BLAKE2b-256 ed790686aff516f84a1689bb2ec4439a9e4fd31c1fe07f2a7ed72e5ccf1ef2f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7db9c15dab048f8a5185ac2057b56abb11998d49456dfed70a9ff2be18015690
MD5 75a563d71df319385b35ca64db491b89
BLAKE2b-256 8b40568c0f519eb7e0dd8aa88e5d8eaeabb0d24f32ac0b097f5bddc97f73c6c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47133b267b29a1d006a5215f72ed218e9a985e5d3f1a06f57e5a87ed2df8ab77
MD5 4ca94ba9a95e2885d19a8fed468f5972
BLAKE2b-256 8ca1bbd3d66648ef3814d703fab6ecc8e203ecc17a130fee628308d0e4ca64e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90ef08d2b311fca71c6d646445fb1c6f55c44e865e1187a9888665db9f97471e
MD5 e2edcf1f094d853280d23d559f578b79
BLAKE2b-256 e0d8aaf42030ca873f82ea3cd014200e402ca09a5aba94993899d2d294f5075b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for tokie-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38bcc5c6fcc241098171c6d77d4d54aef9f804edd28e5f000eab9a9e12196cea
MD5 87ecaf5b8c2e21d5a2ceee735d18aa80
BLAKE2b-256 be95bc9818862e53a95f95b37f1b3ab6c62ffc64d76eefbbfa67f08b43679973

See more details on using hashes here.

Release history Release notifications | RSS feed

0.1.4

27 files

This release

0.1.3 This release

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