Skip to main content

High-performance Rust token compression engine for LLM inputs.

Project description

TokenSlim

High-performance Rust token compression engine for LLM inputs.
Plugin-based · 50–95% token savings · AI-export diagnostics · CLI / Server / IDE / SDK

Build Status npm version PyPI version License

What is TokenSlim · Why · Features · Installation · Usage · Plugins · Integrations · License

English · 简体中文 · 日本語 · 한국어 · Español · Français · Deutsch · العربية


What is TokenSlim?

TokenSlim is a high-performance, plugin-based text compression engine written in Rust. Its core mission is to dramatically reduce the token cost of LLM inputs and to make it possible to fit long, noisy real-world logs (build pipelines, CI runs, web access logs, database traces, cloud logs, VCS output, stack traces, etc.) into LLM context windows — without losing the diagnostic signals the model needs.

On highly structured, repetitive inputs (compiler logs, build output, CI logs, access logs, etc.), TokenSlim typically delivers 50%–90% reduction while preserving 100% of the original information. In its AI Export mode, designed specifically for LLM consumption, the reduction reaches 90%–95% with context-aware denoising that keeps the error/warning context the model needs to reason about.

Beyond compression, TokenSlim ships with environment-diagnostic tooling (workspace, encoding, rule, env commands) that auto-detects OS, shell, code page, Python/Node/JDK encoding configuration, flags mojibake risk, and emits actionable fixes. Combined with a subprocess decoding fallback chain (UTF-8 first, codepage candidates next), it stays reliable across mixed-language environments.

See It in Action

Real-world daily usage — tokenslim gain

This is what tokenslim gain looks like after months of daily use on git commands:

$ tokenslim gain

TokenSlim Cumulative Savings Report
====================================

Usage Statistics:
  Total runs:          7,244
  Input tokens:        13.2M
  Output tokens:       9.4M
  Tokens saved:        3.9M
  Overall compression: 29.3%

Estimated Savings:
  Tokens saved:        3,883,551 tokens
       claude-4.8:     $19.42 USD ($5.00/1M)
       gpt-5.5:        $19.42 USD ($5.00/1M)
       gemini-3.1-pro: $7.77 USD  ($2.00/1M)

💡 tokenslim gain tracks every compression you run and shows cumulative savings. The numbers above are from a single developer's daily workflow — your team's savings multiply from here.

Compression varies by input type

Not all inputs compress equally — and that's expected. Highly repetitive, structured logs compress much more than information-dense content like git diffs:

Input Type Typical Reduction Why
🔨 Build logs (cargo, gcc, gradle) 70–95% Massive repetition: timestamps, progress lines, routine output
🌐 Web access logs (Nginx, Apache) 80–93% Repetitive structure: IPs, paths, status codes, user agents
🤖 CI/CD logs (GitHub Actions, Jenkins) 70–92% Setup steps, dependency installs, boilerplate output
☁️ Cloud logs (AWS, GCP, Azure) 60–90% Structured JSON with repetitive fields and metadata
🔀 VCS output (git log, git diff) 20–40% Information-dense; less redundancy to remove

The overall range is 20–95% depending on how repetitive and structured your input is. Use tokenslim gain to track your real savings over time. Beforegit status (22 lines, ~680 characters):

$ git status
On branch master
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        modified:   .gitignore
        modified:   src/core/dictionary_engine/test.rs
        modified:   src/plugins/cloud_log_plugin/test.rs

Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   Cargo.toml
        modified:   resources/messages.zh-CN.json
        modified:   src/bin/tokenslim-server.rs
        modified:   src/core/plugin_config_loader/mod.rs

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        tests/server_webui_e2e.rs
        webui/

Aftertokenslim git status (8 lines, ~280 characters — same information, zero loss):

git status
BR:master
M .gitignore
M src/core/dictionary_engine/test.rs
M src/plugins/cloud_log_plugin/test.rs
M Cargo.toml
M resources/messages.zh-CN.json
M src/bin/tokenslim-server.rs
M src/core/plugin_config_loader/mod.rs
? tests/server_webui_e2e.rs
? webui/

