Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

SecretSweeper

 

CI License PyPI Version Compatiable Python versions

SecretSweeper is a ⚡ fast, in-memory secret-sanitizing Python module written in Zig, designed for 🚀 speed.


About

💡 Just want to remove all secret variables from the terraform plan output or any large file? SecretSweeper is here to help!

SecretSweeper is a Python library that can mask or remove known secrets from byte literals, files, or any file-like objects (io.BinaryIO).

  • Written in Zig with no third-party dependencies. The core is a plain C-ABI shared library driven through the standard library ctypes module, so a single binary works across Python versions.
  • Can wrap a file descriptor to read and sanitize data directly from the stream.
  • Works well with multi-line secrets.

Installation

pip install secretsweeper 

Examples

✨ To mask secrets from the bytes literal:

» python          
import secretsweeper
print(secretsweeper.mask(b"Hello, Secret Sweeper!", (b'Secret', b'Sweeper')))
b'Hello, ****** *******!' 

Secrets may be completely removed by providing a third argument, limit=0, which specifies the maximum number of masking characters:

» python          
import secretsweeper
print(secretsweeper.mask(b"Moby Dick!", [b" Dick"], limit=0))
b'Moby!' 

To effectively mask all secrets in a large text:

import urllib.request
import secretsweeper

url = "https://raw.githubusercontent.com/annotation/mobydick/main/txt/plain.txt"

with urllib.request.urlopen(url) as src, open("sanitized.txt", "wb") as dest:
    stream = secretsweeper.StreamWrapper(
        src, (b"Dick", b"savage", b"cannibal", b"harpooner")
    )
    for line in stream:
        dest.write(line)

More examples are in tests.

Performance

SecretSweeper's Zig core is within a few percent of the fastest Rust-backed Aho-Corasick implementation available for Python, and multiple times faster than stdlib re or other pure-Python/C-extension alternatives. See benchmarks/RESULTS.md for the full, reproducible comparison (methodology, corpus, and machine specs included).

Getting involved

🌱 Contributions are always welcome — whether it’s a bug report, a small fix, or a big idea. If something here sparks your curiosity, jump in and help shape it. Open an issue or a pull request — even small contributions make a difference.

License

🪪 This is free software: you can redistribute it and/or modify it under the terms of the MIT License. A copy of this license is provided in LICENSE.

Release files for secretsweeper 0.0.1a8

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for secretsweeper 0.0.1a8
File Size Uploaded
secretsweeper-0.0.1a8.tar.gz 25.8 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for secretsweeper 0.0.1a8
File
secretsweeper-0.0.1a8-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
secretsweeper-0.0.1a8-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
secretsweeper-0.0.1a8-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
secretsweeper-0.0.1a8-cp314-cp314t-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64 Details
secretsweeper-0.0.1a8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
secretsweeper-0.0.1a8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
secretsweeper-0.0.1a8-cp314-cp314t-macosx_11_0_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ x86-64 Details
secretsweeper-0.0.1a8-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
secretsweeper-0.0.1a8-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
secretsweeper-0.0.1a8-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
secretsweeper-0.0.1a8-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
secretsweeper-0.0.1a8-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
secretsweeper-0.0.1a8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
secretsweeper-0.0.1a8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
secretsweeper-0.0.1a8-cp314-cp314-macosx_11_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 11.0+ x86-64 Details
secretsweeper-0.0.1a8-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
secretsweeper-0.0.1a8-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
secretsweeper-0.0.1a8-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
secretsweeper-0.0.1a8-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
secretsweeper-0.0.1a8-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
secretsweeper-0.0.1a8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
secretsweeper-0.0.1a8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
secretsweeper-0.0.1a8-cp313-cp313-macosx_11_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 11.0+ x86-64 Details
secretsweeper-0.0.1a8-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
secretsweeper-0.0.1a8-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
secretsweeper-0.0.1a8-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
secretsweeper-0.0.1a8-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
secretsweeper-0.0.1a8-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
secretsweeper-0.0.1a8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.17+ x86-64 Details
secretsweeper-0.0.1a8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
secretsweeper-0.0.1a8-cp312-cp312-macosx_11_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 11.0+ x86-64 Details
secretsweeper-0.0.1a8-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
secretsweeper-0.0.1a8-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
secretsweeper-0.0.1a8-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
secretsweeper-0.0.1a8-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
secretsweeper-0.0.1a8-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
secretsweeper-0.0.1a8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.28+ x86-64 Details
secretsweeper-0.0.1a8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
secretsweeper-0.0.1a8-cp311-cp311-macosx_11_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 11.0+ x86-64 Details
secretsweeper-0.0.1a8-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details

