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.3.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.3-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.3-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.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (3.2 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.15+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pygorpmrustinfo-0.1.3-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.3.tar.gz.

File metadata

  • Download URL: pygorpmrustinfo-0.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 2da99c1b4467cbc7d2887918f009e50d10cdaeaadba70036685baa637eed34c8
MD5 c5da911349519a58e7d485d34a1597d4
BLAKE2b-256 473914ddbc30f041300f543200e693abb154a978a0f1e8831784b40f01638e0c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cb40d510e51151a0b59b1032a3ddf07fbdb51f1576fb63a8b05af1a25ad8a7f5
MD5 691f0464b15ccb007494dee85da551c2
BLAKE2b-256 eac8365ce95099fd11a717c44ba725b2cff8129f9b6f2a893dba8678203c6246

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.3-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.3-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.3-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 dbea4a9b7142bf000939cb61c549dfa51228a6cddf8515e4796b6b8d4a458de1
MD5 66a06f910d743b99614bbe5aaa66c08d
BLAKE2b-256 76d4cc6f3300860117dc5d9f15341fc128ff5b69651cce2097db23af3ab0d151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1e3785acab1ff197f2a88dc4dbe27ffba5538d78ccf6d1236a6a8b37af04ee1
MD5 43aaf50b789cc6f00ac9b1ad6b84facd
BLAKE2b-256 17354b5da5a229b6fc04e09b969ff280affc00c0875b602b053987097a289463

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c0bac5dd0e5882748ada3150ec7c4d63596e7404b55386c7dca324c1bd54ba38
MD5 451ee412be8db3c62c2eb0c01cc6d204
BLAKE2b-256 79a51d3f2ddc16ecc64de4cd53b0bf1432188657a07a303afd3eac8874770e9a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8b3b84c5645b90afdbec29698ef6692c751ebb75489047c962c2fbda22a517e4
MD5 98c7315ff9c328fb6b8f8a526dd0b12a
BLAKE2b-256 4da89761e5ffb14a3c5f3d599f0a6a5992cf5518b36e74043644c9681a1ae7db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbad09dda259115f9941a025790b26afc7d512aa0bbedd3a350511b6617cb53f
MD5 0230cafd08391390d635ccc4362671bc
BLAKE2b-256 939f014d707958e34342b221e8ca40568a8f041d21fccf6e19eeb3f979f80044

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5655811b763e23ca6d450daa69e7c7cefa5a321e2df1762fb52d019a96cdda98
MD5 f1749f1712ba253147c7e8968643a397
BLAKE2b-256 8f139427e2dbb88a6b1aa0a224499763523e365a2a98eb37a1437bb79f2d55a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ec50a82331ca0ab1547ec743a45bda38b24447d18ddeded8d1bdf961e79c4a1f
MD5 097f64c06937691065b7ee71be631abd
BLAKE2b-256 c687191018284bbbb66bc7aac50ce4f6e496e81c4af0525357dab5dc11df23fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.3-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.3-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.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7a4d59ab21c3396c763aba87630ed42828b3e109e7c30851df065761660f136e
MD5 fa8acfea61415a11c7bda1a078ce86ed
BLAKE2b-256 917fdc673ba1ec727790280e90cceac9f46e26df8e677cedcc1bc56af32a6e89

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4eee4c34e636d9afb38f331e823d2c7805154827438a0e7a84a07202195cd752
MD5 840a765cc7bb033f21530f1f2cf132a6
BLAKE2b-256 449e781fafc1f4660d5c9a25ad5d6442255ea57e28cf8621c28e0eeb119adb5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 612cc3a028748cf8c5f2338987cb505f8cb880af9ff7dc5e1422f63c59eab785
MD5 4a7eb92d953e5968138ced816f0c4d6c
BLAKE2b-256 ebfbf03cf16ee4d2a406e568933916f6d06b5efcadb266950ecd265600c872f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c2146c6ec8a3d481f673cbf953f06d3045878932b1133e51fd3833f74381b2b
MD5 828fa2fa0f6cf385d750b9b32f76c033
BLAKE2b-256 552cf7f80ac0186bc2780d6c6ac3a113b8cca3aa933b1a54b59b7c0de36d1bd1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4547b880984a4c4e6630d2b0092a37c3b3e3f438e2160bf6e5bb9742a9772507
MD5 a236fe731d92c5e633968c5538525407
BLAKE2b-256 5b95c76fe6c5c6caf4f144f5d513c252a7338de7644eaa2250be0364b1813ca1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32d511ea8624bd4e13fd21e74d19eac876f3c3535f47a312086998982dbb9ff6
MD5 1c752c551ebf10ab64b772ab1013f2e1
BLAKE2b-256 efe49645c2d0d5702dace44d39a86cec6d7430d0ada667693b0c867f2cabc2bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be8e1a57e5047c46d627ea5a9dd9afd0df9ead42a518aaae0628e29655a38144
MD5 ee2526fd7c17b0d22279f975ed85d32e
BLAKE2b-256 55f1cb2e235dbea3c9e8792d01f0cdc959f8e2173fab28b0c0c14bc1d381f572

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.3-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.3-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.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 266d4bd622bad2495ac152e9fef70448d6494c0315e04a34a680ca26f8f62195
MD5 1b2c4e2f276f1318c12c4ad0cdfc726b
BLAKE2b-256 a869fda1f71293644f4ee6aa31380651c4a1424f18e0c7ab138af3275a6ddee4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6829ac86cad5b2cec6f3edfdb770d5c37d29344a5c5cc5273e19fde2bcb08902
MD5 32927167b8cf632b77476d13fe7207e6
BLAKE2b-256 f3f045979f5b9cd84ed4b37352a7f93132d8f96b5f0f0ecb3097f458583e00a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 90ef4a6042259b64746c0f0fc24804e8788957d7bba8acbde279c8270363c23b
MD5 48fa8f8eb4e1e9cb96abf888ab144f49
BLAKE2b-256 f1bc63a1a22dddea4c4a2b1ddb465d0af29610097903f25824dfa13473d51216

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 01e08dcb7f6971c76bf84d3843e534834779a36ac2bc461369bf138525916bc8
MD5 8e3944a3c0f6c825ab2fb57205fd8576
BLAKE2b-256 7b75fee637f5098ad339e1cd14e473ea22186c517e186b82a1cf1c198a48a7f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be127fa975b4e1491befc4e306599db9be4171b6517e3177e459cadb8365a506
MD5 703b5d5b1d0084c5c5ffecff1ca63dd2
BLAKE2b-256 15faf802c79e02a73e664c1fca19976461cd7064048df84e44ea29c5910973ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 217ad135cd18a31ab08594bed96d310c6c6c5c38090a5e6e037e271db65a9322
MD5 b57ddd09a8875802159424dd4035bde1
BLAKE2b-256 20b8211fac976d9b33be3cea8f6b47a51da68040d1bd7a33eac11b53f1f001b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 265354289beba1fde3ac21440ee09ada8c434d9754859efc4abbfa4cfecc7298
MD5 828a268d1fe6203656844b2449457cdc
BLAKE2b-256 fc7bc70cc1d85e82d25780b88f124f8181a7d87bad5623a9cd36afabc5f397fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.3-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.3-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.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 718b2d6f968c0989f88d788a4aa5cbd4cb121a71523ced8f3aed0a71173c30a7
MD5 374a4f2269b32cf25eebac911b195c81
BLAKE2b-256 e23a7e4898b65a89c176a4e8c006c907247c617dc09b1eb83b4be35bcca7aa36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c12095169c5791a9068116f53aca176bd2e1bb68df13006a3ace5754bebf7c5
MD5 fcfa8d27c3eaf8842eae7b8f888aeeb7
BLAKE2b-256 310dd4d8692507fe9630c2653c4a0bc802721445c172ee46ad6aa97d08767d50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 453d08d92ce48cfb68f3dc81a5777905861adf909f8244a153491fd1df4f687a
MD5 0db465af3bcd556252477bc5bc9c1ae4
BLAKE2b-256 9330a88dbcc388bf004d8a3b9bffa766164977506f86521b4d9d5115b74eea04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ad588c13f0f45659e92ea4378c5d3b9ea8a5dcd4478d70fc5bc29216238dbdc9
MD5 081d3dcb879017c725cad99a826bf3cc
BLAKE2b-256 982d3bdb1c8a4fb07ac3323e63ee816fc08718abfbae7154e9ea23713ab64806

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04ecb2c1b4ed7bbb47741b35ece5e7f4d957ece1945f5305b29aa4f92bf06d44
MD5 ad002d7570102da09a9bdca47910e55a
BLAKE2b-256 4d65c5a419641cf1002ef607ab482d156363955b55d4d85f47a505da698212e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b302221e3ddaac2265ba25340b8b78d4e157c3b3035dc48ec6cc9da52cc5058f
MD5 08f5f44a5a54b05073853be68b0ee1e5
BLAKE2b-256 629ad37a29da0ccff4f8a459e97c829a920a1fd352abf831feaf5d807603b572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d838c46d22d0b8d091b36f573d34d12de7dbd9541f0a3cccb03378d5380a9aaf
MD5 979fa5be84dada8cf8631d5918d10fb5
BLAKE2b-256 88225f45dbca00f69af35a341db53b336eb18ac992c0653aecc2c08cef8137c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.3-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.3-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.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c94efafabea95a6c435e88e9528ed7feac7d73c4e2e96c90ac410e5632b1927c
MD5 2deedb1980ff74edbf9f3bcab9006b31
BLAKE2b-256 7872a50fa4beb1a916740769600f1cbc8f2a2a3d49aa1ff307e43a7e542f8be4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30526b584b6483e4a4d55d17f6ab64fa8c4f4bb94ae0d1c1d7789f38bb9071dd
MD5 3b55a186bbda2bb3cc5d391be209c7e5
BLAKE2b-256 8eef4197a881b3f54a74688f9d1681d63a590f3bc3bb89447fe5fa56b4b813c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c58fde2f13d568de87eceb092e649a9581e9ef6e4569a3cbdf674f281f710534
MD5 296a4203fa7c69e1e4c2981518b307a7
BLAKE2b-256 34e33f6ac54bec21394d22d471fca7cc5e2484a888a9272f6390df7f9c3dce4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cbb9b044de54c58ea029a4001eb4754ededaf705727a72b9b520c7b1e9aa75a4
MD5 8ddc2f16969b06dd34bd421b0de1dbc9
BLAKE2b-256 0036528cd08062e3d65827d73a95096e8698f1b518f751bd73f8f54766b1df6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cada6837842172697671ab717ec96aaadabae2dbd5e785093ffcbb10ea156be
MD5 dee06591f6c52a80d9a31bfc53ec4fb2
BLAKE2b-256 5db064073aa72f0b09c7d1c4b2913b3ac99ba7b8c522011acd04ffb79ea8282d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7382bf703f9d0aa197fdf7f469caf125eff86513063c90d7fb0b2c8d0efd9830
MD5 7225b2aa28e4e32fd8482238f1ca1a23
BLAKE2b-256 4dad756b71f138d0b21cbae78224fb49290c7fa4e191bdde235782d9528bb828

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 33781c5aab4e93d65cec1ed63d19f89aeb7fdfbb460363ddb4c6c78740b4f318
MD5 b93e611b4272a830e502a0357d8b551e
BLAKE2b-256 ce5a9614d2718f65c86eb717ca8ad959f6d9d54d48670172c1971aef78bae0fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygorpmrustinfo-0.1.3-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.3-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.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0058881e62eaebda41fb6e87399b8349faa97ce6b09f8b8c53f280a05cff74f6
MD5 9285be31074812930d7f2191e4717890
BLAKE2b-256 2120e4993cf7e371238354989dbeedac57e619f17b58fb69e79b4f87a1220fb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dbb9e6687d8a05f04bf52116f5f1b3191f2efbf8033c8b3fe1af0ad206f9dba
MD5 45a6257a5cc3af45ff704311aeea08e6
BLAKE2b-256 31889d612218e16d32d06997f2e530b1de7979d31e2b3380df9b4fe9bfd4df11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for pygorpmrustinfo-0.1.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 33800c036d87c9248d8e928e58cde85b1a378f54258abe2bfb0f811937f7cfc8
MD5 8bfd4edb09006c2482237706a4596bc5
BLAKE2b-256 080e30a3b0a58ca8bc44203e992eebad2a7f6599a9bcd472f4aec07e80906181

See more details on using hashes here.

Provenance

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