Skip to main content

Encrypt PII, not meaning. Locally.

Project description

argus-redact

PRvL PII Leak Rust Demo PyPI Downloads Tests codecov

Encrypt PII, not meaning. Locally.

The privacy layer between you and AI. Your identity stays on your device — AI gets the meaning, not you.

from argus_redact import redact, restore

redacted, key = redact("王五在协和医院做了体检,手机13812345678", names=["王五"])
# "P-83811在[LOCATION]做了体检,手机138****5678"

llm_output = call_llm(redacted)     # LLM never sees real identities
restored = restore(llm_output, key)  # one line to get everything back
pip install argus-redact

Three Promises

Promise How
🛡️ Protected — your PII never leaves your device 3-layer local detection: regex → NER → local LLM
🧠 Usable — AI can still understand and help you Pseudonym replacement preserves meaning and context
🔄 Reversible — you get everything back, intact Per-message key, one-line restore

Other tools shred your PII — it's gone forever. argus-redact encrypts it with a different key every time. ETH Zurich research shows LLMs can deanonymize users for $1-4/person when pseudonyms are fixed. We generate fresh random keys per call — the cloud sees unrelated pseudonyms every time.

Privacy Levels

argus-redact evaluates your text from your perspective, not a regulator's:

🟢 Safe      — nothing about you is exposed
🟡 Caution   — contains personal info, not dangerous alone
🟠 Danger    — can narrow down to you specifically
🔴 Exposed   — directly identifies you
from argus_redact import redact

report = redact("身份证110101199003074610,手机13812345678,确诊糖尿病", report=True)
report.risk.level    # "critical"
report.risk.score    # 1.0
report.risk.reasons  # ("id_number (critical)", "phone (high)", "medical (critical)", ...)

This is what compliance frameworks don't tell you: how dangerous is it to share this specific text with AI?

Three Layers, Collaborative

Layer 1  Rust+Regex   phone, ID, bank card, email, self-reference, ...    <0.2ms
             │
         produce_hints() → text_intent, pii_density, self_reference_tier
             │
Layer 2  NER ← hints   locations, organizations, standalone names         10-100ms
Layer 3  Local LLM      implicit PII — symptoms→disease, behavior→belief  ~20s

Layers are not independent — L1 passes hints to L2, enabling collaborative detection. Instruction text ("帮我看看这段代码") skips NER entirely. High PII density lowers NER thresholds. Cross-layer agreement boosts confidence.

Core engine (regex matching, entity merging, restore, pseudonym generation) is written in Rust via PyO3 for maximum performance. Python handles orchestration, NER models, and LLM integration.

~47 PII types across 4 levels — from phone numbers to medical diagnoses, religious beliefs, political opinions. Use what you need: mode="fast" (Layer 1 only) → mode="ner" (+ NER) → mode="auto" (all three).

8 Languages

zh en ja ko de uk in br
Phone
National ID MOD11-2 SSN My Number RRN Tax ID NINO Aadhaar CPF/CNPJ
Bank/Card Luhn Luhn IBAN PAN
Person names HanLP spaCy spaCy spaCy spaCy spaCy spaCy spaCy
Email

Mix freely: lang=["zh", "en", "de"]. Pass known names: names=["王一", "张三"].

Performance

Rust core (PyO3) — M1 Max, mode="fast":

Text redact() restore() Throughput
Short (17 chars) 0.07ms 0.04ms 13,036 docs/sec
Medium (770 chars) 1.00ms 0.05ms 1,031 docs/sec
Long (10K chars) 22.2ms 0.05ms 45 docs/sec

Pre-built wheels for all major platforms — no Rust toolchain needed to install:

✓ Linux x86_64 (glibc + musl/Alpine)
✓ Linux aarch64 (Raspberry Pi + Alpine ARM)
✓ macOS (Apple Silicon + Intel)
✓ Windows x64
× Python 3.10 / 3.11 / 3.12 / 3.13

ai4privacy benchmark: Email P=95% R=94%. Chinese PII F1=97%. Benchmarks → | Performance →

North Star