Every developer runs git status dozens of times a day. TokenSlim strips the boilerplate hints, unifies the status markers, and delivers the same information in ~60% fewer tokens — and this adds up across thousands of LLM interactions.

Why TokenSlim?

1. Real money saved

LLM API cost is dominated by input token count. TokenSlim cuts that by 50–95%:

  • Lower API bills — 50–95% fewer input tokens.
  • Context-aware AI Export (--ai-export) — strips routine lines, keeps the error/warning window the model actually needs; reduces hallucination on noisy inputs.
  • Longer effective context — same context window, more real signal.
  • Faster prefill — shorter inputs usually mean faster model prefill and lower TTFT.

2. Industrial-grade performance

  • Zero-copy pipeline — built on Rust Cow<'a, str>, parallel block processing with rayon, and Bump arena allocation. Processes 100 MB of industrial-grade log in ~250 ms, ~400 MB/s throughput.
  • Deterministic global reordering — a streaming build-target tracker fixes the out-of-order interleaving produced by make -jN / Ninja. Two identical parallel builds always produce the same error stack order.
  • Sidecar mode — high-throughput REST API server, embeddable into IDE / CI / Agent workflows with zero startup overhead.

3. Data-driven extraction

  • Radix-trie path extraction — TokenSlim does not slice line-by-line. After scanning 100 MB of input, it builds a project-wide radix trie in memory and only emits directory dictionaries ($D) on hot branches (weight > 10), eliminating fragmentary tokens.
  • Semantic markers — environment-aware substitutions for Android, iOS, GCC, MSVC, and linkers.
  • Full build ecosystem detection — C/C++, Rust, Go, Java, Android, iOS/Xcode, MSVC, Swift, and major linkers, with context-aware folding and error deduplication.

Features

  • Three runtimes
    • CLI — scriptable batch processing
    • Server — long-lived REST API for full ecosystem integration
    • SDKs — Java, Python (PyO3), Node.js
  • Plugin ecosystem (60+ plugins covering the most common LLM-input sources)
    • Mobileandroid_gradle, xcode_log
    • General devgcc_log, java_stack, python_traceback, dotnet, rust_go, maven, gradle, node_error, nodejs, php_ruby, unity_unreal
    • Structured datajson, yaml, xml_html, ndjson, protobuf
    • Build artifactsartifact_summary (SARIF / JUnit XML), with semantic preservation of test status, SARIF level/rule/location/tool
    • Cloud & opscloud_log (AWS / GCP / Azure / Alibaba / OCI / Tencent / Huawei / Cloudflare), web_log (Nginx / Apache / ingress / Envoy / CloudFront / IIS / ALB / Cloudflare), db_log (PostgreSQL / MySQL / MongoDB / Redis), syslog
    • CI/CDci_log (GitHub Actions / GitLab CI / Jenkins / Azure Pipelines / CircleCI / Buildkite / local act / TeamCity / Travis CI)
    • VCS — unified vcs_plugin for git / svn / hg / p4 / cvs / bzr / fossil / darcs, plus git_diff, smart_code (AST-level), smart_path
  • Environment diagnosticsworkspace, encoding, rule, env subcommands detect mojibake risk and emit fix recipes.
  • AI-native output modes
    • --ai-export — context-aware denoising, keeps error/warning windows
    • --ai-signal — lossy but high-signal, preserves the most decision-relevant fields
  • Plugin introspectiontokenslim explain-plugin and tokenslim run --explain-route explain route selection, fallbacks, confidence, alternatives, and replay misclassifications for audit.

Installation

One-liner install (any platform — recommended)

# Project-local
npm install tokenslim

# Or globally so `tokenslim` / `tokenslim-server` are on PATH
npm install -g tokenslim

