Skip to main content

Unified Go-backed helpers for rpmdb, rust audit, and Go build metadata

Project description

pygorpmrustinfo

pygorpmrustinfo is a unified Python package that exposes the former rpmdb, rust audit, and Go build-info helpers through a single Go-backed extension.

Why this package exists

The older split packages each relied on their own Go runtime and native extension. That approach is fragile in Python environments because Go's c-shared mode can be unstable when multiple Go runtimes are loaded into the same process. This is the problem described in Go issue #65050: loading multiple c-shared Go libraries in one process can lead to panics, crashes, or other runtime failures.

This consolidation is meant to reduce that risk by keeping a single Go runtime in play, while also reducing memory usage compared with loading several separate native extensions.

Deprecation notice for the old scripts

The legacy entry points and package names are being deprecated. The replacement package is pygorpmrustinfo, and the compatibility scripts remain available only for transition:

  • get_go_info
  • get_rpm_info
  • get_rust_audit
  • the older standalone package names for the previous split implementations

These legacy scripts remain available for compatibility, but new work should target pygorpmrustinfo instead.

Installation

pip install pygorpmrustinfo

Usage

The package provides the same high-level functionality as the older helpers, but through one unified interface. If you are coming from the old packages, the main change is that you install and import one package instead of three separate ones.

CLI

get_go_info /path/to/go.mod
get_rpm_info /path/to/Packages
get_rust_audit /path/to/rust-binary

These scripts are preserved for compatibility, but the recommended path is to depend on pygorpmrustinfo directly.

Python API

import json
import pygorpmrustinfo

# Go build metadata
res = pygorpmrustinfo.get_go_build_info("/path/to/go.mod")
print(json.dumps(res, indent=4))

# RPM database metadata
res = pygorpmrustinfo.get_rpm_db_info("/path/to/Packages")
print(json.dumps(res, indent=4))

# Rust audit metadata
res = pygorpmrustinfo.get_rust_audit("/path/to/rust-binary")
print(json.dumps(res, indent=4))

Example: Go build info

import pygorpmrustinfo

info = pygorpmrustinfo.get_go_build_info("/path/to/go.mod")
print(info["GoVersion"])
print(info["Path"])

Example result:

{
    "GoVersion": "go1.18.4",
    "Path": "github.com/example/project",
    "Main": {
        "Path": "github.com/example/project",
        "Version": "(devel)",
        "Sum": "",
        "Replace": null
    },
    "Deps": []
}

Example: RPM database info

import pygorpmrustinfo

packages = pygorpmrustinfo.get_rpm_db_info("/path/to/Packages")
for package in packages:
    print(package.get("Name"), package.get("Version"))

Example result:

[
    {
        "Name": "bash",
        "Version": "5.1",
        "Release": "1.el9"
    }
]

Example: Rust audit info

import pygorpmrustinfo

packages = pygorpmrustinfo.get_rust_audit("/path/to/rust-binary")
for package in packages.get("packages", []):
    print(package.get("name"), package.get("version"))

Example result:

{
    "packages": [
        {
            "name": "serde",
            "version": "1.0.197",
            "kind": "build"
        }
    ]
}

The functions always return a dictionary. On error you may see a structure like:

{
    "error": "path error:/path/to/missing/file"
}

Migration from the old packages

If you previously used one of the older packages, the migration is straightforward:

  • replace pyrpmdb with pygorpmrustinfo and call get_rpm_db_info(...)
  • replace pyrustaudit with pygorpmrustinfo and call get_rust_audit(...)
  • replace pygobuildinfo with pygorpmrustinfo and call get_go_build_info(...), get_go_mod(...), or get_go_sum(...)

For dependency declarations, update requirements, pyproject.toml, setup.cfg, or setup.py to depend on pygorpmrustinfo instead of the old package names.

Notes

  • The consolidation is primarily a stability and resource-usage improvement.
  • It is also a practical mitigation for the risks documented in Go issue #65050.
  • If you are maintaining older automation, consider switching to the unified package now so you are not tied to the deprecated script-based workflow.

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

pygorpmrustinfo-0.1.2.tar.gz (13.0 kB view details)

Uploaded Source

Built Distributions

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

pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.2 MB view details)

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

pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.6 MB view details)

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

pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pygorpmrustinfo-0.1.2-cp314-cp314-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.14Windows x86-64

pygorpmrustinfo-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pygorpmrustinfo-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pygorpmrustinfo-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.2 MB view details)

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

pygorpmrustinfo-0.1.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.6 MB view details)

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