Dimension Current (v0.4.3) Next milestone
Protected ~47 PII types, L1-L4. PII leak 0% across GPT-4o / Claude / Gemini. Cross-layer hints Adversarial testing
Usable PRvL U=100%. Pseudonym codes preserve trigger words More task types
Reversible PRvL R by task: reference 100%, extract 50%, creative 0% (by design) Task-aware guidance
Compliance PIPL ~85%, risk + audit PDF PIPL/GDPR/HIPAA (byproduct)
Coverage 8 langs, 4 LLMs benchmarked, 6 frameworks Browser extension

Risk Assessment & Audit

# Assess risk before sending to AI
report = redact(text, report=True)
report.risk.level         # "critical"
report.risk.pipl_articles # ("PIPL Art.28", "PIPL Art.51", ...)

# Generate compliance audit report
from argus_redact import generate_report_pdf
generate_report_pdf(report, "audit-report.pdf")
# CLI
argus-redact assess -f json  <<< "身份证110101199003074610"
argus-redact assess -f pdf -o report.pdf <<< "身份证110101199003074610"

Compliance profiles: redact(text, profile="pipl") / "gdpr" / "hipaa". Type filtering: redact(text, types=["phone", "id_number"]) / types_exclude=["address"].

Integrations

Install
LangChain / LlamaIndex / FastAPI core
Presidio bridge pip install argus-redact[presidio]
MCP Server (Claude Desktop / Cursor) pip install argus-redact[mcp]
HTTP API Server pip install argus-redact[serve]
Structured data (JSON / CSV) core
Streaming restore core
Docker slim 157MB / full 5GB

Security

PII never leaves your device. Per-message keys prevent cross-request profiling. Full security model →

Meets PIPL · GDPR · HIPAA technical requirements as a byproduct of its privacy-first design. Details →

Documentation

Getting Started Install, first redact/restore, key management
API Reference All parameters, return types, streaming, structured data
CLI Reference Commands, flags, serve, MCP server
Configuration Per-type strategies, enterprise mask rules, false positive reduction
Sensitive Info Taxonomy, privacy levels, roadmap
Architecture Three-layer engine, cross-layer hints, pure/impure separation
Language Packs Adding new languages
Security Model Threat model, compliance, per-message keys
PRvL Standard Open evaluation standard: Privacy × Reversibility × Language
Layer 3 Benchmark LLM model comparison, prompt design, regulatory analysis
Benchmarks Evaluation against 9 public PII datasets
Performance Latency, throughput, benchmark results

Contributing

CONTRIBUTING.md — language packs, test scenarios, framework integrations welcome.

Contributors

Who Contribution
@aiedwardyi Brazilian Portuguese language pack (CPF, CNPJ, phone)

License

Apache 2.0

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

argus_redact-0.4.4.tar.gz (1.1 MB view details)

Uploaded Source

Built Distributions

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

argus_redact-0.4.4-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

argus_redact-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

argus_redact-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

argus_redact-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

argus_redact-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

argus_redact-0.4.4-cp313-cp313-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

argus_redact-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

argus_redact-0.4.4-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

argus_redact-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

argus_redact-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

argus_redact-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

argus_redact-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

argus_redact-0.4.4-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

argus_redact-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

argus_redact-0.4.4-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

argus_redact-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

argus_redact-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

argus_redact-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

argus_redact-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

argus_redact-0.4.4-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

argus_redact-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

argus_redact-0.4.4-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

argus_redact-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

argus_redact-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

argus_redact-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

argus_redact-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

argus_redact-0.4.4-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

argus_redact-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file argus_redact-0.4.4.tar.gz.

File metadata

  • Download URL: argus_redact-0.4.4.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for argus_redact-0.4.4.tar.gz