tokenslim ships 6 platform-specific optionalDependencies (@tokenslim/cli-binary-linux-x64-gnu, …-linux-arm64-gnu, …-darwin-x64, …-darwin-arm64, …-windows-x64, …-windows-arm64). npm/pnpm/yarn automatically installs the one matching your OS + CPU, pulling the tokenslim + tokenslim-server binaries and 60+ plugin configs into node_modules/. A small Node wrapper at bin/tokenslim.js then forwards each call to the real binary.

If network access is unavailable and the optional package fails to install, the postinstall script transparently falls back to downloading from GitHub Releases. If that also fails, the install still succeeds — only the CLI commands become unavailable; the JS SDK keeps working as a REST client.

From source (Rust toolchain ≥ 1.75)

git clone https://github.com/nuoyazhizhou/tokenslim.git
cd tokenslim
cargo build --release

The binaries land at ./target/release/tokenslim and ./target/release/tokenslim-server (or *.exe on Windows).

Prebuilt binaries (no Node)

Download both binaries from the Releases page.

Configuration (optional)

All runtime configuration goes through environment variables. Copy .env.example to .env and fill in your local values. .env is git-ignored by default; only the example template is tracked.

Most users only need RUST_LOG=info (or debug for verbose tracing). The LLM-audit related variables (OPENAI_API_KEY, OPENAI_BASE_URL, OPENAI_MODEL) are only required if you run scripts/audit_*.py --llm-audit — without them, audits degrade to lint-only mode.

Editor / IDE integrations

  • VS Code — see vscode-extension/
  • Chrome — see chrome-extension/
  • JetBrains — see jetbrains-plugin/

SDKs

📖 5-minute Quickstart · Full SDK usage guide · User guide

Usage

CLI

# Compress a build log
tokenslim -i build.log -o output.json --reorder

# AI-friendly denoised diagnostic report
tokenslim decompress -i output.json -o ai_report.txt --ai-export

# High-signal lossy mode (keeps error window + key metadata)
tokenslim decompress -i output.json -o ai_signal.txt --ai-signal

# Static rule validation (single file)
tokenslim --verify-rule tests/fixtures/static_rule/sample_rule.toml \
  --verify-fixture tests/fixtures/static_rule/sample_fixture.log \
  --verify-expected tests/fixtures/static_rule/sample_expected.txt

# Static rule validation (batch, directory mode)
tokenslim --verify-rule tests/fixtures/static_rule/sample_rule.toml \
  --verify-fixture tests/fixtures/static_rule \
  --verify-expected tests/fixtures/static_rule

# Project bootstrap & shell hooks
tokenslim init
tokenslim workspace
tokenslim --dry-run workspace --inject
tokenslim workspace --inject
tokenslim hooks install
tokenslim hooks status
tokenslim hooks uninstall

Server (Sidecar)

tokenslim-server
# Listens on 127.0.0.1:<port>, see /health, /compress, /decompress

Docker

# Official image (multi-arch: linux/amd64 + linux/arm64)
docker run -d -p 10086:10086 ghcr.io/nuoyazhizhou/tokenslim:latest

# With API Key authentication
docker run -d -p 10086:10086 -e TOKENSLIM_API_KEY=my-secret ghcr.io/nuoyazhizhou/tokenslim:latest

# With JWT authentication
docker run -d -p 10086:10086 \
  -e TOKENSLIM_AUTH_MODE=jwt \
  -e TOKENSLIM_JWT_SECRET=my-secret \
  -e TOKENSLIM_API_KEY=my-key \
  ghcr.io/nuoyazhizhou/tokenslim:latest

Web UI

The sidecar ships a built-in single-page UI for interactive compression and live log tailing. All frontend static assets are compiled directly into the binary executable. Whether installed via npm or pip, it runs out-of-the-box from any directory with zero configuration.

TokenSlim Web UI — home (zh-CN)

Run
# Run from any directory (serves the embedded Web UI automatically)
tokenslim-server

# Frontend dev mode (serves from a physical directory for hot-reloading)
TOKENSLIM_WEBUI_DIR=./webui tokenslim-server

# Pick a port and bind address
TOKENSLIM_PORT=10086 TOKENSLIM_HOST=127.0.0.1 tokenslim-server