Total release size: 2.5 MB

Release files / secretsweeper-0.0.1a8.tar.gz

Download URL secretsweeper-0.0.1a8.tar.gz
Size 25.8 kB
Tags Source
SHA-256 checksum
How to use checksums
bbe588840ff0c50c0a0f0fa89908e8c6ce5f84ec4172ebdc6b1ac072cfc5c73c
BLAKE2b-256 checksum
How to use checksums
fdcdfb7f1d76c98cfa12a13f51bb31d3cb9d8e90c94a0cfe9fae04dea2bae031
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314t-win_arm64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314t-win_arm64.whl
Size 102.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
6bcf7694349d8ab841e8211dfa1df97b457a6340c8add1c94632570d8766702d
BLAKE2b-256 checksum
How to use checksums
1ea4fabac6d2584d86c5db87c5e86ac40f6a4a4f34d79c51dc3254c77bd829ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314t-win_amd64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314t-win_amd64.whl
Size 112.1 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ed07eb158abcae47b1770a9c7f9ba31e47cf61ba9cae53a207b24c194f273e5d
BLAKE2b-256 checksum
How to use checksums
76d84f57f642e378022c7fd9dc07413b896ded429cf64475546f388fc841be61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 45.2 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2762f479c398255eb1ab9029f650a8374fccfbaffb1c146e7b4fc8f054a58fce
BLAKE2b-256 checksum
How to use checksums
be238f4137e11da4d77744b8df17569a15e659284f4d10852a0a13ae1ee22fc2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314t-musllinux_1_2_aarch64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314t-musllinux_1_2_aarch64.whl
Size 44.9 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6037d1a9b1a57af57859569bd17756d19c49ab1ea6d42ec2d8c9c1117104a8a5
BLAKE2b-256 checksum
How to use checksums
cb7095c2f1fe9da0762f5e575798b20cbf3ec6fe3ce2207f5a76d7b90d84f046
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 44.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0dbbbee7272e7612ee1f8ec11d3ee4c54633f320213f35cd71b377a88a97fe8f
BLAKE2b-256 checksum
How to use checksums
16b367924d8536e7292f5a76a7a69282f54f41a6c1227805d4efea4e4d76dbc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 44.5 kB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
b609e91e7bb394ce71804f288ed71f601e978668ac3714166832462009f0003a
BLAKE2b-256 checksum
How to use checksums
40f5d97e8eaa60f039c6a6a6b4e3f13ad50a76864134507e5b62d8eb8d168d6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314t-macosx_11_0_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314t-macosx_11_0_x86_64.whl
Size 17.2 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
f294762081e880183846591372e724d6aa9ffc53408d7c211f56850e1affbaf7
BLAKE2b-256 checksum
How to use checksums
4d41993da722a0bb27f62856da854c14de1e73d278a064340805b18c7a9369b3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314t-macosx_11_0_arm64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314t-macosx_11_0_arm64.whl
Size 17.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
47b6a1ef7e66046824e908c58e2d51f4d599f67b1f30051b6b3a466650d55b3e
BLAKE2b-256 checksum
How to use checksums
86c39cebbcb19b8310f2f6310ccffeefbc4057ee680c3d49c9f15ad0cb203768
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314-win_arm64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314-win_arm64.whl
Size 102.8 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
e160fc6dcb85b5029c8ef75c52528dfd3cdaf27de0e03a1758516f6752140f0e
BLAKE2b-256 checksum
How to use checksums
063eb8b7d14e66f5f8ab24da491e5749be212f7369d2dc155f86d457e32d30f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314-win_amd64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314-win_amd64.whl
Size 112.1 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
4863c93ad698ca09b283c21f99ace93bb998af9acafc24a7340cb20f03c435b6
BLAKE2b-256 checksum
How to use checksums
4d002974579e31c5bc055c6787134fe463e812a1ea4765cadbade662453cb3ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314-musllinux_1_2_x86_64.whl
Size 66.4 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
81a2d0e7845fcb48f1d3876c684276a80d88c64680247962557bc5351609e17e
BLAKE2b-256 checksum
How to use checksums
06aac6e1cb6835cc742b82314df095d1b2a5a8d5ab510b98b85d1d68cf7f559d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314-musllinux_1_2_aarch64.whl
Size 66.2 kB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
0e3f0c416b5656178fde1d34a82e8dff1faab855a3103fa11f369ad843bc41e5
BLAKE2b-256 checksum
How to use checksums
b56f9c6cceb61d13c5f7d3ae4b85ec1021729071f3d525e594bbbfbf1e14839b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 65.8 kB
Tags CPython 3.14 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
aa3b1569f7c5b148f78c4578b2d5b9af03598c2c932eeb5dd6322381f9dc6a61
BLAKE2b-256 checksum
How to use checksums
f3fc2f8edcc601a91b20a443bda13de89af14ce92a4ed30b194dc37b57a670ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 65.7 kB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
52e6bcb49f9e9f17c9d9a017231141c22d171ca2c1c8e1104e7cf2f44194a055
BLAKE2b-256 checksum
How to use checksums
a478fd48d4a46ea436bbfaa792e65bf56dea396ef47ed8c291a90b8f561a48bd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314-macosx_11_0_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314-macosx_11_0_x86_64.whl
Size 21.8 kB
Tags CPython 3.14 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
4a240af5873a02e0a1cae45fae4b3410e74569c53fb85d48e7284bdd5a8a3ed6
BLAKE2b-256 checksum
How to use checksums
062b846c9d26a19e1310a53c21c7646c04fe34d6d9c8e8d9752eaec2d665fd59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp314-cp314-macosx_11_0_arm64.whl

