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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pygorpmrustinfo-0.1.4-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.4.tar.gz.

File metadata

  • Download URL: pygorpmrustinfo-0.1.4.tar.gz
  • Upload date:
  • Size: 13.5 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.4.tar.gz
Algorithm Hash digest
SHA256 dd92095c45a94bf2c4c107fd7f86cb5e50d4091398cc81aafb3f3065dbcaea5c
MD5 195a3f08d48133f73f722926def5662f
BLAKE2b-256 f7d2b599fca3d579c99c966db1922a8146e17b5640bf1327e82c358a507f606a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b099acf419cbcc358d81a5eef00606e86145a072e7d80dcd4d9e8c9e5ca1255
MD5 240500f7011d6c84150a4993f3ed9403
BLAKE2b-256 fb2b59b90a6e1779a1910e40562e57e7c35c19ae6c9cdc60e8479624430f6455

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.4-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.4-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.4-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3b2d9b2ec0ce11b8b6b74e730c3c1998954b9be82baf26a910e1d764db45eca9
MD5 d24ca481cb931db978e827a4098cebea
BLAKE2b-256 ea0903fb2db21c5616d96c0bdea8628f7daecd0c87e6cc0e0d6922ac89c22298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5bbc07057a1494e9d848065ba22930db25652dd74456f850697caab880507b1
MD5 4028a78964046bf9f98116ee8111dcbd
BLAKE2b-256 9abc61db23bfb09903c208a059b07900093319df13ffbf7aedbcabb6569591c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 1c58a2499dc4caed999b8bef52820747f11351c0718531c4ade5d4fbb107c667
MD5 be654b859a79218181a42f5129c685c2
BLAKE2b-256 16962b680d7363da31602890ed6c0bf8814f130bba71bdae51cb50a5a18a68ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.4-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.4-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dc79c33535e7765d79949fabcb7065f0de6f6c4ae52b1335052cc92b73c269bb
MD5 f400d2cfb9722668e7d4d7e5f150bd1b
BLAKE2b-256 ead178c742bf57403f153b65649a01ab79c30d07a0d408b9608574e42819526b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6abe1b4b254b5f8e98076756fe8fa7ff65ca7b87ad6308cb921159d30821d89
MD5 8aff2bf449971a42f7bf1a251fc0c7f2
BLAKE2b-256 fcbcb9645bdbdf2d393337c67369cda4409ece6288a523ffb2aeb4fa1c82f29d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01d7fa543ef20b4a1a280a76cac5965c6aaf99e961d2955b6eb0bb9acd143332
MD5 7723a16f146f152c1995355757ea37ce
BLAKE2b-256 2cfcf29eb3fe255bc58bea2a141e7bcd4a0263601d58226cd303c2699df94c8f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 661b891afb352537584cd99f400467873df7bfee89ec3f97ddc411dd7ad266cb
MD5 abd0a1cdbf0e282c057c7fa662699bed
BLAKE2b-256 d020fb30ff5fa68b912d4fa3a61b891a0120fab128360c52ba7eda1a77778de4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.4-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.4-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.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0d0eae8c0d47ec9af12f44ccaaef014b55d18b1f29fd931a1159c5e8147750ad
MD5 8602ce3b0923050a21811c9258cbf07c
BLAKE2b-256 732b67af4a390052b3954addf6245ff4130463dc88c87f2bfd6228ddc6a25871

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a72f61eade934a74cd2ec7c15c7edaeb452820003776a6b76eea1c006da7a06b
MD5 c332ea640e00e31dbac67dfb9561f058
BLAKE2b-256 b003e4cc9b355946a9248de1f9217c9e8d7968a726875b1af3ed7cf30ad09b05

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2440f90ac3a89ea191db98e10c28b73ef149f3356212f5fd63377d8c8bd18f83
MD5 5a0cab790be4bcafea87e7fd03099dc1
BLAKE2b-256 ac87fbd2c1abb735ad7fe80e375b6a23a2fbd3b1dbd6eeb8dc05d50090199382

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4cd590ff9cb28c1eca9f9cd6e9118f24d1851cfcd5f7a955ad8ca3e0e3404e56
MD5 0573dffc770e1894826f47ec990804fe
BLAKE2b-256 b1f26d06ba2bd31f42742a8d333ad818ec4b525981878bf6c8bebe7426256d94

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 402491149b665a2ce8d9d0207171f10743cbd6117efd8f5d615f70ec91828dd8
MD5 641a1af59c72d9f8fefb9c67c49ce3e0
BLAKE2b-256 d31462ff5dc8bb1c287739c3fa5ee2ca83244791f9ba3753f97a1197cd762b73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e90ce008257249fbed39ffab89443028f6f4cdd0f339cbfa07ee450e2810b55
MD5 f2b2adf0dd2599e8740f3ded889059b0
BLAKE2b-256 0cb1ce8274f7c57c3e3f6f09c5bafee2f9523062bf1d179c00050f3a1c03bc63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d1467d240d71c18096d51b26bd6c9bd96fd4d257ad34ab75eaabde87adf0f7d
MD5 b4a5262d3b7911a0910e39fc0f23c956
BLAKE2b-256 eef1f9d0847ab47088d0229b2b9815197cbabfc3de71e006a7e9247cb2f36015

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.4-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.4-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.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 602948fbeedc41e73dbbf3f59d9425728c71f5166462bf2759941c5d461f53da
MD5 97d0576a4d1d8ae98c22e69313a29f57
BLAKE2b-256 44faac33e363ad1bcd3550f142c792ebde029299948cf1b20af83b93505ee29d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c5d5343b5170954b441383050bb1896904a12f7f28b1ec977e79914188a9bba
MD5 c0071f55226a4cb5e6ef1e72843ba921
BLAKE2b-256 9676f2b3eed68fa8b1f9d4c7b9970b500c9e7d6f8d1bff40f6d4e7553a3a3926

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f9dcd3c5e6a1160e2020c522583332c985b8d242659f434df0b499081401ca53
MD5 7f7572bab0be127fc17a2aded0660a92
BLAKE2b-256 58b654814d9ee29ecb7a45ebd4ffca62f8b3611b7ecaa385734e70c31b44dce2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2cb9fe2d35d8c4fd6649fd0490468d9d42bcabedfae8a5d46fda311c37357ecd
MD5 c9e34f6d9ec13a6c1f46acdb275c5b63
BLAKE2b-256 1c85abd5aa55e1cfb1ee1e6a4e45a648d216c99a4c0dd2d70e56f3c26af800c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 606529a38c1fcd8c41d513b460fc66a7f21f97ecccd12b8a10972f444cd7cae0
MD5 4091f308468f6a5037267c485677925f
BLAKE2b-256 31c085e89733d259fd634477120e207c5a45a0a626ba87598c15f6e62506274e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 beca5c20fc349422a0d88b0f969eb0c05857a07eb3e26c682663c0152f72aa3b
MD5 96806c5a4a507cdf53592515ae18e2ba
BLAKE2b-256 031c5284adfaf91e11d5aa6043f19c896848f7b98c2038c6749c31b35d522d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1f495c9f84ba3a8e902dfdac9e592a0613e6b73870f75d588d29446092735e1c
MD5 5a2c8aaaea778a4db499e05256db709f
BLAKE2b-256 830078e59dd9653c3bd8700d888b88490645f7497561bf5852aada4f9619270f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.4-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.4-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.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 81844f1ddd26b8dcd80f29ee3ad1fbd438ba22af98a9c2a484a2dda3e9708d65
MD5 51cf9f8d9ffb5b9fa7d0269bf691e1c0
BLAKE2b-256 5dadbb7b1ed2b3736603d11ba13f822f6e7d085309aa1d87ffde7872f88bfeee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a86cafe32758617ae091d5973f647819ad82d172f79c5ec15946af99c9e2b947
MD5 341509df8a99221979753d3c97454686
BLAKE2b-256 7214ad678cd4332c8842bc7ff1e13713b17defdf48e18ae48ae44c7cd688230f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 036e461d31105c3543008428461b080201509c2082640bd33547c857b54a631c
MD5 37c5fed677667c42d9db8610e92ddf0a
BLAKE2b-256 6857f2d22226e3bba3c000c4c61a9ec752823636dcac380ebbe5b97259147fd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7edac64ed5439126dca11553b1430e578c65e92253f7bd24c071d34049b952ed
MD5 ccc4b21859a9340f31e7742d15eaaf38
BLAKE2b-256 bcce14baf20b203c6b5d99d426a28dd8dd2538c68f08af2cee1d8148891c9fc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba89089e4f1be4539d266f9b4f4a2df8abdb03307df1b05504b4ef7b1351e33f
MD5 07886700d3a9c685235a79c8f06b5b92
BLAKE2b-256 885947774af1fa08e664709d16f74933a33454ff53e5fbbfb901c1ac086ae5b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ae6e291ed6afe0f66146357317f953b871f66ebed8e05a231c857789400c242
MD5 891ef7778b5cc073405f02bf680df845
BLAKE2b-256 4447fed9afdc440d2684ba830f59ccc1b467edd4bd3abec3629fdc1f61fe9499

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 136f46d1fe97e49c5f4d35dd92cfdc8cb28f6945e0a33bb714ffb53c7a8a3c72
MD5 2c3e536404dad7e6dbf8039fe8e95d30
BLAKE2b-256 b85921970b65b02abafd77fe70b7f62fe0d3968173947d05d46af3ea38f7d6c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.4-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.4-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.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 aea345c0dfd59fda7b21dc4006de11b1b6ee41ccc6fb9b20a64515d6ebc06517
MD5 1886bfa59492a242cdaa1f8875808699
BLAKE2b-256 305a6c873dd4cac82e413dc25c6993e27eda687b16e5c3dc34e54c930ef9b041

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c93f531529d387a3efca8c7f1206edea070cb5ea122ee8a3a83deac216ac8143
MD5 06e3de0517d1769fb405264f8ab5ee3d
BLAKE2b-256 a01e6a7770ab8a416fe2267310df94867d2eadcd7966d842eca1a9d9703a8fe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aab4ce49bc5518ed3a14d504a36f87739e18ea7c72201b1ecb03b4a533cba40e
MD5 f907e465eb22326ee728b909f4b5d5e2
BLAKE2b-256 c57e7c3c1b86217920c187d70e02f3d8e5e047087f815c910eaf857e841a78f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ac309166e417b52e632cf55a6f6ca741649201a24c73f54c554167d9e559e9f
MD5 3a3fdd619800db09b8d24b7380ae70e1
BLAKE2b-256 62a8cdfb32c049c752f51736d2b7722d35708ece8ad84f11d9f3b1a8aab9d95e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7e229dc24b62899c31fc7154df257c729f1db33e2e3f3d85f3f2701fa6c0f9c
MD5 df680701ad67132e578e1c432c30ca18
BLAKE2b-256 22eb36d685b7ba081536ae4655ad66b133645bfa69dfde5da322938fb41f30bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c4cca7f3eef1cb9a7f43f2c7b9b2131837d1edc680b2ff6f4804ff05617f5e2
MD5 9ee206384bc43b0bb208609a8871d5a8
BLAKE2b-256 54528b45b5b67687511fff3d280c13fcaf774bccd4475f2470dad20ecd743ca0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be4169616d5b56bffa41327b3360ff2f6f017803a85cfcee89acaffd13a7eb29
MD5 a58b332a1e9bb20f5d5892c2ad4a320c
BLAKE2b-256 437902171c32d36f6816bdee2c7e18e5091c7af2fbe0ebd9ea4c705a97c26bea

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.4-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.4-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.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 98c0739ca6d2b7886f649246f9aff78f278cd2fadcd1ad3444ddf5600a3249b7
MD5 9a42d8df04543f738bea47da9c5b2c3c
BLAKE2b-256 fc8b4e3a4b8c4d3b85e3eb257c548bd2bea127915f288d48daae70f045487162

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4755018c200194ce4efbe3c647c5c93fcb5d06347f800515d08daf29caec199b
MD5 12550a86cec29ddccec791c365c992ff
BLAKE2b-256 64467d08bf44c626f08d8c1bc743dfe82ff82d5356a0c101ef44a5192e02b909

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c91dacb8069d0eef88753f5f02fef06f508fed0f044c0dfc942b36b7ccaf00cf
MD5 25a6ff8cb1cda933a9d9f1bba3f24b11
BLAKE2b-256 28133e27c97b05181152cf9b593cdd0c7b8ce52a582a7dd66368fc033ce12c46

See more details on using hashes here.

Provenance

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