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.0.tar.gz (12.4 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.0-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.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

pygorpmrustinfo-0.1.0-pp310-pypy310_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.0-pp310-pypy310_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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygorpmrustinfo-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pygorpmrustinfo-0.1.0-pp39-pypy39_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.0-pp39-pypy39_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.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygorpmrustinfo-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pygorpmrustinfo-0.1.0-pp38-pypy38_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.0-pp38-pypy38_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.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygorpmrustinfo-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.14Windows x86-64

pygorpmrustinfo-0.1.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pygorpmrustinfo-0.1.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pygorpmrustinfo-0.1.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pygorpmrustinfo-0.1.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pygorpmrustinfo-0.1.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pygorpmrustinfo-0.1.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pygorpmrustinfo-0.1.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pygorpmrustinfo-0.1.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pygorpmrustinfo-0.1.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pygorpmrustinfo-0.1.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pygorpmrustinfo-0.1.0-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.0.tar.gz.

File metadata

  • Download URL: pygorpmrustinfo-0.1.0.tar.gz
  • Upload date:
  • Size: 12.4 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.0.tar.gz
Algorithm Hash digest
SHA256 550429e1e886ae5f570bd154fe162a4aea43baeec094e7ce2ba034c7073479d5
MD5 d1318c14d2bd8a7825944da40927e560
BLAKE2b-256 c39c31c3aa5f63263382fd7741bb6da28122485e9ac37b35039a749867b281d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0.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.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 88c416251c1ec433c342975d9f1454af569bf9ddb9ef1717b1332f83a5de1695
MD5 a87dcaf3a29fc9c365f33c4510a135ca
BLAKE2b-256 108866e30db82a5afed7c5f031c0582235ff1287e027a8aa810a0dfe1ee64973

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-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.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fcfd16d31cb9d73565d806561f9998d7ff4d4e3625f8fdb38a30e2a18f868b2f
MD5 5bc243d615d1d75855016e869739b291
BLAKE2b-256 c82bd6b134bf55aa664faf516400366306c251bbcdb27077e271a585415faa3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e181fc51015ebcd037ad3bbf5115619666148f34a1a65e47245b242f045bafe5
MD5 7836970ae2c6166d13fee561e309cbb9
BLAKE2b-256 7e92b0e276376acc80ce98517b497ff0a8bae9182eddb2058bd67717e6e26870

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4c6425a832ac2eada22a1c272b61644b440103040ba8855c876121aade0a3462
MD5 dec0ea97821a80aff75bbcfb601377fc
BLAKE2b-256 5c69d9c417ae16fb520764f834207ac292d4e7fab16b899243fdb09cf8d97fe1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4288620c1abc4260d7b574c498cd9b21437795f2ea073fdc6714ff3cbcbf7037
MD5 70d6f27fdad6cba9b2d40152e545551b
BLAKE2b-256 7b6061658f1dd2a7558bb4ee9503bf687954f201e2ba723f1053c72d36d5107f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp310-pypy310_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.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bc918ba512f9466f0124f47cd7e06794982eed28ce9a1fa70aa57df4152a632a
MD5 80211b31f33de0f9766fb4adca77ba5d
BLAKE2b-256 469ecfa78221f5d895da528137f48e1367d37e29a8206013596b75bab6110736

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp310-pypy310_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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbd19edbfa66cffc8ef68f02ac6c4c211bcbf99c41cb36824231facaa50242ac
MD5 f588c52f8cb94b4853914bd036342bf4
BLAKE2b-256 eb901dc787f7efd1229b112b926e969aa86a7178e96a4317431f8739c775e04b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp310-pypy310_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.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4dd6e935d582c693779e30df16314c1e3c14a5ed42ef9e6b35f20fba684a588d
MD5 bd5c07308159ccda3c5c951f2e79997c
BLAKE2b-256 3a547b8e7a2395a48e53687f02bf1f7b250cc47e76e7f65dd2d5c8c5f9c74954

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp310-pypy310_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.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d98dacf2b4bc8c1a83e184f560e7112c0ff7b04e09f616d209b22d015813a842
MD5 0d2d426f829e5990f08f30ba243c095b
BLAKE2b-256 2bff6bf65e311ca2f3d87e260767d24c539145575aed8ca23816559e4f1adcf5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp39-pypy39_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.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bfad075da9d91735b07b4fe90016d604d7ef35bc3da04ed9b8fb2cb44cb13f6d
MD5 8f1d1e6daf9ee0642c015f72242960c3
BLAKE2b-256 589fd3132eba3664c7c0a09bc3e495d62523e0181e03120e98932cf29438da92

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp39-pypy39_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.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8eb412dc5a73a29f796008fee0579e655b049e69dd12d7c5292ba8e02b86440
MD5 abed9485bf75778f4152c22643f1719d
BLAKE2b-256 b970cb8ec8977f9f703147f3dbb28cfd00e9d3dee6d2222d2f56453abacad8db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp39-pypy39_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.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7fc470f71973abab4319788b6e863a11685ffbadea456d63c33259908747820e
MD5 e25d645feda2ba76c06907019811edd5
BLAKE2b-256 75d8232dc759fa3bbff4872b420d63149a191b54431e48d5521722a5da5de69c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp39-pypy39_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.0-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 94fcdf7347c310d799b2f97378fcd3d77edcd12a9ada86370fa10ea34dd80caf
MD5 d7a35fb51e10ca7c9b7caf24330c1676
BLAKE2b-256 96cc53f674767e0ad3063aefbd9a768a1d8429301dd7f207c0da54bbd8d29a9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp38-pypy38_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.0-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b86dafa7326c6c2d65c829108ae3dac71e2eb9d3c3aa6b48954b3e26202a4384
MD5 85d4288ce0c7a2b6e96d01c05c6730d4
BLAKE2b-256 e530fe4931e5eceb788ce8f673438ea4ffa3cda94018b553cc749ae8cc6fe495

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp38-pypy38_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.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25da30c0b5a2c7e8ced2a6d2aec5d4ab8408460c8b1ba3f8155c97b500f589b6
MD5 b906d511ad2e1ac4de2e877b0c1d26c4
BLAKE2b-256 2bef77166a1c4d24b67b1c4f9ce57b58bdf4e108eca5fcd862f32ab054cbe9fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp38-pypy38_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.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db8082af41c393fc188e58d98489847c44f6cff3468b21a975cbea203127b4f0
MD5 fa18f80ef0f582390ccfaff91f161ed8
BLAKE2b-256 9b845d619b8e16f5c5e6958b34f33191650ca1caafe3ceb399ed6a307cc01171

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-pp38-pypy38_pp73-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.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f8061f9eb5b78ea6e70792acca8bf585a35072aa2cb915fd44d4551fb7938a88
MD5 98732dcb3e5e3d3bc78ed06ce6965e4d
BLAKE2b-256 7ed66c24852af1443dd20b9ea0e278e26e5f21f17e770291d07bdaf969dbb9d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f554dfc62f305b43e04e6fbe8bcbd935f83317a7b388acc9d7c794d39a98e5f
MD5 4456d82c012c6703b32bf6f7524f1b3e
BLAKE2b-256 047ef1974308ae28ff657d832d0856da0f7d2ff36c877cbf92398f3c5edbdbf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3eca09f8ceb9b66bd7b46481fbbb62ae3be0b02755a35653c116a968d17b6fdc
MD5 f459dc5aa993e25203e28b97a3df03fe
BLAKE2b-256 516481c214bab1e22ac8ed2774bf8f064727caae9adb95b183d98327ac2e0caf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 24063c735096f643919476ac4dfbc8c6ca8fdf84d75a3932e3818952ac736e74
MD5 d07c99ed47fc701d1c3d4ccd561b72c8
BLAKE2b-256 5a1e0aa45307314952762c77d4086d356888c9956d1b76488074c0eafca98898

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-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.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8fabacdd693e8eb7a2e0af61f2b17e4634abe7083402c9c7eeb6911158e9917d
MD5 0a812c65c68f92de94c256faa30fb291
BLAKE2b-256 d90e6cc917f63baccecc6bc7c77b886c8f0ce141651e2b271a3ade457dd6be16

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20ebd59862f25133442c384a29911efb99003b9f30163c23bf5510eb6c2fc64b
MD5 8816c04eae81509c3cc73327ccf76ce5
BLAKE2b-256 8953072444d91dce58fb6a77d12b5e692fb361ad673da2be65f884830b3b25bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 12ddae924be7a64deb8ee39b7f071263443f804838ab2f5a9014da78556f5a8d
MD5 07d4c2db1dc1761f61ce89b7e9bed452
BLAKE2b-256 46b67f2a3deae314c2413e390c3af7522d0657887faf59b252eef6d0e9900101

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 52b77152c49f0b3e4d96e557abc7d261fbd765221a96d40804369884f5ec37d0
MD5 8dac6cea1835b4280fa1a15288457bc6
BLAKE2b-256 b804944359b57677f7a349c4a14f8bad0c1083da5c41e6e95a539220d5939454

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 237bd5fd205faddfd900b1a702b4c1b25519dc440ea4853bcea47214878272fe
MD5 84546ff0251ad47951faaa91060144aa
BLAKE2b-256 3467c8e9eaa1a346fb0394cc4329910ffdf99bbe1cc1999ab56d2f52aca5db18

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 56d22e869e08b420a4ff674c562f55f80b644d8c88f3992325bade2482cfecb6
MD5 751b77c20e50073518b3e61fad42141d
BLAKE2b-256 b2e5d1dbf75809ddbcc43bbf0b967149127b275bc1f484a58b74498e4008dec4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 baeb42e7354538a14bbc3533fbb5294d22a3e730254d8610c3ff9f416f66759c
MD5 df747ae502c5aada52c2fb7da01cbbe4
BLAKE2b-256 b9a3a1c5d43c348e7a24bc8a1ac8d755850952e9c3e287ffe06cd09c2527544c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-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.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d37bc8ffb5b0fd3b62ae019c19d13236c5301ab469634c952e30d36a5fd0fdb6
MD5 595338416b8a7faecd5a147b12c50372
BLAKE2b-256 beb0ddce682aa630c2bc4bc8c802601c136f2fd1740bea9de34ec3ea8ab76990

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e72102aad0e80a87c3c142c4b3878a38aa67d71f89f5330455e319a4719cd2de
MD5 03a19a1db74442f15185fbf4caf9d11c
BLAKE2b-256 180c2a4696361f5e4214be6d7aed6e16c3839c08171d778144b3f6e0b9b26c0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0f1789290b02a8397427336fee40ff8cb455488f5918ed42be1bf2bdbb0d8032
MD5 fdfac5f514bec6eaabd672733cfa5025
BLAKE2b-256 8ba5e006cec08de197618cad573f5dcb84f75f0f3786c8f8e491134b82b274eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 93a0da1844a590d85c031c327a645f0a9bc9fe9f8ae5e708a2e5e26bcb7434c3
MD5 bd7498044f87af21290a81b8441c77b8
BLAKE2b-256 b75f9483e7ca8d089816fd1b23402aa3f8b60a482d711dfeed88d2e2abbd8266

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be5fcc777fff4b87f1918fabb5a3b7581578eaa281601395758036382774e6cc
MD5 8f8168c4f5a368fc7ddc75f609bd5d72
BLAKE2b-256 9b42e46b5a8d6cf7e476c6578a34ba3be008f6d28d4801716600e477650f8eda

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cde280fbbcbd8c90a10ddd6bdf4c198bf1e2cc0c9ae13c1a65ccc82391a31def
MD5 85c72b5e91ab2b746bb940cf26fa2c5e
BLAKE2b-256 ad1d456c8d5850cfcee263b1ce42e9153bf7d5cc925c8ce066df8b19fbac0bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 20ace001c347d7a27eba951f4a965299cc3f682d80c246b16b72c67acbb9cf7c
MD5 582f6a3bd709dc5a17b7cb8a77b75ddb
BLAKE2b-256 b2d1c6965fd4f681befa4b0ae3644b6e5bc0f7062942d84bfa3f537d988be275

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-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.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 260528deb837f2bcd84fae539d06a02b2e53b7820365a5f7e72500316a8dd046
MD5 af502d589da2876ec1f0167e552fb77d
BLAKE2b-256 eb4a6a7fedbfdba8bb0651b6e88fd209b856e0b6fb5952de961fe3e70dc7af02

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 130b73bd64cd690305ef99d4bc4a363743380d97949589c9314840dfb92b562a
MD5 d359d38c184b40e9bd13a51182242364
BLAKE2b-256 6f9f228041f9ba64ed4603919568cedc7a75faa72be5694d0f888fcef0ddf730

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 605f501fccf72946c23e25884c5eb18336c4186016e5fb92d167951edf33ab32
MD5 5617fa39bc149462d1d6cfc4bc31819a
BLAKE2b-256 7fb59a54d685748a2cd65d60ff4c9152fc6267b98ae9d4c0c36dca72d069bc89

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a8319db71d3d5692a91a084710f7aed645ef36875525434a545ba0e15950654e
MD5 d38d44aa0b6b57011eea8e113e57188f
BLAKE2b-256 d70832f48c3bef755cf50adc67082978570ebe43cc28e7a9c8f7c684fbcdc55a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b9495b0c2e99afc2f58f18d660273409e7b0ecdfcfb772f67614dccda47b777
MD5 1b50c434e3da6523cef5b361e2b4ce4b
BLAKE2b-256 4febf9cedaf56bde00e8e1719ea48307466b3f6a7690f5df631dad113d42ab55

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f015efb70af14a831222442b0bc0c3dbfc6b599c905ad3d99615b8d2f8867e5a
MD5 b6be784b784749b93ae829aaf04f40c3
BLAKE2b-256 ad57adc28b3875e13ae92520783421404d71a70d4f70c06586427a71e5928053

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea424b34733c69617cac60db934409bdfd2cef0994cfa1e3877635cba6e11f6c
MD5 dcd9ea0b3368f96872ca68e9430b9976
BLAKE2b-256 4f554a6e2f8331990808eb00543845b090cbe23f2769f382242fc3fe82db3d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-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.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 70a8f400b1ac1d65e4d16208637f8c5c4fe00e26c198b6297e74f8519c6a2d35
MD5 aa7d920ce5f998a1979bb6bbdcddbe50
BLAKE2b-256 16d11bc144a41974ba128a4bdeb69813d8914b6534267f3e989ba274802a785e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 920b021b7207eb594573f7473eb666484c58114e659d9fa398fa7adc2ebd7e65
MD5 18fe3ad6bbe016b745b12b79d89033c7
BLAKE2b-256 473112aae5541e9936ac3e8d1830510fe63937671246c6dd45498b01dde16c8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58b60c18d0d0f92a57d4ffb650790a29e3cbee4c796cc45bf0d2604841172404
MD5 14945d2ab1797b07359b586224e23a66
BLAKE2b-256 91410a55e9bd186ccb11042a307595a7f3f2beca312b9a2df37bb5356ac7680e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 391f0bb3cae13d977783f5d0ced1cfe8e62cbd7510b19187c2e98775ff041811
MD5 4de16a50a569e1e52bfe5b9d27c2ddcd
BLAKE2b-256 5360fc3446f8df9d5f8081188c45116dcbf0d28a9f19813dd8559b7e03d15a97

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 92c70d76a961725a3beaf92c55cc2827f882ea2b5f42d83d4c676117f20513eb
MD5 6b5b504a2f16a947cfd9601c7940b53c
BLAKE2b-256 aae27e43d3805d8514b3b0a81397f0f09203e68fe0807f5e421af9c3d7070a50

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 956aa956602fd7451bd4ecde3ec578455a658e7cf2e3280e1a03bd6c1bf97049
MD5 467c854c8987ebe260600e8357afedb9
BLAKE2b-256 e8be7b21c30d4a3e9a54b3e15eae1863520dfb11b9d00b3dcd22d15a3c1a40aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 51870d109faeb1c61d538eb4941ef3c8feaa09ebeba322f52b21a34180f45024
MD5 d721b7ea8db0efca411269a65c6f3932
BLAKE2b-256 f64f02bd3685a71e241d8af9377aca42f448cc305df3f1d496da11731635137c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-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.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 94db5153092363b08f78972ca0d9395212d0914672928919baad2fe1ea466d79
MD5 503ad37f76bc1759df2010c2990c29a9
BLAKE2b-256 40571b069bda2942e6e01c2190ad67f28e8d7a079ca8da933703b2bc1507381f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13a82ec45162d0a9f54249f0885717be4ed571dd87c492f056a0c98d68ccf019
MD5 01211591d398262ae3d66fa36d4ab7eb
BLAKE2b-256 d5b6dab05a4ce878011ead1f979b27c67e5c7cf9620f6cff033d883af95fad97

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0385d72a552939b2d040b8bb4f4478da6486e7b00a845e080fb59a8d7ab88623
MD5 372b40a1f0754df4d61c6bd71b6c501d
BLAKE2b-256 96129647c7295b83d9afe9475dfa90f2d717a29197c3fae6111010d906e3722f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.0-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