# Disable auth while poking around locally (default: off when env var unset)
# TOKENSLIM_API_KEY=changeme tokenslim-server

Open http://127.0.0.1:10086/ in a browser. The same /compress, /decompress, /plugins and /metrics endpoints that the CLI uses are exposed under the JSON API — the UI is just a thin client on top.

Environment variables
Variable Default Description
TOKENSLIM_HOST 127.0.0.1 Bind address.
TOKENSLIM_PORT 10086 TCP port.
TOKENSLIM_WEBUI_DIR webui Directory of static SPA files; missing dir = UI disabled.
TOKENSLIM_API_KEY unset When set, requires Authorization: Bearer <key>.
TOKENSLIM_CONFIG_PATH unset Hot-reload config file path.
TOKENSLIM_AUTH_MODE static Auth mode: static (API Key) / jwt / none.
TOKENSLIM_JWT_SECRET unset JWT signing key (required when auth_mode=jwt).
TOKENSLIM_JWT_EXPIRY 3600 JWT token lifetime in seconds.
TOKENSLIM_MAX_BODY 50 Max request body size in MB (returns 413).
TOKENSLIM_RATE_LIMIT 100 Max requests per IP per minute (returns 429).
TOKENSLIM_WS_MAX_CONNECTIONS 100 Max concurrent WebSocket connections.
TOKENSLIM_WS_TIMEOUT 3600 Max WebSocket connection lifetime in seconds.
RUST_LOG info Standard env-log filter (debug, info, warn, ...).
Features
  • Drop a file onto the left pane, or paste a log dump.
  • Switch between JSON, side-by-side diff and AI export views in the right pane.
  • SSE 流式 checkbox streams /compress progress as Server-Sent Events so very large inputs do not block the UI.
  • The history sidebar keeps the last few compressions in localStorage; the plugin-hit list shows which families matched the input.

TokenSlim Web UI — English, compression result TokenSlim Web UI — side-by-side diff TokenSlim Web UI — AI export view

A E2E test (tests/server_webui_e2e.rs) covers the static asset loading and the /compress round-trip; run it with cargo test --test server_webui_e2e.

JWT Authentication

TokenSlim Server supports three authentication modes:

Mode Description
static (default) Traditional API Key via Authorization: Bearer <key>
jwt Exchange API Key for JWT via POST /auth/token, then use JWT for subsequent requests
none No authentication (development only)
# Get a JWT token
curl -X POST http://127.0.0.1:10086/auth/token \
  -H "Authorization: Bearer YOUR_API_KEY"
# {"token":"eyJ...","expires_in":3600,"token_type":"Bearer"}

# Refresh before expiry
curl -X POST http://127.0.0.1:10086/auth/refresh \
  -H "Authorization: Bearer YOUR_CURRENT_JWT"

WebSocket Bidirectional Compression

The /ws/compress endpoint provides a persistent bidirectional channel:

  • Binary frames → raw data → compressed → Binary frame response
  • Text frames → JSON control commands:
    • {"action":"flush"} — immediately compress and clear buffer
    • {"action":"reset"} — clear buffer and reset session
    • {"plugin":"<name>"} — switch compression plugin

Plugin Configuration Management

tokenslim config plugin status                       # View all plugin states
tokenslim config plugin disable gcc_log_plugin       # Disable a plugin
tokenslim config plugin enable gcc_log_plugin        # Enable a plugin
tokenslim config plugin list-params gcc_log_plugin   # List configurable params
tokenslim config plugin set gcc_log_plugin convert_timestamps false
tokenslim config plugin reset                        # Reset all plugin config

SDK

# Python
from tokenslim import compress, decompress
compressed = compress(open("build.log").read())
print(decompress(compressed, mode="ai-export"))
// Node.js
const { compress, decompress } = require("tokenslim");
const compressed = compress(fs.readFileSync("build.log", "utf8"));
console.log(decompress(compressed, { mode: "ai-export" }));
// Java
TokenSlimClient client = new TokenSlimClient("http://127.0.0.1:8080");
String compressed = client.compress(logText);
String report = client.decompress(compressed, "ai-export");