Download URL secretsweeper-0.0.1a8-cp314-cp314-macosx_11_0_arm64.whl
Size 22.3 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
318d919805fdacea8de41d20be6a8036e2561d2bd628f4d14f04ed3f44894f0d
BLAKE2b-256 checksum
How to use checksums
fab1918f2b515cc427f13b6e431f96f6513568ab423bde3271e3dd72879e6936
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp313-cp313-win_arm64.whl

Download URL secretsweeper-0.0.1a8-cp313-cp313-win_arm64.whl
Size 98.6 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
845f07553de3d3659f962c92fbff7a5f2b2e7df9d37b7c7392317a107946e9dd
BLAKE2b-256 checksum
How to use checksums
114d04c7061f2acc8d47a59911ddef53ac8a7b11bb50157a12446888f207ccca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp313-cp313-win_amd64.whl

Download URL secretsweeper-0.0.1a8-cp313-cp313-win_amd64.whl
Size 109.5 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
4ea512d0197d2120f0c1a4c330bdee8eff9e88b237bb0ac5ba4ee50a625c762c
BLAKE2b-256 checksum
How to use checksums
c772086af472614fdf721570b1c9726bedecb4073a91d8e61d3a73340cf95a07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp313-cp313-musllinux_1_2_x86_64.whl
Size 66.4 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
583fb0aedb5553f89db0ef2e7721be3d16edaa97a84041b61fd27a17658c42ab
BLAKE2b-256 checksum
How to use checksums
2c02b2cc8722702bd6257d37a06e19e1cb611355789ed3e0c72013b36853c872
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL secretsweeper-0.0.1a8-cp313-cp313-musllinux_1_2_aarch64.whl
Size 66.2 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
994aca88cb2183af9a6273b54943799e1d46502adc489de1e8ccfe63466532b8
BLAKE2b-256 checksum
How to use checksums
817086ff421cc183c495e90964c2106676754d81e8a4eb796cbb2a1ca7b9c321
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 65.8 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ee83ef1ce3b8a571a3d248f616cd12807697f0226c80da62488db69c7a02b60b
BLAKE2b-256 checksum
How to use checksums
0b41cbbdd2dc37fb65cde2e88db2dd782926f1257e649f6f9577f75d6d13c92a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL secretsweeper-0.0.1a8-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 65.7 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
84eda63ac33796a0a29ab68b91ee2d6439b489ec2e0977fffb887ebef7e0ff4c
BLAKE2b-256 checksum
How to use checksums
278f14e90fc0b9de96b7cd6c5bf93278c429f3301b76142a7d79d0b410741cf3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp313-cp313-macosx_11_0_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp313-cp313-macosx_11_0_x86_64.whl
Size 21.8 kB
Tags CPython 3.13 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
0f4b59d5cc8e006e0956a07365840cbf15888ecbe514bd854eac6bbe2992735b
BLAKE2b-256 checksum
How to use checksums
a6ef2efba4f54fedbb88a699b7ea6e2ec9dd6c23e4ca9e47d4ba506f7c61f095
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp313-cp313-macosx_11_0_arm64.whl

