Skip to main content

High-performance C++ tokenizer and prompt compressor for LLMs — reduce API costs by 10-25%

Project description

FastTok

High-performance C++ tokenizer and prompt compressor for LLMs. Reduce OpenAI, Claude, and Gemini API costs by 10–25% with one line of code.

Tests PyPI version Python 3.8+ License: MIT


Why FastTok?

Every token you send to an LLM API costs money. FastTok's C++ compression engine automatically rewrites your prompts before they're sent — removing verbose phrases and collapsing multi-word expressions — reducing token usage by 10–25% without changing the meaning.

Verified results (tiktoken exact counts):

Text Type Before After Saved
Verbose AI instruction 62 tokens 51 tokens 17.7%
Short tech prompt 27 tokens 23 tokens 14.8%
Business email 58 tokens 54 tokens 6.9%

Installation

pip install fasttok

Requires a C++ compiler (MSVC on Windows, GCC/Clang on Linux/macOS).
Pre-built wheels available for Windows, Linux, macOS (Python 3.8–3.12).


Quick Start

from fasttok import Tokenizer

# Works with any LLM — auto-detects algorithm
tok = Tokenizer.from_pretrained("gpt-4o")        # OpenAI
tok = Tokenizer.from_pretrained("claude-3-5-sonnet")  # Anthropic
tok = Tokenizer.from_pretrained("gemini-1.5-pro")     # Google
tok = Tokenizer.from_pretrained("llama-3")             # Meta / Groq
tok = Tokenizer.from_pretrained("bert-base-uncased")   # BERT (WordPiece)

text = "For your information, the software development is in order to meet the requirements."

# Compress before sending to API (saves tokens = saves money)
compressed = tok.compress(text)
# "FYI, the software dev is to meet the reqs."

# Count tokens (with optional budget warning)
n = tok.count(text, budget=20)

# Decompress AI response back to human-readable English
readable = tok.decompress("FYI the app dev is ASAP done")
# "for your information the application development is as soon as possible done"

# Trim to fit exactly within a context window
trimmed = tok.smart_trim(text, max_tokens=10)

Real OpenAI Integration

from openai import OpenAI
from fasttok import Tokenizer

tok  = Tokenizer.from_pretrained("gpt-4o-mini")
client = OpenAI(api_key="sk-...")

prompt = "For your information, the application development is approximately done."
compressed = tok.compress(prompt)   # "FYI, the app dev is approximately done."

response = client.chat.completions.create(
    model="gpt-4o-mini",
    messages=[{"role": "user", "content": compressed}]
)
print(f"Tokens saved: {tok.count(prompt) - tok.count(compressed)}")

Supported Models

Provider Models Algorithm
OpenAI GPT-4, GPT-4o, GPT-3.5, o1, o3 BPE (tiktoken)
Anthropic Claude 3 / 4 / Sonnet / Haiku BPE (HF)
Google Gemini 1.5, Gemma BPE (HF)
Meta LLaMA 2 / 3 BPE (HF)
Mistral AI Mistral, Mixtral BPE (HF)
Groq Groq (LLaMA-based) BPE (HF)
TII Falcon 40B BPE (HF)
Alibaba Qwen 2.5 BPE (HF)
DeepSeek DeepSeek Coder BPE (HF)
Google BERT, DistilBERT, ELECTRA WordPiece
HuggingFace RoBERTa, ALBERT WordPiece

Exact BPE Parity: supply a tokenizer.json or .tiktoken file:

tok = Tokenizer.from_pretrained("llama-3", vocab="path/to/tokenizer.json")

Compression Strategies

  1. Multi-word → single token: "in order to""to", "due to the fact that""because"
  2. Acronym expansion: "as soon as possible""ASAP", "for your information""FYI"
  3. Technical phrase reduction: "application development""app dev"
  4. Whitespace/newline normalization: collapse redundant spaces and newlines
  5. Bidirectional: decompress() re-expands for human-readable output

Performance

  • C++17 core with pybind11 — runs GIL-free
  • AVX2 SIMD + OpenMP compiled in by default
  • Zero network calls at runtime — fully offline after install
  • Python 3.8–3.12 supported

License

MIT © 2026 Anique

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