Log Reordering

Log Reordering: BEFORE vs AFTER

Parallel build tools (make -jN, ninja, Bazel, MSBuild, …) interleave logs from multiple targets in an order that is non-deterministic and that breaks every diff / cache / regression comparison. TokenSlim ships a deterministic global reorderer that streams through the log, tracks the active build target, and emits lines in a stable target-grouped order.

# Built-in: the --reorder flag forces the reorderer and falls back to serial mode.
tokenslim -i build.log -o output.json --reorder

# Standalone tool: for pure log-to-log diff (Jenkins / CI envs) without the full pipeline.
cargo build --release --bin log_reorder
./target/release/log_reorder -i messy_build.log -o sorted_build.log --deterministic -n -p
#   --deterministic  : group lines by module / build target
#   -n  (--normalize) : sort out-of-order flags, redact addresses & random hashes
#   -p  (--shorten-paths) : collapse /home/userA/workspace/... to last 3 segments

The same engine is exposed via POST /compress (request field reorder: true), the WebUI checkbox "Enable reorder", and the Python / Node SDKs.

Plugins

TokenSlim ships with 60+ plugins covering the inputs that dominate real LLM traffic. Each plugin is data-driven (JSON / TOML config under config/plugins/) and dispatch is route-based, so adding a new source format is a config-only change in most cases.

Browse the full registry at config/plugins/, or run:

tokenslim plugins list
tokenslim explain-plugin --explain-command "cargo build"

Integrations

Surface Path Status
CLI src/bin/tokenslim-server.rs, src/cli/ Stable
REST Server src/bin/tokenslim-server.rs Stable
MCP Server mcp-server/ Beta
VS Code vscode-extension/ Stable
Chrome chrome-extension/ Stable
JetBrains jetbrains-plugin/ Stable
Python SDK crates/tokenslim-py/ Stable
Node.js SDK packages/sdk-nodejs/ (npm: tokenslim@0.2.7 — includes the CLI binaries) Stable
Java SDK sdk/java/ Stable

MCP Server (AI Agent integration)

TokenSlim ships a built-in MCP (Model Context Protocol) server that lets any MCP-compatible AI agent — Claude Code, Cursor, Windsurf, Qoder, OpenCode, and more — call compression tools directly through the standard protocol.

cd mcp-server && npm install && npm run build

Then add to your agent's MCP config (example for Cursor .cursor/mcp.json):

{
  "mcpServers": {
    "tokenslim": {
      "command": "node",
      "args": ["/path/to/mcp-server/dist/index.js"]
    }
  }
}

📖 Full setup guide, tool reference, and agent config examples: mcp-server/README.md

Architecture

TokenSlim follows a layered pipeline:

  1. Route dispatcher — selects plugin(s) by command / content signature.
  2. Plugin chain — each plugin owns extraction, folding, semantic substitution.
  3. Compression core — radix-trie path extraction, dictionary layering, global dedup.
  4. Rehydration — round-trip-safe so the original input is fully recoverable from the compressed form.
  5. AI Export / Signal — context-aware post-processing for LLM consumption.

See docs/development/ARCHITECTURE.md for the full design.

🛡️ AI Agent Governance & Anti-Drift Sandbox

The hardest problem in autonomous AI code generation is "preventing the Coding Agent from writing code and writing its own self-congratulatory mock tests (garbage in, garbage out)", and "preventing subsequent refactoring from introducing silent target drift (behavior regressions)."

