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.13.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.13-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pyrustaudit-0.0.13-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.13-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyrustaudit-0.0.13-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyrustaudit-0.0.13-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pyrustaudit-0.0.13-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.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyrustaudit-0.0.13-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyrustaudit-0.0.13-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pyrustaudit-0.0.13-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.13-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyrustaudit-0.0.13-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pyrustaudit-0.0.13-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pyrustaudit-0.0.13-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.13-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pyrustaudit-0.0.13-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.14Windows x86-64

pyrustaudit-0.0.13-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.13-cp314-cp314-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pyrustaudit-0.0.13-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.13-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pyrustaudit-0.0.13-cp314-cp314-macosx_10_15_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pyrustaudit-0.0.13-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pyrustaudit-0.0.13-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.13-cp313-cp313-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pyrustaudit-0.0.13-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.13-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pyrustaudit-0.0.13-cp313-cp313-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pyrustaudit-0.0.13-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pyrustaudit-0.0.13-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.13-cp312-cp312-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pyrustaudit-0.0.13-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.13-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pyrustaudit-0.0.13-cp312-cp312-macosx_10_13_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pyrustaudit-0.0.13-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pyrustaudit-0.0.13-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.13-cp311-cp311-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pyrustaudit-0.0.13-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.13-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pyrustaudit-0.0.13-cp311-cp311-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pyrustaudit-0.0.13-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pyrustaudit-0.0.13-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.13-cp310-cp310-musllinux_1_2_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.0 MB view details)

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