pygorpmrustinfo-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pygorpmrustinfo-0.1.2-cp314-cp314-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pygorpmrustinfo-0.1.2-cp313-cp313-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.13Windows x86-64

pygorpmrustinfo-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pygorpmrustinfo-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pygorpmrustinfo-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.2 MB view details)

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

pygorpmrustinfo-0.1.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.6 MB view details)

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

pygorpmrustinfo-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pygorpmrustinfo-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pygorpmrustinfo-0.1.2-cp312-cp312-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pygorpmrustinfo-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pygorpmrustinfo-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pygorpmrustinfo-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.2 MB view details)

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

pygorpmrustinfo-0.1.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.6 MB view details)

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

pygorpmrustinfo-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pygorpmrustinfo-0.1.2-cp312-cp312-macosx_10_13_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pygorpmrustinfo-0.1.2-cp311-cp311-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pygorpmrustinfo-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pygorpmrustinfo-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pygorpmrustinfo-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.2 MB view details)

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

pygorpmrustinfo-0.1.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.6 MB view details)

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

pygorpmrustinfo-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pygorpmrustinfo-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pygorpmrustinfo-0.1.2-cp310-cp310-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pygorpmrustinfo-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pygorpmrustinfo-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pygorpmrustinfo-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (3.2 MB view details)

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

pygorpmrustinfo-0.1.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (3.6 MB view details)

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

pygorpmrustinfo-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pygorpmrustinfo-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pygorpmrustinfo-0.1.2.tar.gz.

File metadata

  • Download URL: pygorpmrustinfo-0.1.2.tar.gz
  • Upload date:
  • Size: 13.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pygorpmrustinfo-0.1.2.tar.gz