Download URL secretsweeper-0.0.1a8-cp313-cp313-macosx_11_0_arm64.whl
Size 22.3 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
bc3964a1a592e092a4a0abd0047e293fede52d30200d42732747704613762cdd
BLAKE2b-256 checksum
How to use checksums
806f906bf70477e76a6e05efbc0cca0e62b1f6a7b5842d191e7872351651c1a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp312-cp312-win_arm64.whl

Download URL secretsweeper-0.0.1a8-cp312-cp312-win_arm64.whl
Size 98.6 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
7a09b0de08dec786631302ad4cb1cdec0228664f0e7977e3b2bd47e2bce4c55f
BLAKE2b-256 checksum
How to use checksums
5426c6c9f4959360b5f32f81affc174c58e94666cb1da1828c52a5048dcafef9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp312-cp312-win_amd64.whl

Download URL secretsweeper-0.0.1a8-cp312-cp312-win_amd64.whl
Size 109.5 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
6671da6a021cfb6d25abde48562dbfa75d1d1ca748902a70c24d08ce6066952b
BLAKE2b-256 checksum
How to use checksums
c12ac5d2698ba7d3001464767d4bada47795dba47670f8c6a16d5a8913b85de5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp312-cp312-musllinux_1_2_x86_64.whl
Size 66.4 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
fed7ef80acf077285183e6f404da5ab100d33bce890b102cc50a633ae917028b
BLAKE2b-256 checksum
How to use checksums
1b276960eb2c79aea2eaa331b06951ac85da1160a321ac1f5526482ec3e375a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL secretsweeper-0.0.1a8-cp312-cp312-musllinux_1_2_aarch64.whl
Size 66.2 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
5f5d6e2fbed7f957c6b8d00c7d237c6b99d20194f014aaf2e7cc58889b06d146
BLAKE2b-256 checksum
How to use checksums
56421ad2535a3edfefc87774b7cfcd17cf234a5148274ed7d8b1a7a0709bc710
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 65.8 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
6206f1bf4298854a915f958cd6a943b8397ceeed9970294ba10f83308de7a8c5
BLAKE2b-256 checksum
How to use checksums
cb13850c9f0bd39aaedaf24892b154de959685660faeeef531ce21c1247cad9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL secretsweeper-0.0.1a8-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 65.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0c99164674b8cdebaa09056419a7d88d1054344a4c0fcd4c1c0f944aa47fc2e8
BLAKE2b-256 checksum
How to use checksums
8cbf704448b0990bb83fb66fd479ea022c7a93cab9b1badc11027aa9931b4aad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp312-cp312-macosx_11_0_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp312-cp312-macosx_11_0_x86_64.whl
Size 21.8 kB
Tags CPython 3.12 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
2ef72d9eaadf438f30cdaf8063c33972ed5f7d9885253cd3d8d742ee21d590d7
BLAKE2b-256 checksum
How to use checksums
1ad6fbaae1d1ad643469dfb75b6032cbd25d6c5b8e16d6277592c50943a008f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp312-cp312-macosx_11_0_arm64.whl

