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.10.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.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl (969.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

pyrustaudit-0.0.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl (969.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

pyrustaudit-0.0.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-pp38-pypy38_pp73-macosx_11_0_arm64.whl (969.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pyrustaudit-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.10-cp313-cp313-musllinux_1_2_aarch64.whl (951.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-cp313-cp313-macosx_11_0_arm64.whl (969.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pyrustaudit-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.10-cp312-cp312-musllinux_1_2_aarch64.whl (951.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-cp312-cp312-macosx_11_0_arm64.whl (969.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pyrustaudit-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.10-cp311-cp311-musllinux_1_2_aarch64.whl (951.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-cp311-cp311-macosx_11_0_arm64.whl (969.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pyrustaudit-0.0.10-cp310-cp310-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.10-cp310-cp310-musllinux_1_2_aarch64.whl (951.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-cp310-cp310-macosx_11_0_arm64.whl (969.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

pyrustaudit-0.0.10-cp39-cp39-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86-64

pyrustaudit-0.0.10-cp39-cp39-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.10-cp39-cp39-musllinux_1_2_aarch64.whl (951.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-cp39-cp39-macosx_11_0_arm64.whl (969.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pyrustaudit-0.0.10-cp39-cp39-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pyrustaudit-0.0.10-cp38-cp38-win_amd64.whl (1.0 MB view details)

Uploaded CPython 3.8Windows x86-64

pyrustaudit-0.0.10-cp38-cp38-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

pyrustaudit-0.0.10-cp38-cp38-musllinux_1_2_aarch64.whl (951.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

pyrustaudit-0.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-cp38-cp38-macosx_11_0_arm64.whl (969.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pyrustaudit-0.0.10-cp38-cp38-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pyrustaudit-0.0.10-cp37-cp37m-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

pyrustaudit-0.0.10-cp37-cp37m-musllinux_1_2_aarch64.whl (951.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

pyrustaudit-0.0.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-cp37-cp37m-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pyrustaudit-0.0.10-cp36-cp36m-musllinux_1_2_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

pyrustaudit-0.0.10-cp36-cp36m-musllinux_1_2_aarch64.whl (951.5 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ ARM64

pyrustaudit-0.0.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (952.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pyrustaudit-0.0.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.0 MB view details)

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

pyrustaudit-0.0.10-cp36-cp36m-macosx_10_9_x86_64.whl (1.0 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pyrustaudit-0.0.10.tar.gz
Algorithm Hash digest
SHA256 89cd5391df32e4f1a841842b512e202361d9298ae341814566deb38511cca0c4
MD5 77da2c9c38266ba5f66c3ed031c418d5
BLAKE2b-256 c81609ece73d22388b703cdf4218ed341e623777595caeba70f24e63aedda6a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87fe3a43e3c3071a96dc035f822d255dc14bd7ceeac2d0d9efab1ceb49dbff7a
MD5 b287e55e7a269cc383558571f5ef8477
BLAKE2b-256 65cce2393a1492a3cc6a9f75da51858fb4ed9390b2c21575f21c98ed3321bae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6718b525fb86e2798f36c40ce9167e514dc3c2ee792ce9d86568cd8c9b4545d
MD5 a710b7e22630875d380dccb4bd5c57e0
BLAKE2b-256 e9af22131107af67f95ad081af92ddd0320b70166ae36e61b00f73659f6f5f40

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 605df369753073a374abda35e8b5893f5cbd600b4d9deeb487ea263cda4be612
MD5 487730482f66632e093d734cdb386269
BLAKE2b-256 e2cc3280242afe2e2185d55824630880ad9f82cad5ed1b181d65bed002a65214

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 98430ffb45623e743aa32fb01db760a9c77e33dcb91c71d5451165a50cf35b02
MD5 539247b14eb5764941fe34dcbc919881
BLAKE2b-256 00aefc2005eab769779e8f60a7d7c4cd0423afe8050d2ee052925c9b95db1372

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff837241a3a3320ec80e9593a5e83757dc52d8a3aaf76237f0913c776d1974a8
MD5 c48cf32ab3dfe7809a02cca5c9212aee
BLAKE2b-256 9a2f5c85eb390c817761bcb85c161b5b14db2e0f40194221d1b0b63778b96239

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 406921998e56330774de9134e61efe1b77f75dcc2fa93df33a72e5c1959d4582
MD5 86c6db0398f81a6b1ff00ec3a6be4c41
BLAKE2b-256 55140f758c6eb5b5c83f02ee4b876802342004bde70fced7b04b90f1fb84c6c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4dc2daf20b8cfe8da60667a6be1d490559f4005ea97f76d445f8a54cb6950c63
MD5 21059b6a3faaa560ccc396ed2d245c77
BLAKE2b-256 f0a82f33f33c8c89b836e9d53a0d1784b57b46c7ff1900ff122f1e72ff687b23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fe21dc89da480130fc2781fb182a6b43962dfc64f68d38bc4356498403b85102
MD5 82f6104de8ab5d1b9be486c5a1cf4057
BLAKE2b-256 08ee5f13bed8aeaf4b49230d87e13bba9ce584fe008f1df3cc5c8aaca85e67d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51ac3bc4768f95995f2ab5662236b32b34a6fa4a420fea3555654be064da763a
MD5 205a3dd666a732eea304dea70e891e52
BLAKE2b-256 ab5271246a3316edde1354d76514a4026480a8b3b462a7afc316fc3c6747a512

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81a43f02aec4403cdd28a8376f56bbb2d56cfec35b1163c84c031704bff916c8
MD5 85d8f2e12753f80ae7a772a51b0157ae
BLAKE2b-256 221af3c03a6e674b79cab3204b9c8f7c94cc01652883026ae9545e3d9c4419f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 595b2fd1df68a087f0e7cae0015de8b142185ae2b8bf64763613be2b22cf4b2a
MD5 9b135e687e1311fff6a86a98faceef7a
BLAKE2b-256 29f0da8e045d95a0e74ba1e0bab1f33fa995589dee80cdfa0309d91d4b3c3b1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2aef3ad801e38a147c6b321371fcdb78ae3dea2246d37cec79fa78ed47f92ea7
MD5 4ad48dc877b709a81d2164a556f11296
BLAKE2b-256 edebf0715050690210e0b27d309297f7634aff3b66bbdf72eec123dddb14116b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9621901b5acaeebf2f63807b770ecc71727e1f8f9293a60a7cd4ea9eec277507
MD5 fadcbba490d38c4302aba26b726a38cc
BLAKE2b-256 05cef46cfd0d9f068a74a9c83199841e53416fbe86f7fb2e53e6913cd33320ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0df25bd07be8dff23c032c79e77c014c3098e6a8fea2b7e53d4097bbbb170fac
MD5 be18fa9c7d99da61a3ba1f379016750a
BLAKE2b-256 d5fdca72b831e8139f160a3f26475b9ebd94cf6e2b4d7d03ce9093321c440da4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d5c432884bedf364356234ba93a65b8324448342f0aaf2b0f9b3a1c376f99b24
MD5 14b657443e1a5b7147ab8bb120e0ebe4
BLAKE2b-256 f22fbf5efba58413ee89e65d5e879e87daadcd5a43aea420034811dd6190d117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 594f7e4f74aec8bf192fde1413756739658763b2667068131bc08c0de16a0a41
MD5 fd66b768ca93ee666870355975df90f1
BLAKE2b-256 717772c23a2d317fd5909a5ca0ab52122df78497540f3e9ba1634c7684965173

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 053759d6d84878f52574b2c7de245a3157bd63bc012c28eba7b9f15640dcf536
MD5 92dfc40dc5d67b5bf31b10463d5cfcca
BLAKE2b-256 25d27c854fabb8c848bb7ebe803873bfdbdf8e6e508ba6f3ae1c20228c70a7b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4078bb54123ab572a19fb1084f9a2c6befd65f43266eb2c628e1dc67bc03dd3d
MD5 6d4a1384c2c2c3e68ef9a37f3f6461b9
BLAKE2b-256 f956e732a04d4768a57f60ea4ceb2ddb7edf2557ac47f07c78432751baae1029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2d7bf072ecd556d8753826f1e2df29db110238d46e1568bb2d9350107c8ddb84
MD5 f961c94f978379a733c956853e83a785
BLAKE2b-256 eb2c3ad0ba6ea56ef6744d374c98b80fd26911356741180a6504dbb42b2c0842

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b22656f147bfacf739b9fd1d54fcd34e8caebcf8ead7cc4fa94203b312a25f49
MD5 300c3656d1110aa6aff6703d9a4fe118
BLAKE2b-256 ea7e70055934f85f6fd68d0e5af846893c0d61b4a72dd889a65a8b81b7962d63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d34791179f1d8235c535b05a8ffc9620975e6bee84ee84dd710f3b7b99581d5f
MD5 1bdf1851465ade69f17993f98b99e4ad
BLAKE2b-256 7229418a9c15bc30d2f47c4150bedac2bee6dce3c578ebd8c76733778994c7e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfcb51048af2b2bdb36c6dfd992a63729bb8546fde55b0b867c99b5ae085f9c4
MD5 92635f01e5190f6209d5ed8c4496d352
BLAKE2b-256 15d285d371de6ebf747b6168099b8a145bdecef61b2cec6f60c3c43fb0a8488f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75470c580e16cda32ae38a2dbce78b33eedf475454e3370e6fc297e42ffc28ce
MD5 1ba0d102c854f70b6c88d7b872d2111b
BLAKE2b-256 7a65e7335997390d28995274e631a93bc39ff9a100ca90f2221ebcb927649387

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8174e269c103202b92fe1bed5e3ee1fa32e8e19e175999a5a290bcbb49e8a357
MD5 aa205108f074eae01d2c76cf3b672199
BLAKE2b-256 368418f01983fc8236ba5109cd34f22483729afbb5507eb807efef7d6041658a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aacd2f953316b521d85947d1467d973722910f763928affb1793adefeb60443
MD5 ac76d3ddbefc016573d5b348c7b07dfc
BLAKE2b-256 55988fed0eb61ca7004d2d069308d0c1ce3b1817093c6db4d8fab0660c5b2f66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 271bc127c90fb6fb610efadd9a969eee0121deb6d4e707409b8b3d9a3d9beda6
MD5 08b21c78a308279b573169af6172a5ca
BLAKE2b-256 1a50c4019bf68e106ee0ab6484aeb0bf6049c83fa1f565e20c0ebb59a3710b32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91f0aed6cd2ace4aad32b1ebfc7c6ce25f7a83eee64af160c94de30911845943
MD5 6e3245f42a373f81f1af11ed592331b6
BLAKE2b-256 96a13bb009e8addec32f6deb3bc630570548485da41795967c84ac5197ca8100

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8fafbb5e3865e74e45628385191679ca9070a045c79a1275125f38ebda51b0c
MD5 f198113f9d4db79b62202ab53dec63f1
BLAKE2b-256 889213008e1c06c1c05ede155d648a27c077de91362af1d2e4861129f37b9e44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e77b734340b7a27fbdad8655bcb38dd9a6234a5d4fa4597dbd99dd145c0f4d6f
MD5 e73c8f8e184e8f78b70b08216477d9b5
BLAKE2b-256 e1eebbd8237701992f86598580ed65b4466a949fd97944e33b7038ba1051e199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d029c9c961b4e6f0fbac56fb1dd435b4eda9539cde25134fffa38e4eb0fa0ee6
MD5 9e226213e5a4278153a036fefc63e32f
BLAKE2b-256 0f009a3756fe032df3e33e2735865fcda13f01d88b5af278f8bb6c21af0b39ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a995ec61bc23ee4ff31141a24266f2c1d6d3534d5630e96df07b05adb581553
MD5 227127c741c8a3537c62589582cd977c
BLAKE2b-256 8fe232ed55fde9037282666750a80624c7fec225da350a89513ff3f1e6f4e2fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f266e0e7f0e6d11ddcedb6f350c79037b0e9587a79ef2a180390f82a28011da3
MD5 ca71a913e37b3dc12d2f94296a26bce7
BLAKE2b-256 56594787caa7b84a3e446544ba02685bbd1a41b29884fce9f181b7cc842956fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a266f671ae707bc72598dc4833e60393ac6b75fbde957b4b9a03f6ef7ccad46d
MD5 4627a8625d554bf77e15efcbfec94a37
BLAKE2b-256 342f1b8393134ace2a2e70d863d92d504e7ddaeb762b4c2ce36face1f839b0b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9c13a6181b4390c735747876f38b0f4bbf29ff8b1918b016066f8fda01b0068b
MD5 9d078bc36458b265e6fea2008185170f
BLAKE2b-256 78fbf5f53d7a07cd6df22d9b16f16dd22dce3b730c1f78caacf13a124a9bacd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c8f43d98e074496217ed7fba63e2c308fefcd845d128064042874e9c2ee2375
MD5 57c0379da81479907ef092e5b1e82603
BLAKE2b-256 be3b3089722b64ea0369414233980173ce14db3d5a136f26fdb312ad5b6c5645

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 451a180382b2cc29108a97975b03da00f96f714fff6194451deca11beae69c5c
MD5 7aa46262bc408e0c13a9fd45c97e250a
BLAKE2b-256 7fb1f7e56e3c431b209aa219bcedbcbd6f4a743be9235e83f82733d4474846ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9ea61939f1d755b21154e7ce9e467f651788ea2b5d56e02389b497075820887
MD5 71c849b134f0585587506687ec13f87c
BLAKE2b-256 8a85a05e928a4be36f8482422a32b7974e4297aa3198b220fc4a145c98f8947d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bef079acad57a333355489584b29e89fe42cd85cd16b49a57c62be297eb65598
MD5 9035b6e4f49bbc30c17d9d7df414a0cf
BLAKE2b-256 0dc65d9f3245ab52b33e7bf5315a317e42a157bf3aa58bc3971380d1e0e1bc53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 853e4d9f7bc192c7a8e7ac00615b1ac3d95858436411d30b64f65f2036aa0e36
MD5 a3648915a46c96fb4ffb30c342edfd82
BLAKE2b-256 4abec1693e39e9d6b20dbdd61b71a3900b91c1974e67cb83b85aa40ed08b4938

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4ddd869d1afbd003e90d1812cfe102d8cefdc40b4435eeb3ef3d24f12d345e9
MD5 81b38dbc0cd654bb87a469fd74c38369
BLAKE2b-256 923b64b609f766f9ef8096738310bba0290447991a2d3a8eed6890fef92288ce

See more details on using hashes here.

Provenance

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

File details

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

File metadata

  • Download URL: pyrustaudit-0.0.10-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyrustaudit-0.0.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0be4b7b26b7640e466854299f62ef469b9d917318d4d2cd4a09184123fca6c3c
MD5 76678d582a68231685f36d8681c48e98
BLAKE2b-256 9461d225f53652666d8a2e13e2c0b3d1c20dd04f64af68f8c973e6265c0de66a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp39-cp39-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.10-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4fa0b2a39d1e915ac9d1fa6f0a03432543c6e90ee83a445deab788e65f6686fa
MD5 dfc3efe3f1881a17c86488a8658459a6
BLAKE2b-256 2b8bdae31527902a5068ceb544e4eaaa36c770c0751a6317b687006dbb6e007c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp39-cp39-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.10-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a503554ffb6c1b517780cfc1b294c81426b7e992cb3efec64935583e9bb10549
MD5 110d95b457fbf952baa57337548d8eaf
BLAKE2b-256 d48553f9713ce1e013fb6191673b44cd0afb6ba8b3c9ba2e15d6fa0c9677422b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp39-cp39-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.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d16b0962ef0daf24b69dfa54232cb94b1d4af976e7fd3fa1e1d01e602b14f60b
MD5 ab537412bd3aa33aef814c94110a0fd8
BLAKE2b-256 64ae8a090712757b51470b323ba13ab5c12cc5875176cff5cb0cec310ea0ee05

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd501a015dac668740d484ccd67a236a53abfc93e5a106f1a433ab2059e3ed39
MD5 c7fda3f6a2a7bf62a223db848f690fcd
BLAKE2b-256 f364dbe877073ae05b20a4667f027fe22a6cf183d6bd34e6a59f87db671019b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-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: 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.10-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44662f65a7a2494b6b259695b7bd08b531088a4544ac2df2fc35873a037182c9
MD5 5ec13aacee3c49fc91c14b8134c42737
BLAKE2b-256 19d1e0fbff15243c188eeff6601a221a189968be01f8c478281af6fd74320614

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp39-cp39-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.10-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b8581147a182743d48bc265e850bfca469e70b6ba4d1c09ed85b6d2d346b121
MD5 51fa48ab2f48403339e7b704eae9ca27
BLAKE2b-256 e1da9cf45ff114da06fa1795076a86772bf95ad7aacbd29a6d62a1cba64ae919

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp39-cp39-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.10-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyrustaudit-0.0.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for pyrustaudit-0.0.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e5497a5738dd96be9d83b5595842f7f8ca6ed7abe3dc4a9c2f095c5613c92f9d
MD5 9139c31d08ca54a13755e8e3069916e5
BLAKE2b-256 5fbd570554e2d154e06d8ed2fab273683eadab7758fd21b932d148aec3683cd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp38-cp38-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.10-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d00d8872cbe33d70bb6283f7eddd4ed612cfd78aa6bfb995fa2fc2661c08e01a
MD5 6bc2cfe8c768c17a50da41c1be720872
BLAKE2b-256 4d2f9f48020d4cd9bc38e2aa53e06f1675a7add9dfa133b7cbd888d9d4101219

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp38-cp38-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.10-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb03b3ca998b65f3ff4740f98d8e594b5dc50664937b35b7e3c1dfd42fd8cb2b
MD5 d701ee591330a693048431828b7a92da
BLAKE2b-256 a2f6af7aecd33daecebb52481d737a65e492cd102557ca1a09c9b0fb07fcc168

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp38-cp38-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.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f42f5adc8fd106d711eee751dc0f33bd94e897062396f3a95d51a8b0c16845d2
MD5 86adb3dc2a9ec157bedf55b16f5d2b1d
BLAKE2b-256 91d90d55a521d226e3ab1fdafbdec9720cb5a395bd9de480586ae24d0178ee1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac8fc550431bec6b98370876baf7b794ac3906c0cdc557a96933acb6d1b65222
MD5 ecb4d88b4562fb9d0834658b3c7fd1e4
BLAKE2b-256 82293f9c1a687b9e12108a487772dd0c136857875ae247444c9f1ae6524180c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-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: 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.10-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2996f93bafc7a35eab03a7cafb339463468d942e4bad7431edbbfda9d024cee
MD5 9f5e31249a1309514df65d16a0f4f09a
BLAKE2b-256 c63da3d48f6b4cb4847b812502b2ac64aa54d0361a2ed796640da88cb4414317

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp38-cp38-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.10-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8a856adb901b16340bb2262b75998eb11b5e8845d9c00f27ee8c898806f97b01
MD5 ba647127de5abbde3d3821b1c7aee751
BLAKE2b-256 0c728f16f063044b65f6d9490d7deb5a5d5e6fdc00f6c66b9205d4d6e8e66f29

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp38-cp38-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.10-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 35942b826ce8bc5d444fc062ec7f05712de0c52416b2123954150809171b0356
MD5 0fb29b7536d5f2c74e1101419a937e43
BLAKE2b-256 76286e325a21b312f35e8b976953af66bd7a3804c19324b2cdc6caae04a91680

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp37-cp37m-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.10-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81f496e92dadad4ea5d4259bc3c5cc337cf95ff020fb5f9e42cb8cfc72648951
MD5 58d7e3b26e7e569093a1bbb18b5db6a9
BLAKE2b-256 b274b3c6d231cf202736091eef84e0b12286c942d49f741476871a637df7abd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp37-cp37m-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.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0b74e11032517867a3d4f09f1927684ddc31ab08ab8cf2d941738ca27d6c513
MD5 ea6d514199554e88172f21d71ebd696d
BLAKE2b-256 bea3b1a513bfaaee4385456494247aa10d03d982ab3183efc544a6c45b613447

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71d1c2975bfb37d00ca0853120c835baa82fd78abe9b6e5eb9531b3158d28239
MD5 4d5b4e6f063c1a5d158bf718329a4820
BLAKE2b-256 c24a26deeba6f2181f2f02802c25bc201ed7cfb0c0b3d2149197b42a332b6ca2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-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: 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.10-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f8ed35cb2ff2d8baa68eb8c59bfb3ea533291d062a0612eead03eab5f689e1f
MD5 5793920d7537f47e86ea288579f3c749
BLAKE2b-256 e4fda25c58b24da3e0920de63435ae4d638120a1fd987dc306d7ef5b3d7c755c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp37-cp37m-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.10-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0af912dd86f6c83efd7318b5556d27cb6e901590b062f7d7e9eb91b9a85db86
MD5 72f2c722ea787574141dbf52c3dc238c
BLAKE2b-256 ea7c71c1de4232eef05ff9dd5edb2ef485dd28002ebc97489682b1b9a5755b77

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp36-cp36m-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.10-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01ee5c293777f909319f881d6a6533b0bbb8bfdbb91ecd0f254296241f33fdf2
MD5 919da3738af7bffbf3b77638b833efb8
BLAKE2b-256 706b03b9179b19dc6710e23ed1909036819ba25f1030cd43517cf72ed71f7fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp36-cp36m-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.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d89217fddc7bca60a09146bd0275c8e10980233d06b295f1e577e83520cf8a7
MD5 5bde97ff726918679d3891c9eb67b517
BLAKE2b-256 a83426acc374df394275d7b581e95b94cb6a7c56cd02afd58aa157b070cbaed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_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.10-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.10-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1fe1ab374258e7918e5cbedfb4a9de349b03bde49163c149de730d1cf7ff991
MD5 dd0d1cddd9607b4183373b5d638d954d
BLAKE2b-256 1aa69970d424a220173fb973a20da04fa8e3c73fe161fbe8128d130f3028c797

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrustaudit-0.0.10-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: 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.10-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrustaudit-0.0.10-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0c862a6c4273e19a89107ac4ab1a38263f33c0558a3f778acc05312a20fceae
MD5 58ea6fbba0313680327254359c51bf7f
BLAKE2b-256 256e5e603e0d67e50db81ddb18e77dbd5d4667e31d7cb4415212f7b215d5ecef

See more details on using hashes here.

Provenance

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