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.

FastTok Performance Dashboard

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 License © 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.6.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.6-cp312-cp312-win_amd64.whl (174.6 kB view details)

Uploaded CPython 3.12Windows x86-64

fasttok-0.1.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (206.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

fasttok-0.1.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (205.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

fasttok-0.1.6-cp310-cp310-win_amd64.whl (172.8 kB view details)

Uploaded CPython 3.10Windows x86-64

fasttok-0.1.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (204.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

fasttok-0.1.6-cp39-cp39-win_amd64.whl (174.8 kB view details)

Uploaded CPython 3.9Windows x86-64

fasttok-0.1.6-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.6-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.6-cp39-cp39-macosx_11_0_arm64.whl (205.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

fasttok-0.1.6-cp38-cp38-win_amd64.whl (172.3 kB view details)

Uploaded CPython 3.8Windows x86-64

fasttok-0.1.6-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.6-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.6-cp38-cp38-macosx_11_0_arm64.whl (204.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: fasttok-0.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 0961d583dd5dcbbb77f04738abc890bca7850f2f23d4bfe4ec75405ba2fc4b54
MD5 9723573527b8024fddfc99d9ede355d8
BLAKE2b-256 fc0a7f0458199dd106ffd707e62e58d62e81d8f2f61554809da035f3c839c7fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6.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.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: fasttok-0.1.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1a162a6269cbb0eaa699e4c4282fa7d8ba16abc91150445e2ae19b275d14ba59
MD5 8dc757f715ae81098205cffc7ec0abdc
BLAKE2b-256 d8580ab9a04c9254f7e1fccfad8318b93b7c5f0e8919d12e5359a516c5f09f99

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f7bdd1df7cfaa59d58bd48c054ba0f7932f7d4dc893e73b040b4c2e9f60fa70
MD5 e0d1b29628e0f186881b10b5ce07b63e
BLAKE2b-256 2dc50eee245f290097fa1e7434e6bfd237e055560e2d41dd3bd459796d7bb818

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4a872e2ac524654aa710ca8bec3aacd090b6ff5db426f4828b1289291b2aa0bc
MD5 dfed019cd5c2b58c258cf0224f79aa62
BLAKE2b-256 9ceb02227827e195ccdd32b241897851bc93f6cfde851d5a400ae58b4f2690f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ba29c360e25a4e01afb42b41d3e5f4adb438a4406eea8fe31351fd77725ca75
MD5 1e9f8b82acce9c2466fb91a3f2c67792
BLAKE2b-256 3b5e669c25d19053c40fac131c55c96af55aae938872f8156a339d99c254bcbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: fasttok-0.1.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 987c9a0b7c3ca91258cd2301f8b2d8fa91b56591a45e15108dcf401badfe9151
MD5 c575ed8fe952118628dcbf1ed406e4e1
BLAKE2b-256 34a5e2538233fe3d8bd8f092bb191e1d548c119caabddfe72fe24118680dd424

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdbb1ada6d020416ac1b3b4043a25a4c758595db362de08d44e5d988ed802826
MD5 b11df0d25a229120ec5ec060ad040244
BLAKE2b-256 18cceef731ce570165d98f47cd1ee47f4c8890385dccd099cd2186294e3360a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2d34375c61fbe72a83226629a4b5332c2fc28706896aff21d337f8c58c008c9
MD5 becf4961d11b89890d493581b3969d2c
BLAKE2b-256 dedc98f985ebc5e23d619c59a83e82c7664c89307f8b39c89950d61654ffcfee

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf7e6750c4d3f819d26fb45d245b4c17f4d768d0aef7291f24c82a1c98d13d8a
MD5 6a803b1b6eb192a0bebea61dd2c0c2ba
BLAKE2b-256 b29a27806c93740a7cc5b8bd473e19aa0fc605daac1678daa445492af0a48043

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: fasttok-0.1.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 172.8 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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 da6ed622f502a21a3aafa6593d8958d607b80b1a8799ad9d563f35d7a36aee13
MD5 48f54485e026e527dacec7c919e7cedc
BLAKE2b-256 2e4b6015ccd0a2919acf1a33737fec361ca8b41022b103cf7456bb41b57a9390

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2b128a490efa2c36a837f361af3223149045c0115bad848248134da1b2f172c
MD5 069a5aabfd48b06bd658787a82e406e7
BLAKE2b-256 31f1389530bd2c1079429fafb69febfe5b4a36454fe55e5f50ee1dd6fa7628f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ffc90cbc51ba4b2144ba9b00a56ebcc0e2044474bd310113b9d0e99236a5efab
MD5 b5013b3cfe63ab8821ea8d5a835a6d72
BLAKE2b-256 65ffa845a53f9949bbac66b5bb408195f94e2845b77e8302a525e0c27d57fe3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7bc5254d2e50ca57e306e49ef4029e3e08520cee379952613a91bd7b0d94ffe
MD5 9b9f5e3bab1267e9ad6cb9e0924af862
BLAKE2b-256 e5bc20d11c1a6b245918ece0f8665327790c0f4bd9c49d8b9dd29f7a34d25371

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: fasttok-0.1.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 174.8 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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1a24736665a7cddc84d4f55fe4ddab888a1d12b84f0cd012c7e07fe5ac8b0287
MD5 6b3d5a7563148f68fac5909c846ec3f2
BLAKE2b-256 392d6fd3180eca88ce350ea40584a012df217d19800fd0bf326e002e6bfec60c

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31f4e5555a78bf76074e754c8684afd4b9aa1a0c0cf8b3c390387f95b828a9c3
MD5 60d2241b0fe6976dc599856bc320fc75
BLAKE2b-256 97bdb5a24655f14f2b0c232ee9a2c2f8172d0ab91eb024b223cea94829b63c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe048ad90a1e5b476c51c5051c8b0f77ace3a0ddba2051f93d49d2acf5fd29b6
MD5 da54c033c23c9f4b08e98100d3a684c3
BLAKE2b-256 91d9469dbf3b4bf52a428afa3f3a9528029ca4cd3dd189c93fa39accc595d646

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb06da136cab1f86e2fb08a102fcc64358a56b46684b517d5d64b32f431ff2c4
MD5 0a421110484693c4a9c26847ace15f6d
BLAKE2b-256 f8cdf252f4371d2137338d28f30b4909fa4d57bb65bcac3a123101ff5ecc4cfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: fasttok-0.1.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 172.3 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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 9fc56f1205eb72e74440cb588a996073bfe1e827e11aa5eb561a287ef8b8d8c2
MD5 773ed7bcb0a6ac96ec0126321b81b87f
BLAKE2b-256 f052043cf4b3cd22595a392095d307282e76e52d356c27214ebf64dcb2336c7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc63a47cc13f66b998c374b7a3b72ff48744b02a6b0d3b59fa15bbc7701e7e82
MD5 ea6dfb4d93e8084a9bdc206168830ead
BLAKE2b-256 a79259c55373bc5cfd587cc073fb18d5e5a2a13901878f9b63913588f5a1e44f

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e0a68fbc207a7518b4ba5009093377126eb2952af870f71b8ac02f38f15f72a
MD5 0ab5ce84e9ea605d66dbb470ae54dba7
BLAKE2b-256 3c72b52afaed5d7a6507130d5d52b8637a0979415bc0ef4de60ed7923c8bc770

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for fasttok-0.1.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0973ee320e4c2c8a2c46cbb80c6871405f4c9571a95117ed13a4d92d269dede
MD5 c51127df5aa62bf5628a85b261877581
BLAKE2b-256 5354666ce76943716abfa1e1d557b2ea35525fd82b36b3c923b09fdf400b0da1

See more details on using hashes here.

Provenance

The following attestation bundles were made for fasttok-0.1.6-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