In a complex ecosystem with over 105k+ LOC of core source code, 60+ plugins, and 1000+ physical test cases, TokenSlim remains robust not by manual debugging, but through an automated, closed-loop Quality Sandbox that tames AI code-gen behavior:

  1. Intent Extraction & Code Documentation Injection (extract_plugin_design.py): Scans parser source code, leverages LLMs to extract core design contracts (design_intent/keep_signals), and automatically injects them back into mod.rs as module-level //! doc comments! This forces future AI and human coders to respect the source of truth design boundaries.
  2. Multi-Language Automatic Translation Sync (translate_messages_fields.py): Double-checks translation files for Chinese and English, automatically aligning missing entries via LLM translation to avoid key dropouts.
  3. Physical Case Quality Audit (audit_sample_case_quality.py): The Micro-Judge. Validates the realism and alignment of physical raw log cases against the extracted design contract, filtering out fake/synthesized AI cases. It scans sample folders and automatically outputs code lines to append to showcase.rs if new physical logs are unregistered.
  4. Compression Fidelity Audit (audit_case_metrics.py): The Meso-Judge. Enforces showcase.rs registration, samples/ physical files, and target/ generated reports alignment. It verifies G1-G4 deterministic gates (ensuring critical errors and command anchors are never lost) and uses LLMs to cross-check compression against the design contract.
  5. State Freeze & Regression Prevention: Once audited, the output is locked with a SHA256 hash. If future AI changes break the expected output, the CI/CD pipeline instantly rejects and blocks the release, preventing silent drift.
  6. Global Health Governance (audit_all_case_metrics.py): The Macro-Judge. Orchestrates parallel audits across all 60+ plugins in CI/CD, compiling a global health matrix (audit_health.md) to finalize quality blockings.

Contributing

Contributions are welcome. Please open an issue first to discuss larger changes; small fixes and new plugin configs can go straight to a PR.

# Run tests
cargo test

# Run with a sample
tokenslim -i samples/web_log_plugin/case_001_access.log -o out.json --reorder

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

tokenslim-0.5.0-cp313-cp313-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.13Windows x86-64

tokenslim-0.5.0-cp313-cp313-manylinux_2_34_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

tokenslim-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

tokenslim-0.5.0-cp312-cp312-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.12Windows x86-64

tokenslim-0.5.0-cp312-cp312-manylinux_2_34_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

tokenslim-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

tokenslim-0.5.0-cp311-cp311-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.11Windows x86-64

tokenslim-0.5.0-cp311-cp311-manylinux_2_34_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

tokenslim-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

tokenslim-0.5.0-cp310-cp310-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.10Windows x86-64

tokenslim-0.5.0-cp310-cp310-manylinux_2_34_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

tokenslim-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

tokenslim-0.5.0-cp39-cp39-win_amd64.whl (3.8 MB view details)

Uploaded CPython 3.9Windows x86-64

tokenslim-0.5.0-cp39-cp39-manylinux_2_34_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