Algorithm Hash digest
SHA256 68eb6187577321fd50968f901e22f198e7af2bb953edf798c12a964d2ee05174
MD5 777dcd1e3fffcc7d234456714226f322
BLAKE2b-256 987e5e72f3147ff90372fe1f7a5c4d208f1d810fc70ed2e3784842cc8ae08f5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2.tar.gz:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07bc1c9e8ceec8fe922e2dea1e958b1b3185e663716fec774450551edd38b3b5
MD5 91b46692126969e9d48da8082b1c7ce4
BLAKE2b-256 260e428a53bd8683b1123f497593fea73f95552c8ad5add358a8b930c0bd0d92

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f65d352182b2057df6dd2aba8a6d97d1971a603e563ac36d1992e6fc47b7c65a
MD5 45f9be37fb16ac362e2a3d47701817dc
BLAKE2b-256 0502f470cd7e9efd5958833b2d971d66bdbf3705b8a071369d38c7eddd92bb82

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32cfc7a58bd9b257394e53e7ed651ee30dcb51b479db42229452790c366de897
MD5 1e3e5975c42e6d4cac1ce93105524c26
BLAKE2b-256 fcdac70dc65eadb0fe2e372cf72c2136b66fdafca82efc9c28b918dc5dfca7fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c914be9ba3e384b3fdc9dc202b5a5fd04d6b68071f2c9f3b05fbff636726a2a6
MD5 bea3fcd724deeb09f16c30724d1d3c75
BLAKE2b-256 505ae5691c0d0c67cb7bca7dafa7d97fcfdb899143670b3a47023ed8e07680d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7e6fcc1b52111fc91ada8a02e0397e7fa2230ce9bbe5f68f198cceb11648a8fa
MD5 799d9fe991bcdd92f9f57c7805bce3ae
BLAKE2b-256 2bca3f3234764cc7ab670b03899666ebaa47923428d0178f1b5a7585fe67079f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6c964cdf5455f27cc093e69644015fc75e61e840c16d65679fc9b4a455b0d83
MD5 ce4fc8cf13f347bddf466e9262cb21ac
BLAKE2b-256 aacc50a93d331f8e59b726749ddd9980658782860386b3dbae1cde8ae7263793

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0eb09da411e0d224ca72b17cd3679f80849e7441ca34758dc86744641246cce
MD5 b42397936673c0de80e7ab6b556e7c05
BLAKE2b-256 39de42b1ab6978facfbd19d80b8ff74a89fa3550e6b5c8d5fe22bd1b5554739d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 85d70109e10475d9da1323ccd0899e0cacf71d2ab4186be845abba9e8180a684
MD5 c97fd02e473dca9d2b9fac544377fa63
BLAKE2b-256 f2d61d1e1bb770ff2b3bf45d4ea86196ea88b7837d6e4dbabd37c985a3e75428

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ab5a1f497904182f5df2a1e9971a246d6f6b56313bb3f6d9a0737580708d39ee
MD5 0671f0cd00d010dcfc2c36db0e6154d4
BLAKE2b-256 412bd9d8e6ce5165b88886dce93ab046ad4ff75400125f0d5e3f3cbd4c1fea3d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57633b82771793cf9cf4ef10faa875f5d746e35721e899704fca96aa0cd50f9c
MD5 92a99369355eb32d54809224e25afd44
BLAKE2b-256 87c2a73d0ac2b9ca91ec601de0b4211d83d11c9f951a79e893ec033834277062

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ec09a663f54bea5f36c60ae600f49be00807a4f44f430780fcf7bf1f75047d7f
MD5 9873c375239c3c6bac37163e8e5c0c61
BLAKE2b-256 6bf95f4d950dffae22649555ef5026ba26ba4329ea72f42b9570874c7708b62f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8a706ad61f83316c4f0edc70e08252052c97f787c7687caab7e3dc520a620c7d
MD5 44daed6536a0d7dd449e6021370e8212
BLAKE2b-256 164521254beb63dd5eaa29bdaa05b26f9a43a883665ceed9eec35ea0b4248ccb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c7de6bed7f4df5afe0e4cf582bc0556381ef8b85ad787f45ded5497bc78ff7d
MD5 6b23df1f91efdf735713651746456902
BLAKE2b-256 ae1ec8491dc9b07bdd2386d5f9f89c550fc8785491021ad154b494e7f9b2295c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7380babb186d675de8a85a6e683fb59095a64971ff9155c61f1a2a4eff8f93f3
MD5 473989d182861e7569c366bcd87b0bcd
BLAKE2b-256 8e774591ebed182c1e29cf55b8a57b3dc76b0bc2a8db38ff0ee3327b2d95d71c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5eb46df884a88f207acaa8143fe1d2543d9ae6b18b6939653b106924722ec53e
MD5 e4bd12cbac400478003fa5ac922f083d
BLAKE2b-256 234d5f3399f8b8163617e15c3639d9693f99007f1fc3f4e491ad925aecd64783

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 580c5cf604bf881dab5993b7938513c96cda34fde7136db78c0093ba326261b6
MD5 7991b0c14da368248220131ec3d9271e
BLAKE2b-256 62202a1241c779a0d78b973292b7b60443d2b3b9d70b32ec1f6187b234cc2ce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15b2244c2087e753222d030bbef1d722851a0475e21e81b5ec5e61d1f004dc57
MD5 ed3a13b73a62855c7f482bb9a2d67715
BLAKE2b-256 5c50f159048be478ccefd098ba593bdda835d2a35355aedebc754a1148852925

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fccfc5980dd2519b5cf0f90c509fabb7fbe9a47627369a0936319ed93df9d432
MD5 27c4a077a827fe5a049c19ad4a88a25c
BLAKE2b-256 21125282e221b90c68138b8bba65845d85be675cf770392fda89ee43cb08246d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e38eac259ef24b48dc19216f3b0b543ab61b0693d0f0198268eb591d0af7fe92
MD5 848eef71f8c32c35b13662d20927ea1c
BLAKE2b-256 cf15e46c788b23943414db7b9e38c58c5629d9fbc1758ec5c5860256bd8700fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c924c86c45e745c0130a9d932bedfcb062d6fb940f5ee93db2acad59a009ab9
MD5 c52fc631f9051329879f4493281909a3
BLAKE2b-256 81570db7ab05f1705912c4899db487f24cdf8defef32d05e9237d0733c6b556f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c250d34ec4e572d7e1b9cc74b8037979a00b53044c1bd6996244e89ffa85aac
MD5 ff66002b4452126a968eecc0b3733698
BLAKE2b-256 3abde64581403857f0d3860cef7eb7efd298acb52f46baa964982468e7c4eed1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cacc69439a5a09a7e0d348a2664162d3a4dfccc87c93549aa5ae4c6129b4eacc
MD5 027405ea5b31026b8d91899067c7e235
BLAKE2b-256 6e75a43562c9f45951a3fb0ea925895e01fe52f5c6ea628cf799f36fa00d99cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 051d0c708f67cf81ef4d6cc030d543f01d3fb26ac7e0143d418526e1b69850a5
MD5 d7fce606ecef84d5c2217c01b76b67a6
BLAKE2b-256 eaf79b0964fe905adaa203f7183ce29684dc75c0030cad0432cad5af5aa31d4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4859099e5743bd0b85d6722ca82750d3d14dac158c5fb3d3adb1bf9a1f868ef2
MD5 c3ac87afe2dee1a4734f60900baace1e
BLAKE2b-256 9ef2e64ed94b2290848acc6364d3c3eed6967e3485adcb8842095516ab5c9e9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 04124683fc9edc7c9c722007e9988be33da4d2cf8ae2fe9d7a01259c5470e3bb
MD5 63e707bfdd0ca1356786d275dd568013
BLAKE2b-256 deebfa2e7279bd2268118bbf2a7f2286c7d4306ea4b9f4dc872731ba710fa915

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 803bacc50aed93d10d78f9d68cd478cb6f87608a97c9cdc10f527b95f9f610ec
MD5 e3e9b681ec9f3f11377d31ae214e0e91
BLAKE2b-256 6948f7919f385421932acda982d2acf2f1d2ffb5f1793869a621a1a81d18d84c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b44a4093a08854c62763514275ffcafa950735391ac66e1ae769e9b6bc540162
MD5 b5c4316f7d31797675d44702b54a309e
BLAKE2b-256 777d5cb26eb9955143e8caf92dab109c642bc009705534b9069977ea2e5432e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 602c42530be7395c7f437f241324af038d27b1e226c606b06c319c13f3ae8444
MD5 2d7bfc07b3d0cf918c39a657f051d3e1
BLAKE2b-256 68f2caf3cade4e3d822669302696874da4769cf47e190d1d6cd84f332c1642b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 68a7365001db54d579723553820aa840eb41df48e3ad6766795b4c7a55c44047
MD5 7dc2e3c02ee09114235a8449888837ff
BLAKE2b-256 31229a21bd3dc593dd091b8092160b888fee3cf6111722829b2316218cb72db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 78dff921a32cdeae2891946e2af24f8607652213c1b373a8b589a56a46ed33fe
MD5 83e95d531ae657e5c447940eaa3e838e
BLAKE2b-256 a62eaee1824fb264083a0c9ca9d755102953546d9c91b3e811b71e5faf6a6181

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1aa3d67268ad27b543f2efa2bfc733f8b520c9161f91e5749aa493e3b97b6a53
MD5 e50b6977cb243f02fc159583729494d9
BLAKE2b-256 79b2a9a2286fa25612644fdaaf873e6cf46d9d8da1b534f240966a6dbb73f2f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9f7c973dcd99e15b8867bfcf912aef6a1d4f35df281490c77eb612d1fdaa07e
MD5 1fcac4e67f9cc213833d699f48bfc35b
BLAKE2b-256 1c70f8437bb177a3deb4f31b8f493bff2a019c0521adc8aab8f1fe14f9299c23

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6dfa44afecb4ee1277dfde209db505cddf4fae3f995273c57522cdd7460f01f2
MD5 cfc7b4b801eb815db17e446cf9f704c9
BLAKE2b-256 64a6292d672778e58045e251ea146e94585b509312e06eccde68d2d43eef8a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8aeebb5b1a5f2fd4077f240df5db31097ab7e60f7777052ff3c22296dd6b800a
MD5 2905870026dae178628e8ec29b4ae323
BLAKE2b-256 d3dfaa92684d3ee65968c018439929788c19f164606b4aa9888156e1ef4f1d85

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f583c6588c662ff80e5f8ac1f38725c86b5aeb5fe46bfed8e390c317b4bbe6c6
MD5 57483357a44a60458eeed38318518cd6
BLAKE2b-256 70df10e345870c35d837dfd1bd120c771c55ae764666ef4b792b10f489b75416

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7bad4e0d0cfb8b79975e640fe1870697d557e36dbbfadae8b88b418f68f088ab
MD5 ef205d378186245a50a4f88a1f0b640a
BLAKE2b-256 ac3373864972f1ab9588397a685c92abc3b07b677d134ffdaf5db2511461cc3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1ee038bafec493830e316406e767fac132341e36bc98b85bfea30d063aaf7c07
MD5 5da9081b38785fa452226a63004ce5e1
BLAKE2b-256 41bcecb310aac4b56ad1ed808ff4afcf2c43317f222ef411a7b0a6e9f17d0e5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b94ba62d088ffa62c03110b9d291a424d6c7da51416d06488d716bdf6614a48
MD5 36da655d7adbf7dd6840af71724cac4d
BLAKE2b-256 e8403d881d63f516c167f3d25fe5ce1376d09e608667c7c2561d538afbeb0f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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

File details

Details for the file pygorpmrustinfo-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c72398d81feb0b09d7aee4ad8464bb7d183bb4e322b549d163ca92863cd2863
MD5 0dca500238de3e79618604f1aa6c823b
BLAKE2b-256 e5c22b6d55e9f85aafed746cebaf2a4a802afe321900ce6de731442b0d9c0f93

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/py-gorpmrustinfo

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