Skip to main content

A utility to extract rust audit information from rust executable if audit enabled

Project description

A python package that extracts rust audit information from rust audit based executables.

Example usage

from pyrustaudit import get_rust_audit
import json


def test_get_info(file):
    res = get_rust_audit(file)
    print(json.dumps(res, indent=4))


test_get_info("foo/bar")
test_get_info("/usr/bin/du")
test_get_info("test-data/centos5-plain-Packages")

The result returned is always a dict object for errors the dictionary returned contains a key; "error" like;

{
    "error": "path error:foo/bar"
}

or

{
    "error": "/usr/bin/du: could not read Go build info from /usr/bin/du: unrecognized file format"
}

on success a python dict is rturned like this

{
    "packages": [
        {
            "name": "adler",
            "version": "1.0.2",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "auditable",
            "version": "0.1.0",
            "source": "registry",
            "kind": "runtime",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "auditable-build",
            "version": "0.1.0",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                3,
                5,
                7,
                15
            ],
            "features": null,
            "root": false
        },
        {
            "name": "auditable-serde",
            "version": "0.1.0",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                5,
                11,
                13,
                15
            ],
            "features": [
                "cargo_metadata",
                "default",
                "from_metadata"
            ],
            "root": false
        },
        {
            "name": "autocfg",
            "version": "1.2.0",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "cargo_metadata",
            "version": "0.11.4",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                11,
                13,
                15
            ],
            "features": [
                "default"
            ],
            "root": false
        },
        {
            "name": "itoa",
            "version": "1.0.11",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "miniz_oxide",
            "version": "0.4.4",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                0,
                4
            ],
            "features": null,
            "root": false
        },
        {
            "name": "proc-macro2",
            "version": "1.0.79",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                18
            ],
            "features": [
                "proc-macro"
            ],
            "root": false
        },
        {
            "name": "quote",
            "version": "1.0.35",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                8
            ],
            "features": [
                "proc-macro"
            ],
            "root": false
        },
        {
            "name": "ryu",
            "version": "1.0.17",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "semver",
            "version": "0.10.0",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                12,
                13
            ],
            "features": [
                "default",
                "serde"
            ],
            "root": false
        },
        {
            "name": "semver-parser",
            "version": "0.7.0",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "serde",
            "version": "1.0.197",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                14
            ],
            "features": [
                "default",
                "derive",
                "serde_derive",
                "std"
            ],
            "root": false
        },
        {
            "name": "serde_derive",
            "version": "1.0.197",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                8,
                9,
                16
            ],
            "features": [
                "default"
            ],
            "root": false
        },
        {
            "name": "serde_json",
            "version": "1.0.115",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                6,
                10,
                13
            ],
            "features": [
                "default",
                "std"
            ],
            "root": false
        },
        {
            "name": "syn",
            "version": "2.0.58",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                8,
                9,
                18
            ],
            "features": [
                "clone-impls",
                "derive",
                "parsing",
                "printing",
                "proc-macro"
            ],
            "root": false
        },
        {
            "name": "test-data",
            "version": "0.1.0",
            "source": "local",
            "kind": "runtime",
            "dependencies": [
                1,
                2
            ],
            "features": null,
            "root": false
        },
        {
            "name": "unicode-ident",
            "version": "1.0.12",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        }
    ]
}

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

pyrustaudit-0.0.12.tar.gz (6.6 kB view details)

Uploaded Source

Built Distributions

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