fasttok-0.1.4.tar.gz (149.9 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fasttok-0.1.4-cp312-cp312-win_amd64.whl (174.6 kB view details)

Uploaded CPython 3.12Windows x86-64

fasttok-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

fasttok-0.1.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

fasttok-0.1.4-cp312-cp312-macosx_11_0_arm64.whl (206.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

fasttok-0.1.4-cp311-cp311-win_amd64.whl (173.3 kB view details)

Uploaded CPython 3.11Windows x86-64

fasttok-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

fasttok-0.1.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

fasttok-0.1.4-cp311-cp311-macosx_11_0_arm64.whl (205.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fasttok-0.1.4-cp310-cp310-win_amd64.whl (172.7 kB view details)

Uploaded CPython 3.10Windows x86-64

fasttok-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

fasttok-0.1.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

fasttok-0.1.4-cp310-cp310-macosx_11_0_arm64.whl (204.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fasttok-0.1.4-cp39-cp39-win_amd64.whl (174.7 kB view details)

Uploaded CPython 3.9Windows x86-64

fasttok-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

fasttok-0.1.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

fasttok-0.1.4-cp39-cp39-macosx_11_0_arm64.whl (204.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fasttok-0.1.4-cp38-cp38-win_amd64.whl (172.2 kB view details)

Uploaded CPython 3.8Windows x86-64

fasttok-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

fasttok-0.1.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

fasttok-0.1.4-cp38-cp38-macosx_11_0_arm64.whl (204.3 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file fasttok-0.1.4.tar.gz.

File metadata

  • Download URL: fasttok-0.1.4.tar.gz
  • Upload date:
  • Size: 149.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fasttok-0.1.4.tar.gz
Algorithm Hash digest
SHA256 f2fea74f2028741bed67a9bbc2e1160d35ad59922e1551c9bfa0ced35f723f4a
MD5 9c657a2db1488fce12c9d71f6b8e2fad
BLAKE2b-256 53ccca2b4e765f49ada343118c3cb81a5c7e7ece225731bde561538fdd6d44c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4.tar.gz:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fasttok-0.1.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 174.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fasttok-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dddd079ba8364e5b75279a202e270d31ec46c295d6b8ff1e374ccb2d8df0895f
MD5 c8076d783a6fb49f9a91ba253aafb437
BLAKE2b-256 a146019ed8dcfd7449e45a0d50d97d52903b91ac97bb089b5b5a33ca00b5dbe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp312-cp312-win_amd64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4bc191bd42e74fa7ee09ed3ef9212fe3995135e8a3f908d1f84700074e6a2b25
MD5 3add928990ec463be2d0f04d743ceed0
BLAKE2b-256 20f5f4a760a7541dc3e1fb09a1b2980c843f76a46c4b5214e0d22fa798c61d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f6aac9327dcab50a550fd3d812fa8b12ccf5baf6d82db0789a6cb6c17219a07a
MD5 fec66a05d720551251043f0139bb2c8f
BLAKE2b-256 22965d99978494c62eef1a445abdf44b4553b1b01d9bc22b66929c8fa3c15f16

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fbc034b8fea98aa5a9f3962dad9e4de7c211e6d01c46d24466aa35476fa897b
MD5 afb1b1b4750a542450d1b2f96583f88c
BLAKE2b-256 2943538ab27ea107dca9062a71c66f62f2cedfdb2981296141fb2c28f6f3edf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fasttok-0.1.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 173.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fasttok-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4cc493f7b438341c633b32c3ebb624dee8ee7cecb2342ba13c41890e05c26dab
MD5 462eac6b9d60fcf418819c6a02ec35bc
BLAKE2b-256 efc3e5615486f5cfd96d759d72cd2c6563af78db197880ba7d88d95d623e7505

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp311-cp311-win_amd64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51b0d80e8b97b886d99ead8cb4da14904e1b39525d19a7faa8bed2fbcf50d38f
MD5 7e29c2d6063a45bf7c1665ac978a3530
BLAKE2b-256 b3ef1b0312fe7e9aed3d3bd99e4d3dc12e7b5d758d4c4a7f3d0cf2424df3e09a

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 25d183cae9a1965d0292b5c8b1bd8fd9d13b6bd629c66c906d17a1a84d57d97a
MD5 c012fc1b7d124f72b50ea0ece9fa8507
BLAKE2b-256 edc7e75bbd1f4e1c72855a941f406a21df1dbadac790650ce6cd343081f5d21b

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df6c89625f111bf8555c79e7bc8a93f9142b4b3dc01e0a5e8f349d8e0b5fd800
MD5 fc125f130dcd4edf08515b776ca9ce31
BLAKE2b-256 934af8f14fd26407a0e2264ac9a658b5f1f0821aad64f3f16fe77a70d7f5e9fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fasttok-0.1.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 172.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fasttok-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ad2d57631f78d3091f669cc872c8fbad459c81215e2183a2507bf0b855f61677
MD5 3231fc9594b1b329f7cc75b64396cef3
BLAKE2b-256 bb71c25e7787308918f5e18c0907c68bddbe39d34519a2b976072f175d5942ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp310-cp310-win_amd64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bddb9544b28d63907c7728a9f84c6355f189947d6fe244c9c491c3b565e2d501
MD5 0b750842f2d6215176985f93f2bf9c60
BLAKE2b-256 903f875bc6b8979bf4cf97efb67fe04184170cf3a0f1f329d4bf8f246bd699eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 94dd9a8cbfba16a1c4fbc0bef333825c5de4aa6f1ea7b283eea54fa6518dbf7a
MD5 d703fd69951c4b8874e5e0aa4f1a04ab
BLAKE2b-256 da03b7d97dcba8728cd7cade3c217e7dff345ef1a578730d3eee9fb44c35f8c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d9e3badbf7cc402a1ed95fd6a761e4eff0db7a6f4ac70331d997b0ffbfff69e
MD5 302d59f3f8e69dee563c7a7b2a33c421
BLAKE2b-256 9993728914ac8ffb45122a8333e73741840e63e3a056a5a0ba76901321a8c96f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fasttok-0.1.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 174.7 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fasttok-0.1.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f92935a4c090d327ff6b3ae6618a2fd1d7d799dd57dc6008eb5d9fc9295993ce
MD5 d31ab0b86b6641e6d70cba701dd074c7
BLAKE2b-256 870ea48eebf20bf09993b4b94f142c5401ec7aa8dd3fa53219d81b4d1e95f3ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp39-cp39-win_amd64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15aa9d31e273e599916970eb078b889f5d0e92f00cb8142749b0b1d1af5db508
MD5 909db29433980b43f4fb3342b339c6af
BLAKE2b-256 385694dbbe8d985431d2c139ace5504feae5b014b79d7790704bef915ba64c68

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b2a0f3a7108a006ee4b777d5da9355fee163634c2dd89726e45f7daf4510c48
MD5 8c037737f827794e34474cb81ab5f9b6
BLAKE2b-256 2711408fcfc71c1e6532f42f3fa96e581e2b1be27745c2fec4f39898877951ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adaf66371955cdab79bc14a5aceb61fdd21fe7d22cbfa2c9d9712e606dd91498
MD5 94f37d4a6145a7a3e39849a6abaa6eca
BLAKE2b-256 03c414c83de74dfc17f22ad989001432adcca3fe9a07bf8f6a290aed9c412beb

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fasttok-0.1.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 172.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for fasttok-0.1.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b0469139a9d2221a7fdc1859433117b0c2b67675d4569e53fd744369d493e493
MD5 5bbec8a12d15c8899b3e59fe0ec3a27f
BLAKE2b-256 f2f0139bf51369145ad2214d37ee9e9c0d1672527e00483456ac6a7a53177724

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp38-cp38-win_amd64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1204da3526f503dee424ab97c4cedf5e50c42d32d88bde11ef718759e78b79c
MD5 33ed60c97810c92e04f6f1b13c7d3cf1
BLAKE2b-256 a023f25f9f6ff9e568d677f8b91e9dbfddc513ef5e07151661d37fbdce0cf81c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f26fb3ab0ad4af921a12e8f8069ce3ba1a956502a15824cff3996c82cf5918c
MD5 c7d814fca65e53b1182afe7b51fd82bb
BLAKE2b-256 f22eb0a48b1ce2a3133e3332a1b302f5cd2ad2e4956df892b7ccddaf6895b9f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fasttok-0.1.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7014412404fde52d258e7faa93ae708514f227a1382a74c8f7346d1205ee048
MD5 e662f9b8b07e41537e74d0ad8130a7cc
BLAKE2b-256 c1f0489ae3c440ccee7a16a5eb2d8e7bade0061be7da2c0cf4aeebf28e1e5669

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.4-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_and_publish.yml on Anique-1/Fasttok

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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