tokenslim-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file tokenslim-0.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: tokenslim-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for tokenslim-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 be6242e12afb756c0dadaec109eff736eec835f812a958d22449f3e89b0708ed
MD5 fc81e4232e8cc86b17b187a3c491d034
BLAKE2b-256 10d20916974fd1b19bd27c06f853938e45f328dfbb65968973541e7e185fa42b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp313-cp313-win_amd64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for tokenslim-0.5.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 d7252ea803ad7152914df0dd538b13645720a36c67986ccf3c09b4fa034f174c
MD5 c53321f3f5ad91851082cc8171b5058a
BLAKE2b-256 3d82f375e825caf12f4a0078f4bbb80f4c7a6885075ac0d22bea75c84b0b2656

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp313-cp313-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenslim-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 319a4a2849a9eb6a97651b2ea9709ebbffc226848996614cda8b971b1a6273f6
MD5 e565190dde53c7954a06246d90dcf423
BLAKE2b-256 269b78cba4d8846d08403b0c7da99888b0b89214f0a8f34676c044d34184afa2

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: tokenslim-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • 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 tokenslim-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0bfe1252a783d3295f724cb2c4707648882a24204636c9c8a2c4928ef80874de
MD5 dcdaf8e3eeab755f68a9eb551ec616cd
BLAKE2b-256 57a84f8b407d27f276e85a42818a1e965d54f6ba83703cdfdeb6198201829d3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp312-cp312-win_amd64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for tokenslim-0.5.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 6223e79a5a4cfef9a7ee1706c2ccd65b97fda0be802c90e609badd703ae5ec78
MD5 9e7014475632247baef7168e1422a465
BLAKE2b-256 63dd0beeb87759e74a4b9dc7b3acdf9360f8a7332caf07fec9a0787f563d01e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp312-cp312-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenslim-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c8ab7fc57dac889d3dd176e25f1a90c051f687853341833013eca07291b1e11
MD5 08d22dc84fcf772dbd2ee0e4360d046d
BLAKE2b-256 ff1acd074586356e31635b47d629ff8f16ce05dfaf82a28dccccbffa1553b463

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: tokenslim-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • 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 tokenslim-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 63d07424644ef8960b01bbb10d83ebb814521e6ce5b2a6b80f0254f29d9e31be
MD5 63654c4047c6aaec25c3a266a012bb10
BLAKE2b-256 99b4868bcb465180feb74b648771c407cca1296a5e125ffac56e339d70e89f1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp311-cp311-win_amd64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for tokenslim-0.5.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 408e05469dfa74e75755ac23c10b9cf27d00d3cecc4990f4def2fa642edffe6a
MD5 806e945f6bd0247509718a927f02461a
BLAKE2b-256 4bbc0e38a89c2142784270fa961d98749faecaea5a1ed4e3c17b6ff75f1b56f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp311-cp311-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenslim-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f184db70fcd75f77a27480b64d2c12047cfb2186a8e47b3568222e1220d86aec
MD5 5ad9085d45fc36c6009c8240d03b0b80
BLAKE2b-256 5ab97ef06fca3f6698adcff1fdec5d02390596a1df73b2405730d0684e456c2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: tokenslim-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • 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 tokenslim-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7fd2280a10bbf0529229504e32f32bedc94d746ed2b17801122bd5e561b95fbe
MD5 61987586caca169508c52c2d7d80701e
BLAKE2b-256 c8d5ae59b26eca280d99c5ca92816d2c2ed54c6bd5c7976a6380c8788a21b2eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp310-cp310-win_amd64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for tokenslim-0.5.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 95ba4e13f6630eca77358eb0861920960712376dee5b048f38a9cdb1fa8ac472
MD5 2b5e4c18375878f6e68e57f5ee69419a
BLAKE2b-256 6a4961c5b7a9d39b0e5e9798c7486bef5b01776268d91c8d92528bda079940d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp310-cp310-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenslim-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2bc083828c6525433b83fc43848578bfc8ac3602f9c30db27ad044c4c9ce010b
MD5 ae9901e9274137d0d25968bde636eecc
BLAKE2b-256 3b86273890828af6da79d0d2aaf111a19168614226121e9503a451b25d5f266f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: tokenslim-0.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.8 MB
  • 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 tokenslim-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dc44abec5f11d26f1fcd5c67d6fca579f4a3711d0544b5c173a6d553233059fa
MD5 4b455eb3deca847650054f3c22958049
BLAKE2b-256 ae66a7c819c3bedf0c757d53f0cc9af6520fe89510f31addf5d095952743e5ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp39-cp39-win_amd64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp39-cp39-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for tokenslim-0.5.0-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9e3501ee0c89755c9f8eecb46ada35b72f1a7f585f204c246245ec446b7ce39b
MD5 49cc5e701357960df74c7a0fe10bab0e
BLAKE2b-256 ba12b95ea2a4336ce76712e8fcb3c94d74025f7354d7b0b88bc16371c65c4521

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp39-cp39-manylinux_2_34_x86_64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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

File details

Details for the file tokenslim-0.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tokenslim-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0c37e29e8f2a2a5e99e1ba44237c8b88fb61838ef6a72cf765fdea572ffc71b
MD5 0e02f851f806b90eb390574aa19a5f56
BLAKE2b-256 54cd8aeba865f7457e3900db737110eca5dd13af86bd7dcbf68376cdfc021f49

See more details on using hashes here.

Provenance

The following attestation bundles were made for tokenslim-0.5.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: pypi-publish.yml on nuoyazhizhou/tokenslim

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