Download URL secretsweeper-0.0.1a8-cp312-cp312-macosx_11_0_arm64.whl
Size 22.3 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d5483993228040fed54d638fd618f5a106f826e1912b1b8a45fc9d3a56e12c08
BLAKE2b-256 checksum
How to use checksums
f2696fd8e3a24994f696cece67ebef113090069e1c01275f4097c62b78f29a48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp311-cp311-win_arm64.whl

Download URL secretsweeper-0.0.1a8-cp311-cp311-win_arm64.whl
Size 98.6 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
09a09a2fd000bf1c0fc4dec6821d456582e72feeaa1b61f39cf4d3462b6ecba1
BLAKE2b-256 checksum
How to use checksums
91da91e0b668a8916354105684b20fafbbf3870a5d55c321b577a744554f70e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp311-cp311-win_amd64.whl

Download URL secretsweeper-0.0.1a8-cp311-cp311-win_amd64.whl
Size 109.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
d5561dadcf35f9ccf755e9db7afbf5fd48a96cdb9c9dd2d22b718245fde160ff
BLAKE2b-256 checksum
How to use checksums
2d05eadab150b8ceb85e1f2294c914b60d0aa63babfea3f513d6f269ff9170ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp311-cp311-musllinux_1_2_x86_64.whl
Size 66.4 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
bde7c3c104acd9ba21005443f633573a40be713c40f72ffe08e224d2bef91817
BLAKE2b-256 checksum
How to use checksums
624331fd5dc8604c52e3293ac7b1d863307ee55aa6b5a28e6f2b0493eb961f85
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL secretsweeper-0.0.1a8-cp311-cp311-musllinux_1_2_aarch64.whl
Size 66.2 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
01d2524bfb102cdf51227ad4e2a3267b974801f26d8ec2e92f8c09242f20e523
BLAKE2b-256 checksum
How to use checksums
21a1e94370c86d13305e36faf93ed5169a0121c4bc238d9b9d6fd3472121a1db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Size 65.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
7df001bda0429d4d14ffc9602983132d650927e78e6c4fbd6129df3009b41094
BLAKE2b-256 checksum
How to use checksums
8657de3289becd4c7679fa50449c0287354053cf262526830dbf6d89eef611fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL secretsweeper-0.0.1a8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 65.7 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
81ad62c1c0e70504f3b8317a5e9f1cdc7d97358aaedc451788863d9850cc6272
BLAKE2b-256 checksum
How to use checksums
ea394cbbe000ab2d0c0a0ff575ea0fec605c5e8e9fc79f3a8f6132d08c1fb035
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp311-cp311-macosx_11_0_x86_64.whl

Download URL secretsweeper-0.0.1a8-cp311-cp311-macosx_11_0_x86_64.whl
Size 21.8 kB
Tags CPython 3.11 macOS 11.0+ x86-64
SHA-256 checksum
How to use checksums
225d5bd182096518e44f6f4cbe575cffefeeeef1c337a9eeaa2f92754063ef09
BLAKE2b-256 checksum
How to use checksums
c66ebd5b5d772a14652430156fe691a0a9f4f07c297584dee298871366eb423a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log

Release files / secretsweeper-0.0.1a8-cp311-cp311-macosx_11_0_arm64.whl

Download URL secretsweeper-0.0.1a8-cp311-cp311-macosx_11_0_arm64.whl
Size 22.3 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
16bbe63a8524b7d482df7638265c6fa2fb89d31079dd38defe77299d2042b55c
BLAKE2b-256 checksum
How to use checksums
dd8f6b8ba37120371c8a7820c15fd9b3a328a51141f475c6c23871f1c3ea3b61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/6.1.0 CPython/3.13.13

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 6, 2026.

Transparency log
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page