pyrustaudit-0.0.12-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (978.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrustaudit-0.0.12-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.12-pp311-pypy311_pp73-macosx_11_0_arm64.whl (981.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyrustaudit-0.0.12-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyrustaudit-0.0.12-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (978.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrustaudit-0.0.12-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.12-pp310-pypy310_pp73-macosx_11_0_arm64.whl (981.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyrustaudit-0.0.12-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyrustaudit-0.0.12-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (978.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrustaudit-0.0.12-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.12-pp39-pypy39_pp73-macosx_11_0_arm64.whl (981.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyrustaudit-0.0.12-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyrustaudit-0.0.12-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (977.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrustaudit-0.0.12-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.12-pp38-pypy38_pp73-macosx_11_0_arm64.whl (980.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyrustaudit-0.0.12-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pyrustaudit-0.0.12-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

pyrustaudit-0.0.12-cp314-cp314-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.12-cp314-cp314-musllinux_1_2_aarch64.whl (977.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (978.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrustaudit-0.0.12-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.12-cp314-cp314-macosx_11_0_arm64.whl (980.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyrustaudit-0.0.12-cp314-cp314-macosx_10_15_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyrustaudit-0.0.12-cp313-cp313-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pyrustaudit-0.0.12-cp313-cp313-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.12-cp313-cp313-musllinux_1_2_aarch64.whl (977.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (978.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrustaudit-0.0.12-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.12-cp313-cp313-macosx_11_0_arm64.whl (980.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyrustaudit-0.0.12-cp313-cp313-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyrustaudit-0.0.12-cp312-cp312-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pyrustaudit-0.0.12-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.12-cp312-cp312-musllinux_1_2_aarch64.whl (977.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (978.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrustaudit-0.0.12-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.1 MB view details)

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

pyrustaudit-0.0.12-cp312-cp312-macosx_11_0_arm64.whl (980.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyrustaudit-0.0.12-cp312-cp312-macosx_10_13_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyrustaudit-0.0.12-cp311-cp311-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pyrustaudit-0.0.12-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.12-cp311-cp311-musllinux_1_2_aarch64.whl (977.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (978.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrustaudit-0.0.12-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.1 MB view details)

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

pyrustaudit-0.0.12-cp311-cp311-macosx_11_0_arm64.whl (980.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyrustaudit-0.0.12-cp311-cp311-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyrustaudit-0.0.12-cp310-cp310-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrustaudit-0.0.12-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.12-cp310-cp310-musllinux_1_2_aarch64.whl (977.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (978.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pyrustaudit-0.0.12-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.1 MB view details)

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

pyrustaudit-0.0.12-cp310-cp310-macosx_11_0_arm64.whl (980.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyrustaudit-0.0.12-cp310-cp310-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pyrustaudit-0.0.12.tar.gz.

File metadata

  • Download URL: pyrustaudit-0.0.12.tar.gz
  • Upload date:
  • Size: 6.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyrustaudit-0.0.12.tar.gz
Algorithm Hash digest
SHA256 d3235da59aac6df6a875b2b31f25ab81d6ddbfc10ce8e7a119ffc89c7db59104
MD5 a2ef7232e698bd6bccbc4eac1d8da3c8
BLAKE2b-256 851bfa45cb5ef6f30b2f424283acda49c8c27ba1d57fa8709f7b207eb6c7c0f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12.tar.gz:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6861f23d57428746e7903fec2cec2e360adce8aecd5dce7652b9cfd8a3345c8a
MD5 b0c0f3aa5101406b126f4661b5b62261
BLAKE2b-256 70e29d7e8c57b6cf812ad8012b1e9e11231c932d608e82bf73d726a5a5761ca0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ec3af154fae03e740ad3b47a33d04436fa5f38c85b464b35b9c62cfb828c3e71
MD5 f58fa95d82208e77ab769ea9e558828a
BLAKE2b-256 78d40cd1bef7db4fbd54e0aa1ed653ae8861f5ad1d331596dcf11cf1a992b4d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb4d6f13107fe13fac369ba10b9de89f7fc7da12785232370f9349c49aa0f0db
MD5 a88bdafbe4440c01ce12b7ccf207a537
BLAKE2b-256 9cdad918c7aef468503aa583695170e4abfb032c5fb478ca7efb5f77d59e4c67

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ae5af18ac9b3c919fcdd1e7ecb760e7cb4a930b9e051f577791b3ddf4f57c5ff
MD5 b9d16966981758a8ff2f592bcdf8c227
BLAKE2b-256 77e59478d270b9d0606c0de465efcc704348441594b4a21499186c884e8f6070

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26b4b0617911a56a727d88204be2ea0f3f7daac3ca404c6938ccda0544d33a2f
MD5 85b9c27a47ca50759a6cff39d1f52a1d
BLAKE2b-256 ea1ed4ed12e2c7c4ef74be3ae8249a066fa512326f84df3befd810094f7db4c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 932e425f0b20bb04c285050ce5f0a822dfd3b36ed44e13e1c0c7b6f411ff2467
MD5 7c86df8b68882caba114a2f6112b9169
BLAKE2b-256 b5cb295a9f0d00d9e7e3a3c396f64762732369ab56fad490cdc1d1e65875d36c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5cb875d277eca5c10c18aa176c7d36c590436b0108d780ade55b60ebb50ba72b
MD5 99310bd1482ebea6c2d662834d4d4e08
BLAKE2b-256 27cb5ac720405b860f38049631d947ac9f0cd8818e297a8ba4fd8e79bb1b4720

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bcf473dfe6e6bcb3518d214baf5e73acf2e72a8384bd96a097c44cd7e84c6622
MD5 027bf889a75c075b37b02b6241698032
BLAKE2b-256 23048ddfac844bd084ddae2c6ff100051c7133cb4f7b53dc0c42e566ccdcdacc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d68d44814e99afcaa0142aed11b137edb1e8b05b9e2543b559c9e724ecc6ba8c
MD5 c8cd1034301dfda41fdce9db7097964d
BLAKE2b-256 bbe755bc52dd180fd10e9800e44e9e5806ac21d3d25668de53fe6b9114c8d917

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3b48844cb086ea57c86d26700a8bfc6357e45d007101fb170454abe318863e02
MD5 d470974eafba3976efb43e7599a5c090
BLAKE2b-256 8f53441f7a43ccd1542568148d2bf52b4cd28e0e85f42af83fce2e14c50bee77

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75e9eb0411ec6b4ed8184ca50dfede6496313cf014ac01770ee92856e2a1feb8
MD5 943a3a126beb1f6f248ce861b3c9df31
BLAKE2b-256 05915861883605fbbdaa371a8cad60a3a3bc06e8324f202cb4c68299b5c5c700

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6493c79124358128809f758794b073416a06612225627d614d0ac2ea07402950
MD5 b3b3425bb63f39e149fa78a477d43dd1
BLAKE2b-256 28bdc6b80051432fd53b01f008f252585156c54510c04ca6a9eb6cd01e788652

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f45ba9c571a8a0d6c707592752ec4481bbacad38120c340f33748304b533db5b
MD5 a9bc3250ea684049991dbcaaa51d8577
BLAKE2b-256 ce40f7ffe8c4ead9406ba82a10cbc8c0605bd14c0a8be04770bf199f60abd39f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 63ab7234ccb25f17f60b07d78e06a7e61de7efa2bd907e69e813d69553378b70
MD5 8a075b34b9f668145a93c5803a5ed4d8
BLAKE2b-256 42e416a6032fadd50e6e2bfd61b0def25b30848da71aa68ac59a5bf360e51a36

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 957e2352119376b3cb9464e04c20e2a752f1f94e210ca1de6893fd1ea36be7f9
MD5 1eb301ef2464c95734533aed30ad2e5d
BLAKE2b-256 4a9b87feaf0d7e7960df9b02ab3f34574a375f13b657afe2a4466dd2e03d51c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 71fe54600734491b3b1a06b1ffc05714e23517554e479339d0b302ad3713dccb
MD5 d001a115e4405a578520321930cf213f
BLAKE2b-256 c80237e1883a1a54e386302f087d0a5f8682cb6b770291a5d0cd12f3b1a2e862

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-pp38-pypy38_pp73-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3272574af6a217d78473572deb5beb4a4d644b11830e1e6024b9f6c2f8eaed23
MD5 a9f07e764a3fab3581c17e617be5246c
BLAKE2b-256 4b6b51f13c4ffc45ae11dd4b659b9e1a98c4a044350862a2873ebd082d0985b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99fc4c0712448b6ebb63f0959cc0b0cf801010b2692f9453bb080cc27e5982a0
MD5 d0f41644abcfaaae6650b4133e8c5f94
BLAKE2b-256 94923d383898534d616d43051e37d8589f4bc863399fef1736462a4bd101a378

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db4f197d11bc16471c38fe0ba7c664aa30bcd6cda8efc21378fc4caa57d630df
MD5 2c91b8bc5f37097253a800689cfd44af
BLAKE2b-256 254a60f7a56679c2912e478b2b8e6d69ea1c3c0c2660e376287071ec62d43e0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7664282760942a8135554319e23afbedbfecc1bcc612a34e2bff0ae1957eff2a
MD5 050d84b970b96cd6e63333bb1b9d1f6a
BLAKE2b-256 6eaf38ddac0b27722d6732cd790fdacef56afa028580dcee6441d28a786b761f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 030fded9c2cecbe851b706ad021887d6ec21e2857adfa52785e54724d613c626
MD5 f2734bf1365476b3e7b46e5a3ad4ca81
BLAKE2b-256 17f57ee1f433c09144e29012f73db6832228ece0cbdf754fae7c8de988fd5afc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54e5f8a959dea4f192d58859d53f359b7e18b859a37a66a0b8bff3ecacb0f6f7
MD5 6d5b7655e54e33807dc8dc478f95c76d
BLAKE2b-256 86a099b4d2be19bd42ee0acfe21ed4d29a8a542a9ef4ef8ae4fd741221c1b519

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f904a819efb976f78192ff287c6188ea45bdbc48a91b30b6e27db1894e83347f
MD5 548e552a2ac5491fdaea9d698f2e42fb
BLAKE2b-256 bb1edff0eeafe40683342db127b3b630bf14e7b7f7e18f59412da277ca93dffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 22eada689416026a32aeeb5f04e370fb16b98a6198b4ab8dd2a76f38752e8bbb
MD5 5ff5905f8a245bfa812cc00b89369983
BLAKE2b-256 19bfe99ab8b4f0ace58ca2b79eac793ca964efa06e01169027434de6ea3d43b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf73d331c7764738aa59b9d7689cfc1e4f8169251050b33b8312480026323a87
MD5 5f061a5784a3c0051e9ae0bac2d7b854
BLAKE2b-256 bd9a17cfe8c4494cd1e39fc2524f06d6a34f59a9a045ce11fa47ef8d682c408b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b502abd3bbde612891db46161d2e56eebb61a0388ea393add21c6b62f22cef7
MD5 29ade63e9037b2969a666742834899a4
BLAKE2b-256 44fb86d76b96650597cf684390877c70a37d844b5f04020cfe4cb32d988c939d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1352315440db8b7115d1841804c34c3aab0cfa77246ea19685625d373692d878
MD5 3339b2e6b2fb668ee5af6f3a3e6a9a45
BLAKE2b-256 f954f4d01828b5866528b6d3992778bc6b603561ca3e6bb6ffc41956b80f71a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 66f4d2101519fb4460179171571acd3bc4fa3a30eb5630c0b6372ef330718c5e
MD5 3a92475be06a0cd467332922739337a2
BLAKE2b-256 df372c96db9092705da97dc5702c4b5fe64c1dcdf8ea1828c22f0e6e2a91bd70

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5e64d950947d48c67e81d6c7164fc97bec2fe4df94a5c5afcbddbb734892b56
MD5 822828911eb8bbed1da7a48098527b5a
BLAKE2b-256 0f3b5b138a8a42041ca2382affe91f75c69daeaf7c31017f19f354f9217fc1ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bd5d3ab82d77dd63e695da7e4c0397239b99bee276f213ab8f94de576bf83107
MD5 ca83d7ebf9c13b80038cbd97de742b89
BLAKE2b-256 47ee460f00bf971815a032232efda292d27f1e36f7628a417c990ee5c6331610

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96842171b588dff13da58a12fc95b00107dea99c53e9763402fbc5043dff826b
MD5 ea52305d0b727c65bbd6d0c135dfba49
BLAKE2b-256 4f1dd4c019db81662000c1b71f3be0232d3e14d8c639cae785c35d0565b2fece

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ec2c5378ed674624b15a667ed3ada827bd89d08c740e922abdce9e558f07cc0
MD5 504ca20a11004407116f4882ca0d5efa
BLAKE2b-256 9e38d86090a0b59613936c25c6c78cd4c1a023633243d84598a59170bb431433

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7087c931fc155d82f2dbe2a8e388d64c953dbffbec4bbc39a2c8aa244236898
MD5 e96ec515ddde3e02966b0326c2b7b13e
BLAKE2b-256 27d72f3b1ae4db4b425775fa44fe83cdaa6dceb3af661a162a8e8d5eab2d5ae9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 56356e84891394f2ae1044809508863c7c4747f245e47a3fac6e6e2b3e5ea61f
MD5 9c95adb4412edffaad081a95794e89c4
BLAKE2b-256 2ab71445fa441e121617c6c71f34399687df733572f99151b1753575055a6520

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b287c0d71fb59670b29ee58852be18dce5f298300e7b38aab05856fca9d0592e
MD5 9ce9bcb849c8a5530d9f41ff0d9ff81c
BLAKE2b-256 793c9843351fd170f7d31e14ee72b6c3dba6100e7df40d1c3ccd1b61396d4c0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b28b6cdf74d7197ec19514fceb9f65c1911c7c1342be0090c41068187b73466
MD5 96af76f00e20eb72a4120bd4fdbc616e
BLAKE2b-256 4970acc652da406ad6d5ecadb81ac36fc8c2025f8a1f761eba0fe74c75943d1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5a1e438f91652dbeca6e5056a228110d63ff486d8e5a7114cb784cd929b12455
MD5 67f9aaccd4e58a5048c111cab88a669a
BLAKE2b-256 51aeaf2726f7aff2fca492747fd19cecbdd1e697f28339841818dec82fe1ed63

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 754938abcab4f34c871a5e44cb598da85c0a56bd86125e8cb3d4b4dcb457ddf0
MD5 11c1d28f363455694218e2e7eab7510b
BLAKE2b-256 cc5617ac9c1baed142908c5bb616d6720bf9e07a4464dcfa9a560c36a5af2f17

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e91f95da01fa1e038dfeb0f12d0c0dc94edbec8261dcc266f5c238ba05328b2
MD5 fa8b3f06b9399e43b3d40695f2997613
BLAKE2b-256 8790cd383e6e956546475ac8b81c5646370e53205b9b6bbac89ff32487ee49fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d43e7ed6c93200d59f728ba9cc5ba014affb105b36f2fd15a23c0b34007d4aa
MD5 af267796bc7fd07a23b77026c09bb998
BLAKE2b-256 3a94156cadf471e724b469c9dbb2071db5c3c0d0ef99bfb00da3a7e2040ebb5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac2060313b4f3fe098d44db2339c89d8145234793922d3412df07c2be357ee3a
MD5 2bfabd291d65fdd70439b958774e9f25
BLAKE2b-256 c3093577a946a3e7ab5c1af45ce57932396f51effc6c890521fb971a682e9b54

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8dffa87212538360b5c2fc94b812421a0e1b39a94a3a27a05390c06e9ea96a01
MD5 d68a97700c9b33b0392601c1bf2f77bb
BLAKE2b-256 9102be174556382d6160641e31f4fa8b7a32bec00b08aeadaa90b2836326edb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19767e0ec58260742d1841d28c831b13c30ea6b5cf41a2b41b2cf00e022b6658
MD5 beae82fa0d24547e97b8771c5d52c47e
BLAKE2b-256 d90715d39ebc4f20b9dcfbabf7c595e1c4ba1b5f7dddcfc0467e65cafb70a687

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1627df3a7b4b2063617da1275a7d6db7ee90eb4a464a011ba069e920b5eaa325
MD5 7b772f5413df583e7feeb9c4a4cd1a2b
BLAKE2b-256 ee080a16da277c52e828355faa83387108299cab8101fd00ca3fd9c24b03dde2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 47d97fdc2eaa4dec25994d1bf2f019d6301538e542066d7cc98088bb35330567
MD5 423925750048bb0114fd3be0910ec318
BLAKE2b-256 a76d1f9eaa764f1ae135a8b7f063904656ae4511f6caa35eab2c0ac98c63630a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f1c36f3b8124b1e38df0eea7e5abac4f5f81674285d4345d1cd8eaa93ea9b52
MD5 267da570ffffb8490b59a75a8203449f
BLAKE2b-256 15aebdf8cc771bd2998393a96cb9f094c62b1774fd09db758f0e71e49f0987e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3126e88d33bff4a67ab506e47e9a885954cff3ce30cb9289ff9496db0f8d5cfd
MD5 cab5e4770b392ae9219d595e4b53e7a8
BLAKE2b-256 623db8b8d2ea9633f19b2433285639003d517d2e9f3e80e6040865ca3647840e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9377f9fd5fcb77d6ce539bffe3e981279086dd240bfb861889a2406537cfec34
MD5 4473ce27e3a7bfb3bbdc6dd05d91aa6c
BLAKE2b-256 18add126007e55884210160692443a268a01696ca545ec18953caf779d6b15b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b4757f27039fe2d76332a86701422d1d9f9cb649813438bab9dc3cfee601e050
MD5 c365137e8f085422473f9c7d8e67030a
BLAKE2b-256 c02bbf26594bf03c6f789e6fc05ce639115ac46b5984610507931810f3ce6e14

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 797d0af06354f0604a5a9f4db624c79ab45916821ab7708d5ba5c87b9607eaa7
MD5 10a4095055a3a666850d04fcd065d6e7
BLAKE2b-256 47c8d1bee0e5780f5a3c4c1764646e0aac225257114a4bc13d6e3ed5a74c36d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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

File details

Details for the file pyrustaudit-0.0.12-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f3b83993512f662f87c7d4667ef9131839601a7c52fad545e8b383df02a5b1d
MD5 e60246ebe33dd083f600d316784f27e5
BLAKE2b-256 57c304da7bca0ed506a84ac00cee3e19228e5b395256b86112bc83c4eed9240e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.12-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

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