Algorithm Hash digest
SHA256 95c6c6b6ff30f85aae549188e125c2755a374b165a5450f0174cb78436138e23
MD5 71817f985f92cbb83565c1cad72a96d7
BLAKE2b-256 02d1f8cecb706dc2c80bb8c9025e877259312109711066dd253a383c8666169b

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4.tar.gz:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5753a9b02ca1b4ae83093b75c2f4b9a54805080032bc42982a4962e73aeab4c1
MD5 3b4e6ad1673a9f0bbbaaae4758af6b95
BLAKE2b-256 589a80eee65bd6e207ccf6ea13ae21748d8f28985f310b6a2d156e6cf8199fcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp313-cp313-win_amd64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e827954c46a15f385b900a987d2ee7c37ec6edf0df2563441c50a37050a900d9
MD5 085a1049ca02974a84e28085d5d265ef
BLAKE2b-256 0333f50f5febe9165ac648677198c24c705f7706bd325d5528b88a7218c13b80

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9528264c64c45684184da929d292c680d68ffb2347fc5d6e56cd257659655a11
MD5 4eb442225893ae95b19912ec471f6587
BLAKE2b-256 1d7430aac5be83bc034469cca50133eb81e6cb6b28092f9c925ca5b61e69274b

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a371ca7e43e2cd3949987047dab2d962c87393086d20f8b30a7d94a3b4e9c5db
MD5 d61302bcc94b94d3f9974a5f00d4d806
BLAKE2b-256 8d2eb239f896ea04b06c673bfab400b3708b013fe8b7f89d31f3211b175fe648

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cee644e3d01d41fb6f0dd4121736f3351d2cabe6a7f26cf6cef4403d06e64f82
MD5 30948787bcdc80f2585e4715ec09f936
BLAKE2b-256 32bef52ce1a15df70e38320b56949935486996b812f9bb9fc0833571ea563f10

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f59146a8056ef895de089cfca805cb9583109ccca8309c27edafdb97dfcb072
MD5 6c6258128e9539566380208e0d4cbcc4
BLAKE2b-256 7722549e828edfd0218da1e36dc21cb044e599df7616aea80d206a8766b2983c

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82b9ba30173e0eebca178d1a6847ce9bf8ffe97b9247703ea0a383140805d849
MD5 a6dbb6a76d9573ee47a24174104700d0
BLAKE2b-256 071d2e681eb5c4104eca7ac706f758ac5ce332d0bd1cddaa772515269577a0af

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 58812af17b30054220778031c20762260c71b5a6953baa9af515d433a4bf2a55
MD5 8b1956a3ac637686c14df39923144b7f
BLAKE2b-256 460d7c1eb16ee0a00eaba52905799adcef0246815167cd8f29a339682efa1811

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp312-cp312-win_amd64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c5c68aba883da0b06b3c7fa93733f8d07fe7749e9119445de4e81e52f00c32b
MD5 1588be07f8dff3840ce9e114b5011c02
BLAKE2b-256 fd7e94ca1561cc133ace7807f213147ff468598a5537578760edfd513cce1a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52fc2842e074ba6b253cb79863371572ceeeec4475fc826cf95de873139edb5d
MD5 b4ec4da21888b17ee56f20ff16c4b5a4
BLAKE2b-256 84381a35640fcb3c2ec71ae0a2fb38521841214104ac15557acceb22fd655931

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e6257a01c348ebad20dcb45040f8d99474487508aa2b1908d2079f0fbeb482b
MD5 7116ebee82fc991328d957328a86ce15
BLAKE2b-256 f83fced6c3406ebdeafb9f822811b78457dd010e79e977a4b72a97a648271d43

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f3dd1d15f7e441ca9c5ed83188126ceb7dcc8985b79a5f1581eb3ef2fa66913
MD5 c636c1a8406e75ad255b1c29f107a857
BLAKE2b-256 41b5ee3766547b0e118201e2a382b448a2789523fce6252b1b496585a1e5b1cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e64c9aa1765657072e2d81da106eea7633290c951cca0cef61a426fb961c663
MD5 5cfcc557e778fb8413b8783a51b6e967
BLAKE2b-256 f2ec6de77dcccee828a54b26d45c7b8f846c658ee978621421ec8e7773ebfe0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fafbf0f5f4f32c68ce5a2176294937ba6f7045396640d7fe649c618dc2de5434
MD5 6b7565bb6571bd76f6c503a69e0799a8
BLAKE2b-256 2ea5685d38cde2e5e4a5d8bfd05bc9a878cc5bb85a180b92b713dabcdc626b50

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3beb3e0bfe27834efb1dd0f45ac53dfaf0df64a4d995d828b4204f57eeac649c
MD5 09241740a6afff5a473359ceb5383f3c
BLAKE2b-256 af6e6d1253326e3ff48857aac518772deeb23fed3e1049c10380d6983551a5d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp311-cp311-win_amd64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 19f48f33e0017e0f4356dacb9f3112c9b07514732ef5325d3f660a892fb4b58b
MD5 0cad4953c8c4de1fb4be19e4dddeb7f3
BLAKE2b-256 2d447c31280252b8f14c139a5a35c01123c3385104e14cfc4e8d14b5c87dce8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6c94ef93e6352fe95f37e941dc787eb879269be76eef1457fe4465abc29e59b6
MD5 36ee54c3e3c4c9a456422975f9df638c
BLAKE2b-256 f9bd777d9854ff8b7a3f5a183b5a2ff0c218fc454bc2cf8ada88a7d6916418b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7b0ffe2fc446a9865965c323481d632663cf06b1618225769dd6a136fec87f8
MD5 3facb2b33b7366dee13295935cbe5732
BLAKE2b-256 227589c8ebbbc02a53e27deaf2a6c3adab0229cc355bf23b627796ba02aed226

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59757a2fa9aa237a97913e09a31f3bc7ec858b6bf0ad6093887e22d8900f399c
MD5 27a1da389a19bae804d54ac8a0ff92bc
BLAKE2b-256 8feeb13747e22f4bb38185bb00af5007aaab626afd8ba7e6ff2516ad3065d9ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 585891e52ccbcc185c0ab5fae81f816f868b373f13aa5295859715f8c20dccec
MD5 be97a1961c2b585528a5541b42267cae
BLAKE2b-256 98a0334c74b383763a3fd0509bce049b79f3e2be77735acdcdbb2df603c9b61a

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9170cfe629468e445d725134704523d2cdec587ee00da5451d11634377110486
MD5 6a94eeadce210f499e52f6e8ea9ebac1
BLAKE2b-256 1751e19f3aef7ecd65cd1fb9f721a2d68d868b1c271bc6f5f07d8e344bf0d076

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 92d3a22b0b0e40a06598a7448d38e3dc8c7f926edcd9200a1979128aa20adfd2
MD5 ed2b74ff0cd2dab3264febc4f016eb28
BLAKE2b-256 ec17ff3b5e4112c3b4dc604b659befef1b0e1c9e81790b822b6e787d31764fd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp310-cp310-win_amd64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1274aa7092277768190692f4f25b679976d5aea62efd54ac47896bcd0daf6fe6
MD5 b2dea633ea5dfe292c465497a43572d7
BLAKE2b-256 9700dc74909729c1db286e3b7881dc0edf2463d5f27a5d03178f1335da90d203

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bcba60570ddba7613e038c7724781cc8697158780197b23ba23099c784e7f6b6
MD5 5cf3bda733356baa838ad56bc85ad72d
BLAKE2b-256 f989a82f06a7b90af3b72c7cfddd443b9fbb150d274032a1bd758ba5cf8a9d47

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 321965159b142a68c5b53ee12298c3ad49e71fce41609c58b25caf05fda3009d
MD5 90c05488d9c7ee1ca82a97f6720cc4eb
BLAKE2b-256 0826ff0294f9d295b72ac5db68c83390377ccd610448c4159aebf6cc258f97a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4a34b8e8c2b37d3ead8b4c6e01ce10c2698447ef04e2f38b34283287e19a033
MD5 f7609b5a5a9a016b4c086a31896dca66
BLAKE2b-256 a3d157e979cab31f8ca207318b3243a69cf7219a397795a4703eae33cb75a214

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63a17dd49f46e8fe14c5975ad0578f9094e608e5410dc0d7b857ce500f0de2b4
MD5 584ebc45ef71f9a35cfe982b76a0092c
BLAKE2b-256 0710696d6a6f4912d57d312ded85a06e0045f4e99790e8608e58fa20f4955a29

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on wan9yu/argus-redact

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

File details

Details for the file argus_redact-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for argus_redact-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43038f77f9e2e1ca4c2b7190e9dd74486d9465bc26d46e4fdae127e0b9686206
MD5 1e6136a23565412b4e255084d50a272b
BLAKE2b-256 85268234836f8d4ca08403e3a821ec0806c0ffa962b9a706d942cad456ccda84

See more details on using hashes here.

Provenance

The following attestation bundles were made for argus_redact-0.4.4-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on wan9yu/argus-redact

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