pyrustaudit-0.0.13-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.13-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pyrustaudit-0.0.13-cp310-cp310-macosx_10_9_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyrustaudit-0.0.13.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.13.tar.gz
Algorithm Hash digest
SHA256 fcb787e6d5e3d748cc12f509bdd0f040655c84c472fd9b4a9e5d483b1551e925
MD5 2793dd7285142ce4440acdd870637e7f
BLAKE2b-256 cb5f8a7df02ea3724c25c52df38ca5f3a122440e1802868e615deb9572b97adb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13.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.13-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a4e45790c8fb91f82f1e5d4c59674c83252044964f5d30d31c7c1c5f7dd9eaf6
MD5 2ae21e8d2ae78b960ae96bc068f6e8f8
BLAKE2b-256 a16e3c6459fc7d1d361dadd51b87c24af099449f8b8ced5fd57518421b7f9fb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-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.13-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2dd458675c593c3c4b45ff66bca21fbdc278f10f25f598827f3c2ed6176d4d08
MD5 32403a83e3fc2ffba5e3cd5d5d142d7d
BLAKE2b-256 dce8c70e78c0d170e4bb8982d04c1f877a4580e16c39c9e1efa9f1127fd1a8dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67066aab83274349d9da0579bd72b5760e5b4eb354619dae867f67924897d22f
MD5 1bf57b736060b1d6f9ff369028cd4252
BLAKE2b-256 8df7e60ffae4ab38c03525b0dd23ac9a8090ad006b1c3d4f2ec460f01b3b082c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2bffd74a1a64e9e1cabbbf9898b4b0f7dfb21c0bc8c4e7da7b9846c2f3dad082
MD5 556c543d177c73d66f72acf840c9e3c3
BLAKE2b-256 e669e4d1ded76bcd5965088648f0127e738395736e95d20779a7535681998eda

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab29aef6650ed8c3b71298945de9d476646ca306396a4bdd7e27d5cf9dac2922
MD5 0e81364317d0c82753fc16e5e317431e
BLAKE2b-256 248c49ca703f4e4f1d4f1219cf25c479ca101da5ee38013cd15396d1e9104789

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-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.13-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 276f57c898a8be1a969bbcfa838ecf3cbe183760e32065b08fbdd02f0263f3bf
MD5 5761c5b0ec84b6b69eaf0badb098ed38
BLAKE2b-256 b338412858b500408122ce4cd1104a59986a9ac8365cce7c4fb43b90433a4691

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a35d6c15e33a9bd04c15626263c61bf03824378e5f86ec3ed347359d09beb885
MD5 27d1d32d43db3a5e1f72c0ccf48f2bb7
BLAKE2b-256 fc5b7855ac1e715968d8486420d7c2a1d051c4b0bfca93054621b2f09b82d29e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 e6e53552e248df6d96c10d19c2db5dc9460abf7b7ff8cfc8acdfa704aaaf5926
MD5 01d5b8c82aeea2cd31275bfc3c343a25
BLAKE2b-256 99182e36994c26b038c5e327321b37eaee41454a0008bfaf61ade391c10fb2ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 efafa6543ae4fc3303ac410b1bda783af4bce6b2296f37c3d2cf97741819d02a
MD5 f4228a36d8e85995df4aaee4d98f5c63
BLAKE2b-256 3502d8664a8bfd76345058befec6e70b1c308fa998ec3d26f9959e4f72f7ee38

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-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.13-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 edd83f99eaf03bb4afba818f36dd59156427349e73a780ccf23564f2d88341e7
MD5 38b406bcfd1d5df73016a56cc05b6c5d
BLAKE2b-256 e180e7742cb26aa8f7e2bf3067d2289422a90214b7f71806b2fa6c50e7c6cde1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5004c77595ac1ffc9bc5ff50d89604ca034ad05a8483161bf79d7f281c369243
MD5 a6d7658bd81d6d06309d18a2733a6d8a
BLAKE2b-256 8623bab992ea81f0bf16e6a6aae208b1ab48d728719affad171ee35feadd9dc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2a7f0c8b7cd3cd8af48d421cac3cd3329bbbf1dc58d3747e443c670deab8d8c6
MD5 a08f02c0d60ab4bd76da0e5defb73598
BLAKE2b-256 2cbc6d7943bc8f05e92221115e2791611a212182c87bb1691b8b5165f5fb5ef6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1071c0685a47089eee3f23c2c2d50dbb401084f52e11b2d29ee0f61592ff5adf
MD5 be9a25e03143cdad951753b516652c7b
BLAKE2b-256 62e8eadd0e1192781e78a8cef96896d712aca80f46282ef47befc587b809a29b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-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.13-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4b0b33567bbc9bcd148ffe4baa5ec3020edad334e773a2e9b959159c52a8c76e
MD5 f2e3b44481756a8115d489b919b9358d
BLAKE2b-256 1be36d1dedd1b19a03e661cdc0c290a30a8d02363430c08fde8ca628efe2860a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbd849262e78901319ce60aedf07124d36e75b9f9454674ab2b65822ca84d7bd
MD5 097996567159e5f7f365b7a14c0255da
BLAKE2b-256 e3db84fd75cb2d167ba16b30e5cc154d0befa7fd98995b79a57e1b406fb30390

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c17420420900e07191c50902e8729188e4f8e2f4dbe9652506022757c8fc9915
MD5 17961c2e097e4e992cac6e0163acf0d5
BLAKE2b-256 cb3f6a1d2f4a6d4ef9ee9d711f72207ca07c28f250d140c366059b560a9c7691

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 45e1be94e245893973311931f542c770dcd9524dc9fd8600cdfa11b33f476270
MD5 9fb5b94743267a88b20ad5281cb9f7e0
BLAKE2b-256 e63e793f20aa36d81573259de256c9738ce9e50116bf3b4105312b51ba1c88cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c17724f67afb56a9edd571b369d71b27510d0ecfc93165e1648f8e8229238df0
MD5 2c3d245a96a7f77bdfe807670719c0aa
BLAKE2b-256 d0151ab92b5ce485cd43cf5d3cd8cbf93d0ac90c0db14de3f10bd73653e3185e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34ac120bdec1202f0ca03d25fd69aa8d82e187239941891e0621f8df2b66d19e
MD5 a5a3f4b24dde6c18113923b5e40d9e70
BLAKE2b-256 4b12a0ea29466f3c8662fd7170c77f0597ee130bf9515cef4f7b5df669fe0063

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b07aae50a305692ee90a2bf0b89cc41486e2b26f1cac652a85401cc845589f46
MD5 958893f3b7302e8419a5052690c3b759
BLAKE2b-256 273811c77abf56b1f2cbb9f53d511fdeb60312f6a42a06339ddaecb1fb4fbeb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-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.13-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6c5e5682ee3b4097228a0cf08b7db805e525c84295b5a35f74f1e1110d3b0ca2
MD5 9339399ed75213ee6a97916f7018bce4
BLAKE2b-256 1c7998f262f45ca94814f6fed3675b9e91bb3b43254bcadebd9341ed3cbda91f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd914254c9bed6e943786a361fbd79c014e35b735872770242c5c87fca48acce
MD5 43d04298569af63d566a9864c57b1610
BLAKE2b-256 0f0c033d96eeb93940df40b8ad286daf398391de154c1ae66012bf344614c73e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 77b9a583fe88e93e651ce010e8598c11ec83de49c7a8d74e292585f6334363ef
MD5 7bb3c37f635c7f6fbae327a22fa102fc
BLAKE2b-256 c7ed52d7221807248a0b50e1ef55123007ebe668ccd9d6df7b906a03e7cadf24

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c31ae6b7e32f63567e678bbf174cd3f6c89e1e39b5309b6c690f5dafeb606b5a
MD5 0074bda10e800f02427ca2c7c28e1e15
BLAKE2b-256 fb7a375548c548e43df4d83d8dd488bbc771b2d44b7ef2b3e6ff322d04bf084b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ce737bbc1b548c4951aca5d4b025789560c6d9e8e0fd7380a419d549020c70a
MD5 d154f504661f8245c4f9d3df4889ef09
BLAKE2b-256 bc687338c7176396261f180b954272cff47d8bd5885d457d80e06cd23b5560d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa456543a31f121815e1d491f3a2850c50d6878163d325574bce5a8586e7f0a1
MD5 122796f882979b7dfc83d160a2d86f93
BLAKE2b-256 9b7e95ad13c839e218d575d73984a5cddc0eee9cdb52bfcd5d3d4449534ed6b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21ab448cfe1ee168161740c232bf6e03f9a4ff516a41179fa346f14fa3d048fe
MD5 c5247b3051f75997b7b205b4f395af31
BLAKE2b-256 205d676230690de4706f94716a227feac34b0d988c2bdfd7b62465f21f139472

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-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.13-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4ed2d89033f06ed1cae653a0d412e593bf8f90c843481a2fc8c4355b829f0515
MD5 e334746eef7c1eb332e26f60e9479dec
BLAKE2b-256 623f87c144daad9efc4b92ecf679b5e97bf804ee0d559174faf5fa342219013c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f54cf3fa40558e24f14525c869662d6a27f917bee335010a2018737990b59c6
MD5 9d72956489800133ad290dee938fb178
BLAKE2b-256 a944d57fa0c2506cf95499afc855464e85933040c34310ed4cbbae3261d5a6b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a876560c6a8caadeae3f82695642526ae25cacf83f6263d2520f5ecc534c78d
MD5 fc80945219c57631b1dd488aaffba599
BLAKE2b-256 5d3d40e5f7f1d8d19cb61f4e13780b086de6bf39b7aab77b939b78714ce95bd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8c3011638259b06f3ae6059c5cc87d92b8a599e4e887d460b5f358fe9ef8a0f6
MD5 b4417e3c3a52e3566e434171e499eb18
BLAKE2b-256 b78d917b8ff09a0a29428e00936cf3751100e52bea40227d7e6a2ab2a67dcbe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b058b5d80a42a58be730eebdb547f94cb605a955145a314b987bbe2973828e8
MD5 51328dc5e448698f3994def1c5e80e7c
BLAKE2b-256 14c0fae8241345cb04f1fea279746eca5ccbdaa49edc90005582888587abd49d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82d697ef1d58f2a3e8ce3554037c5600e787990f6c026725d72a6d1f7db88fc5
MD5 b9655424be5a652b7f31d849757d0c3e
BLAKE2b-256 f4b5bfad813bf0b045f68f6df61e8d9c9a218a662904e8ccef71ef2da950cc68

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92b882905585bc48fd5e86a1bbb4ab28f4df1dbd407871366a2df1881e984f91
MD5 4ef3f3294c4e12d3581a167857547c27
BLAKE2b-256 4a4977b451d7eef9b399ec972b6fcee8d2a94848b14db456d7af0720efcb837b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-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.13-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ab596c6298d7872e56ef0b2c96cb8240c247dc258f0b9c355ff9fd6a983e204d
MD5 9ca1a64253011886a28383c4eeee27c0
BLAKE2b-256 0d5f684a555228bd3139e48475e9ce16fed75b025d7e58b2a8f2c2ff2f8c07c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e264f5d2783d877ef31eae6cb0d6738da2220f58628b6f8af02b8b002ebbf126
MD5 24520f437e864030afe69a72530413a9
BLAKE2b-256 c1f8f8f7daeb90f30b9e69df05c518483eb2ea5ca59537e8558182cf76161cf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4ee61adb56cba1b35896ab35a7b97bf7745e2fcb6ac0deaabe506f1de1e590e0
MD5 f0bf6e735b1d26a2dbd568da0c0c20a3
BLAKE2b-256 2931f3c81429c4cf671202560b19d1c4052228dff90ead56aca4de35a8cadf49

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 45cb4c17f89a0c31043121dce7b52e3d1800dec4fd12b94dad662fc86972fe13
MD5 b84fbe222dfa51ebb349310734a72ff0
BLAKE2b-256 1ae04d6ce178ea4a8300d0a0aa725fb11f0a92fa842dded5cfe8db1a79fed6c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e747e62c2a7e19b80e7bc0680cdfed18552964ab8eb500f33f4e97882d2ba1e
MD5 33e0033007cf659d5ec35cbeb9f7c995
BLAKE2b-256 285a763fe5d8165772648eb96e85e9677b7680729b4c03ffd6c2bf4fce1bbea2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e21fa3676214fb61b2235cad4565f9e8c6bad1cec9f78bf133d06f55b328d302
MD5 7b70903ab59b559aab2d216b02373556
BLAKE2b-256 fff9528b2f2480d3cf3ddae19f530ce3fccb86705e4e7238102116358dcd1455

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 483cbba27bbf390e0bd5e1581155bf52387e150585af7a35518d0bfa212f7232
MD5 209cb1f61040a4c24e75a2a709d28b10
BLAKE2b-256 9cff009d32287f71c993663fbd4b2f29e9cf782b496f03e77db4d5025af5b15e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-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.13-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c923aab5d730c61528bc28804c8f01617d876fdc93e9510f50c517506e5f15bf
MD5 4ab080fa3b2e73c38576ebefc9b3b61a
BLAKE2b-256 f941457a630f12fe5ecc242cf5a22015ac9f9e42ba35fae1d1f07f18d7e6ade2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be0614f3572e2af2190edd149a3b4fa0969e113685a82d8753e83cee75dffaf5
MD5 64a493ccac006af73bed3793abc57428
BLAKE2b-256 6d409f3509f9f6ef65635c0082583951735e06fb2682f817e4f123da4d8f8933

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b15e8a4b8304e0e49512ba501e14827f46804f51b8ca8abe22f5ac37a1c7d4f
MD5 063936a25a796192617d902c79aa89e0
BLAKE2b-256 94a787af2c4d8d18f7172ea0d6b4c101bf42f00885c9cab37f91bdb3e8b0f932

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 99e406c5a49262a4f8dac11a6dbc12438d66569a8e8cc3920b5a3db5a8003ed3
MD5 b8bfe5cecc120a7ffe590da344cd895e
BLAKE2b-256 0d50fb5976b05fc99c999448392541b69d22766a426a883f1e23f50439f2e4fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c271acc4d3ec944d8926c9521caf84ab88118ae68b34cd0ac8cf952538fcdc4
MD5 697a78bef1a086d32405e98f12b16451
BLAKE2b-256 0aa4e9437fabc2489989358634afc8336613603236f29cc9f296aad6b6a9293e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 894b4dc88ee9b83f30218110b43752fdc6e9fde3bb90fc0835fde89db0d1f6f8
MD5 671c2465973b287988f309ef6a6fd7bc
BLAKE2b-256 949b213aa903c838f227932c246b0b043faf908c0059a87753edd30044aa95b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f0ff54e5c25bcc75da067e4b861744971686e40f3ce3f0063585aab79008f26
MD5 7fd95f4f72b89bf20c5a2d299c30af7f
BLAKE2b-256 e1e652c607388148f2aca45ff533f65a127c429e1b5f498fc55501f91aaa8922

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-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.13-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 cfb1a995c83d17f09a26f4c1eae470cb809c4b7f4c77f97ce80ecbf36565ef9d
MD5 4638bce817bd3ee2ba404fe1cecf7412
BLAKE2b-256 b6933ee65f8e5a2d5e638d712958bee10b643b74ccca718973bd389bd97faffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d422fafc54047c9139fe3814c1666dd8f32489f95f44ce5346c9e94ad6b44bc8
MD5 be148e9970afeef29403ee380b9d7071
BLAKE2b-256 a777c47bdcc00ac218d2e6b005f49b5039c19b827a4946b56c855c5ea0ebed44

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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.13-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ec50712c0bf4368c7b5085905afcf4ecada4f0a3bd53a6df6d6c31c8a3655f39
MD5 f8f70ead9655124ac06105a9bf1312e8
BLAKE2b-256 3910a7ae02c0c1d881dcfe21d68d1f6bb43ca15d7fcb30359dbb7d4a0665772a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.13-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