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.9.tar.gz (6.7 kB view details)

Uploaded Source

Built Distributions

pyrustaudit-0.0.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.9-pp310-pypy310_pp73-macosx_11_0_arm64.whl (939.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyrustaudit-0.0.9-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (995.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

pyrustaudit-0.0.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.9-pp39-pypy39_pp73-macosx_11_0_arm64.whl (939.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyrustaudit-0.0.9-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (995.0 kB view details)

Uploaded PyPy macOS 10.15+ x86-64

pyrustaudit-0.0.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.9-pp38-pypy38_pp73-macosx_11_0_arm64.whl (939.9 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyrustaudit-0.0.9-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (995.0 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyrustaudit-0.0.9-cp313-cp313-win_amd64.whl (994.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

pyrustaudit-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl (914.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.8 kB view details)

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

pyrustaudit-0.0.9-cp313-cp313-macosx_11_0_arm64.whl (939.8 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pyrustaudit-0.0.9-cp313-cp313-macosx_10_13_x86_64.whl (995.0 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pyrustaudit-0.0.9-cp312-cp312-win_amd64.whl (994.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

pyrustaudit-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl (914.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.8 kB view details)

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

pyrustaudit-0.0.9-cp312-cp312-macosx_11_0_arm64.whl (939.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyrustaudit-0.0.9-cp312-cp312-macosx_10_13_x86_64.whl (994.9 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pyrustaudit-0.0.9-cp311-cp311-win_amd64.whl (994.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

pyrustaudit-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl (914.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.8 kB view details)

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

pyrustaudit-0.0.9-cp311-cp311-macosx_11_0_arm64.whl (939.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyrustaudit-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl (994.9 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyrustaudit-0.0.9-cp310-cp310-win_amd64.whl (994.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

pyrustaudit-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl (914.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.8 kB view details)

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

pyrustaudit-0.0.9-cp310-cp310-macosx_11_0_arm64.whl (939.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyrustaudit-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl (995.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyrustaudit-0.0.9-cp39-cp39-win_amd64.whl (994.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

pyrustaudit-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl (914.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.9-cp39-cp39-macosx_11_0_arm64.whl (939.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyrustaudit-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl (994.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyrustaudit-0.0.9-cp38-cp38-win_amd64.whl (994.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

pyrustaudit-0.0.9-cp38-cp38-musllinux_1_2_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.9-cp38-cp38-musllinux_1_2_aarch64.whl (914.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.9-cp38-cp38-macosx_11_0_arm64.whl (939.8 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyrustaudit-0.0.9-cp38-cp38-macosx_10_9_x86_64.whl (994.9 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyrustaudit-0.0.9-cp37-cp37m-musllinux_1_2_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.9-cp37-cp37m-musllinux_1_2_aarch64.whl (914.9 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.9-cp37-cp37m-macosx_10_9_x86_64.whl (994.9 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyrustaudit-0.0.9-cp36-cp36m-musllinux_1_2_x86_64.whl (990.7 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.9-cp36-cp36m-musllinux_1_2_aarch64.whl (914.9 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (915.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (990.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrustaudit-0.0.9-cp36-cp36m-macosx_10_9_x86_64.whl (994.3 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pyrustaudit-0.0.9.tar.gz
  • Upload date:
  • Size: 6.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyrustaudit-0.0.9.tar.gz
Algorithm Hash digest
SHA256 2034ae124c201c3349b9689d457a283921de43d83e3ffeeb7512c41b740f9aea
MD5 608a3d90e88f31ff568d4cf9645447cf
BLAKE2b-256 81542165602e590c16d854cb8fdb9535799245e0f8706d0bdc6d2fc28a73ed8e

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93e92312ad916aa751981b70898195b3ce18864926d30fc38dc450141db4057c
MD5 bc5d37a359dd796431e38584e667bd1f
BLAKE2b-256 0ce2ae46e99be9afcad9047d53e2fa57848afa2b0ee5a1a368964253c7d699f4

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 561a5e89520c5ad5692d4e738d75a1bdaad8c27b73f89e50ca70e8b09e3fd066
MD5 82dd3ed0467faac9d02feca5fa33fc58
BLAKE2b-256 6b295217ba373da953d16da52a9717f4ca5e8a3af282ee088663a4ce341a42f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7f33d1bfb36b97c8e1c03cf7f07a9b3bf2f73bb8c0e0b6d867e06ae513f56b4
MD5 c775b16712f9d240f8e488e4119f985a
BLAKE2b-256 45cd3851cb1ff3d2ee5bfc98a5f963d83443f784504f241a8490ceba09431a8e

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9920ca821d9488d55edf1990015d616ab76ee8ee4ee517efc4722327ed4e2564
MD5 b8b87957ba4b5d9a5dd4a1e504b92892
BLAKE2b-256 373de4d69212420dfd22fab8a8501c601431a209745a94a913079ee2caf495b4

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d95a9c5dd459cfe4062606db5b14c0f4767629cba295d108871f51caba13311c
MD5 f97bc0406ea00c910527e72a4e728a71
BLAKE2b-256 e53571e37ff8cd66bf478d8bb7f40055da66b43e7b6e287674456f06a0df9b82

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edefb364f9d82d53f1243bb070218fc862828a1e158ae3877c8af93cab2e774c
MD5 fb6d76b9e0f47742f41dcaaa86f3963d
BLAKE2b-256 4c556428d0a34a81fc29f343753cea4080d5d851584e786ebee89ac3e9764239

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36b12e198de3ab4dde041a6ae93aa611b48874ca61300859357d4f494bd1dc18
MD5 9c5d5e02b354d480adf1392083fe6915
BLAKE2b-256 43dd0632bed083f7ff57f14d6748911a3c593c2671456b70983bc050b67d95c4

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 447c65c85b14d62dc6ec5b0fffe533b70d4d47702ac36634b9c809c96fbf1e96
MD5 01525aab2f19d08e39b71ab705c82cc8
BLAKE2b-256 ad066f809331f6a34d16ac5a792a1df3b334d6e1a22c93882de341789794ae85

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36a7528079b89152e126bd73403dee5eda33d884c2cb35d564567ff985958313
MD5 8f54720dc0d28cc4bfec445181742510
BLAKE2b-256 c05e4c6d67e2d27c2c5af92cde4910516609f6fcf54424acac71852d1a212d30

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bffa797c631a80de7fe67eb1ef552fda603dbe6b4e0488bcf41ccde69eb1398
MD5 addb8498799892f9497bb210335e23aa
BLAKE2b-256 7c05e9588c7c9b10cf7043a695197987b5ebb05a3c89dd2e1418a42571c75690

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f98438d8d83533f5a8e69a4f23050b66fa0ad589fdf3bf938d2e3955cb018978
MD5 c76cc65edbf2564d49982af2da79e924
BLAKE2b-256 28e99df2bcc6ad030a5e0e721503cbce877373d093b8729bbec893e25779cd49

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a114a3bf4c2d2321d3a1a0b8d93d1aeebefbbd1dc3b0334d3cb6f4a85f43b5f5
MD5 5b91aed93c16342e40a58eb745daf72f
BLAKE2b-256 27207d601e373cfe4dc076141a660c6dbe1ad1d82e53e54b2bed5c885845766a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f2bce34430644dd4697fa1d878b2a7142fdb9033015049429315209da2ba4ca1
MD5 ea7bb9f687e63218c44036a15e097e33
BLAKE2b-256 2e48bcde9ce2d2a13f1ccb4b59ae8c1724c87cb38e48980f84f888192c36eb7a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 26a162291c92db6f5a6a424df48fcd03758e631ed29e88c1011af3892df8e3b0
MD5 2235f2a7be8bf8c5ace814c2aa093770
BLAKE2b-256 ecbb389388040384fe4de4b1ee79a97a62e9808bcd3c35aa7e590b23564f1a11

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79a43eac7adfb06d957b20c628e98f83cd5276a6774e91004cb5dce54518c19a
MD5 3078cdc38441b77cbf6caa88a1b9789d
BLAKE2b-256 fd96d89de3c3d2f72e414759deb389a92726bf261d337d73d23b1b1c4b4e42b8

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e131864f8721c43250b39e04872350f04486f5c4c671a960538c79b6b3af3d4e
MD5 4c8620100be1bfd842f2e75ca9632c44
BLAKE2b-256 a54b5bc5878fb2bdce66e150c0fb64d595593a36ea5e2a1f2ac4955f0672a0c4

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccae74fbdc7983423402bda215ddc5c2d5daa976a0392c58eacc18611507c9fd
MD5 8f08d042cb62553bce0f0b217dc5d197
BLAKE2b-256 3b5053596cea293da117abdae2f83529733f1e188ae190070a49199a6ba0a6c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fae27d68a0b9a2495e636c30412ff3d44b9bc01cc7a50c7fbc4a37efd9fdaa3
MD5 aec50b6054dc283c3a1ba9eec8748ac7
BLAKE2b-256 4e1640a9a9cfc1357ae6ee2ffebe27cf1b04ca6e62aca1959eb876c2eb237b99

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b32e88ad42765d3139a8a593253900c40edef821db3a59a40b1e9b8c64e37826
MD5 bef39f27f85a4f7476356e39f2b362ff
BLAKE2b-256 a84e4b88bdd286485ba555e3ea09c25294b901367d1dcb81d377951532ae2639

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0948b40c7761704916416d858ff2a216cea98b9f04600eaec2c384d20b660354
MD5 454759859da9b1649e7b6d4963e3b408
BLAKE2b-256 756373b11f63152e97df9f68a821c0757b869b6a2bcbc5da89cc85685a997619

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 efa2b47d18238992cf7ba12952794b8be7c72d92f04a1f15a37efec223ec1276
MD5 8e39cb2ff413e00f51ce94e36bb08493
BLAKE2b-256 3f244bbb60e3505cb44f95b40bc377391527b84beb4672eac0c31e49359c14a8

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 700339bf65d8d37869f5ada7d66a4b38117f3b84d553045046a455508b23c618
MD5 bce5a40b04f1ea6a70d74bd82ac3beea
BLAKE2b-256 39d43bae80ee17312b21cb7e491fee2ba81f5c506813418a153849a11d128c79

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a7d214c85b90cb0931daed90de96f9d67408df80c7be428f592aabc6aba297c
MD5 c5e1b2a82c0747d6f7e08989670c909b
BLAKE2b-256 77e213fab4054ca9443b807d27d9066456eb07ba4753a03db30569cc9bfd34c7

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00a84bf01a667f2e962eb70113e49847ad71d69fc6c2621b28a3ad5b29ed19bb
MD5 400c34ed87cfe86c54ce4618f02232ac
BLAKE2b-256 27f5ea7b1d8bc88eae1c4c9a94ca352d4af6c173ed596a0fb4b6547ff3573020

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e19d76bd2fbb8af1f576e6aa44ec641f0218edf56e8e6c759b1bd8a49d59a8e4
MD5 30b1bb520d281cad1c8d031744b255c5
BLAKE2b-256 519374d9189e96d162d96900a393045aa04aba1ad4af3d5a54e1d419ad4abfe8

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4f5a994d47822aa8daccafac534aa197d701e29703b3bb706a6b2847d5f5b5c6
MD5 5d998f56026d9ffa9dc3fd3359e8c412
BLAKE2b-256 b00872502e5a80757869e2ba320639cad000ab2977eff9deddd38505930e23f8

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 007a36f567beee6a1f5e97a3c361921eba02c66358cc5d8962c0b52c66e654c0
MD5 2b150eee200540457b4a80867e685f67
BLAKE2b-256 0051369612484063675aa712d334e9bf9b8137e867e7a49fd29f14de244dd50c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0eeebbc0bb514b5ff5d7fd2edcaa4020308f8e608d4e4c408b4c888fb31a3cce
MD5 ddcb24570254a0cfdeb935f4511e4489
BLAKE2b-256 e36fcd54ed22233678eb3cc7566b1a2df223ba546619710841f70462e6223fc4

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac933870513c73ec9d0a432b7cb34b75997b63e41903f5e468f77bc4d1c72725
MD5 dc2f060242a2f39fb00f16c869d1941d
BLAKE2b-256 8a39e51e128092d7396c9fd3d4e1757b3c6c0267d2cb5ecf311e65051b9cb8ee

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6105c644f138d75d2c649768191b87bbf3441124176797af0ec24816a7b20c39
MD5 dc058f668aea5c4447f9ca1826cd0cd1
BLAKE2b-256 acb29ee369f9a5115f647a2c202c9b29ca849587c9273ae4cc182e665f2eacbf

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9bbec2875f41fb9a795fc77745effdfbe07e2902d0778a9ac6353589999c406
MD5 df4ec135ed391e45db7a2679eb42134e
BLAKE2b-256 57230cad2f894fa91f9f185a2da5251b21738605d9877beac63cb41a1f29b8d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0bfa6f8fd36eef70258a785f636395340679fa1144b17d55c7eabc4bbe35cea
MD5 eb47dbb7a0ce11d6922dce771dc6dc2d
BLAKE2b-256 801083fa387631e1cde9a90d7606b66ed1fb77febce7cbb450996e874d384314

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ee85234ca3ab63351012513220cd3f2af57f6c2ab2edb6b767b48d0051efec09
MD5 debf15e1debb45dd9247ee15d6e2273f
BLAKE2b-256 35194a4eb81ab1c5f3d5de5e348b776bd16fa6deabd8968b124b52b108fb0abd

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1f06a9beda371b9ba0fb6a714fd8773c11f3422f5dacdf7346bc6733205175e5
MD5 47c3b40a78adbe218bb39b415780e21c
BLAKE2b-256 66072632029e1401c22b636da6e6b25fd933bfa0128aacc32f18dde758a40789

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d4ba2c569edae513a7d70cfbafd49064e9d74c3a27325d995366046928b3b6e
MD5 cc27a01c12e68cf75c4d72a230bfd5b2
BLAKE2b-256 161a5a78caf35e893431813d15cddd09aa8e422882bf9092d8f380b37ad58080

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2606350f70d5eaa877d3e650e3354d56bb07a2eecba63b59dc0d5ba4c26e32f
MD5 9327d7833a3adcb67e23e05911490a49
BLAKE2b-256 92acff1ac3261330fc50a22c79929db9204bac9746f611f05c797512d59e759f

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98aed22feaa54597ad85c3b89e30d576d6fed1c52a6e773101c6250dd4f6ce7c
MD5 88a0bddf27217a1b3808670efb360803
BLAKE2b-256 dac1d8b2ad51fc2bb2c3f321e9650de62defb2a885309e5d041bddf95aa6117a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cad58d1e5e681621dbc56ce5f784f42bc747422bb06b8c6c9e50eb7c8181c5a6
MD5 46eafb80c52fd0a8cc235d7e0b61c17b
BLAKE2b-256 f35893ce95c0a758cf64ae713c3a3ba5455f2690ebf147606b6cf5ef517adc25

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84ff5101a6379a43dbf5fae19e5227eac48f641e038b28820970a875b52ccffb
MD5 adc5f3c0dc12c064ffe31893cc4826c2
BLAKE2b-256 c7716b4f4912a1f0849bc59de439e627bd291d1b89baf0dec68103ee3fbe4d34

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 de13b9a64d13fd524a273b8ca52c404003212c2d1839778f4a81b11567495de4
MD5 b48e8a923b3cbf32ddc01aa4ee569e7c
BLAKE2b-256 b37d5ac1b8c6f010ff2e2b00aabee5cc6a4a05df7108d3ed99366404cb5bdb44

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 54e703afdfe46d4f2cc1c7d8df981e52ba9308d21782edc422164746b3d8f2f8
MD5 6dbdb228eacb1eb68b6808a7f1adec77
BLAKE2b-256 b3ece2d4e2d344b1fd5707cf754db03ef6f27b45213ab147677454529049588a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d31ebab9f8f54f802755c327d82db70e8915e82a2c4cbea01ac6a3e09781aaff
MD5 b4f0c5de52d8e433f6a50ef0b626c9c6
BLAKE2b-256 c068e8f85794fc5a854db0ae20d4c7abd78ba23c37d3f563ed4d9acf39dbfe69

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 280d3b3d4fbf1e47cc90cee21f523294b5d7e5216495d01c563613b206866428
MD5 b4d2846bcc06554659ce16b2509a77a4
BLAKE2b-256 d6ad21866ca214eabd5356f8a9f42202c31345131a9dc2043ffeacbe84a8f53a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a0a5fb4a96c44cee94bba0ea7cb60a40a7d2c40a7e120f8ce1642cb5c48d483
MD5 98c0deda930c6155cdc8f26b8be087c5
BLAKE2b-256 dd101b70f069c39144f0d2fbfb15a39954ac3135f366245f3746f5e07b1c64f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ab8072cfcd4a7a4cf2a5ae4db13a68734f8eac004a02d7a76004fbea66bf481
MD5 0795ca543936e7c95449ccda11c56f0e
BLAKE2b-256 42bb203314464c0b289d46ecc324b28ab168add1b8efb8c6d5e4d5adedd7afde

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3dc554ea1f2c578310b939f801738893efc0140dc100bb0907ab04c49497590e
MD5 68bc7d9219cd6a9c404bf04808f89a07
BLAKE2b-256 cec2433b8782c7cf3cb54b6983a01a6e7ed71f08f08d54decd50d57e1991f2ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 179505490f2e2d53b3c6cf642dd09823aff92095228acc8da64f055522bbc70d
MD5 a0759fd16eadf1a51e0b0b5aad70eb94
BLAKE2b-256 e57c59f02ec57206e0dd2e96345dcdd431fd2a5f0c32fe9ec6a5bcf1cdee8731

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 88e0a659d5d8172692baa9760b63aad86689f48630939cd2daf61719f3ae8487
MD5 a7515c414ca0ab7f4828b1a2f946f9b2
BLAKE2b-256 0329557e3e2b5c757137bb5eeb7643f56de8e41cde56c6c5d3fe6c81993679e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e59118249f453b126bda776d580fba03f0c6a847034e6055a0d27246fb5ca85
MD5 a0fb41ad3ca9bb739eb398a6ccd0ccf2
BLAKE2b-256 2a0b94390fd2a6343d602e3a23d56a3a04c286c900ec929c3165c63af017f224

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ec6f374a1a05a3c2fd75cf1a621ee6991ce092a3ee9b20ac419cc912aef5856
MD5 7cb21c7f5f30b126c5f748172f6b40a5
BLAKE2b-256 9ec6e43572c54aa1bfe174701f77c07e715935c72e71de9bd2ab1b5c19e187af

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2811753514bd9913a3fe60bc9f10dd1cf73e252d149a1213f80b9f9d1516c8fa
MD5 1d2df69194a4b1be5422f2d448eb44d9
BLAKE2b-256 733254d37218febff44ce040f0c2f290f1c9504a5bc1de5484131a053cf44aa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc0c4f75187a947ae8e5a330e20769d7035b37ddae1bbdff37fb27fef6bfdffc
MD5 76d6eb28095244731d4fab0fada457aa
BLAKE2b-256 a13261058ac3139f3cea5d477fb1f2352b5a29eecae008a2b707d0ff22b5f715

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fdaa6d08ff5c025048d5cf87e8014ef9e780d1b8f4feaf460e7ee64dac79438
MD5 b51d1a727700e47000675670f7a4a1e3
BLAKE2b-256 d1f9dbafe996752f459f80514046bc2157ec2b3e13ac303e7b68e134ee34d127

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c88ce0aa8388dfc9bda7c1e7df191d459ff6948302baf5d6ef592f2d388bec96
MD5 123fe1fc6009d40ec30d662dde819508
BLAKE2b-256 c2b35ebec42093889826ddbe98a03329cdbf88d1b89e6719029f48afcc9926d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98f3ea71a0b40fc650bac652aeb935e740bc95458fdd40209af4a9eca8c064f5
MD5 22ea399bb9274347a876a7ecdeb890f9
BLAKE2b-256 5b47a4b8ffb32710b194c49e5e76759fd139b544639fe4c381f4069783be3d07

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5f52a59f739cf33922dbadaa141b7bc62b248c2053357d78aecb12f6a0ff2f8
MD5 e51f2a0eae06ba7c625933e220fd4b2b
BLAKE2b-256 3b0fee0f3b47f331852f39ce42cb000e95d2f9fec35ef4182a59d2ccb855274d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp37-cp37m-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3ec1ffce1174e59cb79d294f671deb1d86ec4eabe3750c8ea1f6f75ba2b9b13
MD5 2ccf2db390c14fb8c7f387f892640b95
BLAKE2b-256 cc311294e99779bed220bd1b419006e81256aff9c896e1b53dae2b7821831aae

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60ab4e8b6a2736c5803d4a40ef7767bc545df95ef82e5b26dc445d31320ce7d1
MD5 a509343dfec523a75dbdfe9c16ff711b
BLAKE2b-256 a3982afb8140ad2b99ecf9922c1b9ff75e2af30c652dc4623caf8fa8ec7d697e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6f949d2f9e374d19e530664cfae7e888964f002bdee17c044dc58656ceb8548b
MD5 be009ea579e8c013b8400097846022f8
BLAKE2b-256 28811bd98bcd1bb521f1e594bf2c349c35b9a1c130b1fe1c25f858fc6746ec5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8d21bf63b59fe73c3c68bc56da5956078e19f6193313ba44906493a2da2dbca
MD5 c89d1aa0a3249461499b80e95ec0e206
BLAKE2b-256 1c049bdebbfa742ad38135e4526c9c5db0c3e43fa8b09c6fcf24e98bdf361092

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp36-cp36m-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3105b1cf02b4d6cb1629db00b5d1d2c299a01a826eb27381f9e2e658aedc88ab
MD5 31f1246dee783704ceb9888584332c37
BLAKE2b-256 da2f4666c561c10be0a494aea3f1a7db9dc7b8c1c5f132d4ea634175b9c12c22

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp36-cp36m-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f1b04efa88340d2cb80e3d93d90f89dade999fb5bed217c8057bcbd6c06d9e7
MD5 3b1d2fabcdb07d746e17f761ae2c69d1
BLAKE2b-256 5d61dd01745ef9284d755608f431b6f84d0ba63cf7c8fd0976bb8883aab48397

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01e6046a6f0c7fabda0a1eeb8938416e7ab9eefcf3147c02b776e794ff5d76d8
MD5 dd6121b2403479dd2a359dc245408bcd
BLAKE2b-256 37c9ad78552fed0f888e8d2744e7485639fab139d1db0d2c628f888c3e37dd8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

File details

Details for the file pyrustaudit-0.0.9-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.9-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 45c50d849abaac28c1990a76a1ea82dfbc0cc043dc51a460a805c6996a08c6b0
MD5 36472acbc3738255dd16741e11f688a3
BLAKE2b-256 d9ae83f5d8d6c6c7d0cae66e84f7a8abe94d016d8abadfdd9a8f60c6eb6e216e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.9-cp36-cp36m-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrustaudit

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page