Skip to main content

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.

Release files for pygorpmrustinfo 0.1.5

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pygorpmrustinfo 0.1.5
File Size Uploaded
pygorpmrustinfo-0.1.5.tar.gz 14.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for pygorpmrustinfo 0.1.5
File
pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64 Details
pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl PyPy 3.11 PyPy 3.11 7.3 macOS 10.15+ x86-64 Details
pygorpmrustinfo-0.1.5-cp315-cp315-win_amd64.whl CPython 3.15 CPython 3.15 Windows x86-64 Details
pygorpmrustinfo-0.1.5-cp315-cp315-musllinux_1_2_x86_64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ x86-64 Details
pygorpmrustinfo-0.1.5-cp315-cp315-musllinux_1_2_aarch64.whl CPython 3.15 CPython 3.15 Linux musl 1.2+ ARM64 Details
pygorpmrustinfo-0.1.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.15 CPython 3.15 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pygorpmrustinfo-0.1.5-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.15 CPython 3.15 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
pygorpmrustinfo-0.1.5-cp315-cp315-macosx_11_0_arm64.whl CPython 3.15 CPython 3.15 macOS 11.0+ ARM64 Details
pygorpmrustinfo-0.1.5-cp315-cp315-macosx_10_15_x86_64.whl CPython 3.15 CPython 3.15 macOS 10.15+ x86-64 Details
pygorpmrustinfo-0.1.5-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
pygorpmrustinfo-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
pygorpmrustinfo-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ ARM64 Details
pygorpmrustinfo-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pygorpmrustinfo-0.1.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.5+ x86-64 Details
pygorpmrustinfo-0.1.5-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
pygorpmrustinfo-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
pygorpmrustinfo-0.1.5-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pygorpmrustinfo-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
pygorpmrustinfo-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
pygorpmrustinfo-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pygorpmrustinfo-0.1.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
pygorpmrustinfo-0.1.5-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pygorpmrustinfo-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
pygorpmrustinfo-0.1.5-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pygorpmrustinfo-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
pygorpmrustinfo-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
pygorpmrustinfo-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pygorpmrustinfo-0.1.5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
pygorpmrustinfo-0.1.5-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pygorpmrustinfo-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
pygorpmrustinfo-0.1.5-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pygorpmrustinfo-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
pygorpmrustinfo-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
pygorpmrustinfo-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64, Linux glibc 2.28+ ARM64 Details
pygorpmrustinfo-0.1.5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
pygorpmrustinfo-0.1.5-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pygorpmrustinfo-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pygorpmrustinfo-0.1.5-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pygorpmrustinfo-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
pygorpmrustinfo-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
pygorpmrustinfo-0.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64, Linux glibc 2.17+ ARM64 Details
pygorpmrustinfo-0.1.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
pygorpmrustinfo-0.1.5-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pygorpmrustinfo-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details

Total release size: 165.9 MB

Release files / pygorpmrustinfo-0.1.5.tar.gz

Download URL pygorpmrustinfo-0.1.5.tar.gz
Size 14.9 kB
Tags Source
SHA-256 checksum
How to use checksums
65baef4e2f7f8ff63d2c4b603240af5d9e8b66105a0bb110f684b6d29a91ce50
BLAKE2b-256 checksum
How to use checksums
6f186bba4cb9f5bd17bab01ab66c708da26c5ba2da3d975c66e7910340e38bb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.5 MB
Tags Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
61254fb03c4bed3a2ac2e4218aeb1ead96e9867af3e324c7df464d61c6cc3604
BLAKE2b-256 checksum
How to use checksums
de7df289a67d9b9152bb8138a7ca310fc45f8569f3f5fc94a7a2deff017efb19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 3.7 MB
Tags Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64 PyPy 3.11 PyPy 3.11 7.3
SHA-256 checksum
How to use checksums
22988a977e711d203d8e47d61a79805281e92e6964b71bad77f0c31783b86e2b
BLAKE2b-256 checksum
How to use checksums
b9e8fa340ed03ea7f5c637e54bed6db7437a85f3a06f8fed6b68b0bb44de9429
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl

Download URL pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Size 3.5 MB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
cfafd451fb8885f7f96a70d841eb5ac2be6d57d956d5affa6c3da1d0defcaf2f
BLAKE2b-256 checksum
How to use checksums
a2ccdaf38387d0ee130ea7adc647d9bf6e3a87507c157a4d11d1bef7d1fa9f51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Size 3.6 MB
Tags PyPy 3.11 PyPy 3.11 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
8c7bb81764cfb39782edee96884f45fa0ef0d5fe76d5bd4dc0da4f29577b9f78
BLAKE2b-256 checksum
How to use checksums
923a218545a584ac069da5452a74d309555ed3d4af0a3ebf0185b4598bebded2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp315-cp315-win_amd64.whl

Download URL pygorpmrustinfo-0.1.5-cp315-cp315-win_amd64.whl
Size 3.7 MB
Tags CPython 3.15 Windows x86-64
SHA-256 checksum
How to use checksums
175b84d5178fc2843b5c80ce4ad2f948c098f00c640477e1d5048c8250ce5ca4
BLAKE2b-256 checksum
How to use checksums
afb6ce3a08c58e4c29a700a2f8d678356368c2b66874285493c2394bfbb9809a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp315-cp315-musllinux_1_2_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp315-cp315-musllinux_1_2_x86_64.whl
Size 3.7 MB
Tags CPython 3.15 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
6efb37640f69f956a9be528e63f7f222a95aa5866788b0bd4b88766f03ed2016
BLAKE2b-256 checksum
How to use checksums
a8230813200cdc2925d2ef9049602d9609248247936462d6b9acfd105f1c0e27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp315-cp315-musllinux_1_2_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp315-cp315-musllinux_1_2_aarch64.whl
Size 3.5 MB
Tags CPython 3.15 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
e3306d75b2fc05878355b95b04de518019eb6652bb27d5750b911f9cdde00234
BLAKE2b-256 checksum
How to use checksums
2e2ffb86de8f2b242556ad1279e7d9798b058425a67b0760962a93b29921a34a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.5 MB
Tags CPython 3.15 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
0de98107bbbef6d2dd3a67b8d4f476657fe7eefaa4ae5874c0b8d112e5424b21
BLAKE2b-256 checksum
How to use checksums
4431aa56deea20676fbd2f74290ed6821a8f6c86cbb82044d91b3055f61c1308
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 3.7 MB
Tags CPython 3.15 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
d8c35f38adf6c9bc3e0406dd82de8e319490d76eb5f381dab786f15231a39762
BLAKE2b-256 checksum
How to use checksums
776b2055b1e8c904e9c507ca32c48fbac0752429e449ff2ab492786708f3f65e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp315-cp315-macosx_11_0_arm64.whl

Download URL pygorpmrustinfo-0.1.5-cp315-cp315-macosx_11_0_arm64.whl
Size 3.5 MB
Tags CPython 3.15 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c808b10b230ae056d75bfa8176b1845dc333870c8b5efb3b7c3962403b79ae20
BLAKE2b-256 checksum
How to use checksums
fa2cf8da574cbd4e2cc97e3936c9676571a8f539d344590d6fa8ddc22f19aef1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp315-cp315-macosx_10_15_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp315-cp315-macosx_10_15_x86_64.whl
Size 3.6 MB
Tags CPython 3.15 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
105776c0782600840faa58c09ea6046af38138b90d9d0e08a1b3276f3e0c17be
BLAKE2b-256 checksum
How to use checksums
1c8409e00ef7570541ee922c01f931b8aea9413bc76162b5cbc5d9cbb9dc838d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp314-cp314-win_amd64.whl

Download URL pygorpmrustinfo-0.1.5-cp314-cp314-win_amd64.whl
Size 3.7 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
fba6aaed7c111771d684e27bdeabf9af2a35b6c178f550e779100a289d1f11d7
BLAKE2b-256 checksum
How to use checksums
093b27c69d6394d3ac44168606a6a230f1820a846b49ed6e98e1da9fecca83c2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Size 3.7 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9d9574ceebf7959071852c0f42f8ad26c114db0a4650dd4fb555b35d1391350b
BLAKE2b-256 checksum
How to use checksums
85739eb786ce021f37cfbc351815f47a025182aab813f1068f6bb2758aec4b81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl
Size 3.5 MB
Tags CPython 3.14 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
289f7adc64bf47c132dd21fd7ddc659258e65ae336c14c55ae2c92e5e60e8fce
BLAKE2b-256 checksum
How to use checksums
264b58a0d462883336ace9f7ffbcbb9250bba4306547f619e7cd7ef7b606e4ed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.5 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
43409209e49eb59d0daa17efa2d0c46cc17b95ad4ffee9bcd6a379e89f98f0f3
BLAKE2b-256 checksum
How to use checksums
11d2f92a7850cd5a389d7a7dd1247cd660709bf2fb99e3aea6da8a123430d9fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 3.7 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ebac3254fa069c58890a58f6bd41671cc6ccd26f8ed4a22a85236dda7b38b722
BLAKE2b-256 checksum
How to use checksums
58012037eaf03448beb95e649a853b202f74979da307f16d122b7d4903efbd14
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp314-cp314-macosx_11_0_arm64.whl

Download URL pygorpmrustinfo-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Size 3.5 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
501963e791a80cbf7560c501703f69067b1fed7f8d4d039ca8b63d8eafa11855
BLAKE2b-256 checksum
How to use checksums
a8a3a8090296f5720eecc7c5e0664a0a68332e0d9172a4f3aa43eda282f24a27
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl
Size 3.6 MB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
f283fb9a566a2bfdafb1dfc8df2bd71d99a1c388e4a404d1cc0b13f1769d915d
BLAKE2b-256 checksum
How to use checksums
24999c4b427bc30b51ff5205528ca6774573b03ddf1fc0b57065538b69fc67c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp313-cp313-win_amd64.whl

Download URL pygorpmrustinfo-0.1.5-cp313-cp313-win_amd64.whl
Size 3.7 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
7f917efe30f140564417a545b26a608b068923e4fc56a7405114cb592d1013e8
BLAKE2b-256 checksum
How to use checksums
950a78cabaf88afa67db494b3a0a239b8cd5d6d9954c923a7aa7c534964014df
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Size 3.7 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
ac45a0b8a050a524648065e9e5e23be6f01187d2dc6bf7137bc8bbd691f65f4f
BLAKE2b-256 checksum
How to use checksums
15d652e2f749936416660297264206185d7536949bd8e36c029fb982ad96c600
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Size 3.5 MB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
22319e63cdcbfbb6f397200fd426397b9bce00ee1c3a3f477f4a6ef0e142f8e0
BLAKE2b-256 checksum
How to use checksums
7915d79bd0f215969994b1048265d57a2135571406d373d84e71628cc0cbd239
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.5 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
18b02e52e8281ae3590105b0cf39b490b0bca629a181ecb3a58854977ed56966
BLAKE2b-256 checksum
How to use checksums
05cbbf20cb9ce012c978fef09f6189c5f1615132946a96c0590800bcae146fab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 3.7 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
edcc420726589d2a29cd3a0c5ab8dc159601a69fbdb8775f40c6e44e11b8a6b9
BLAKE2b-256 checksum
How to use checksums
f9cb480046d9e2725b409fb427e6f4cfc9eecb0d58bbc8592c5d4417bfd2c75a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp313-cp313-macosx_11_0_arm64.whl

Download URL pygorpmrustinfo-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Size 3.5 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
5f01b60aad126e9dcc8a83d488329616f6f5c283de481a2e388be25ae82e37de
BLAKE2b-256 checksum
How to use checksums
366178f9b07595bfd7649a6c703fefcaef82b9a1819df6ba87aef56406ede383
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl
Size 3.6 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
875f7089a54a289c0c90325d1fe372f80c4cf192a1819b425fecc55a61b31c6d
BLAKE2b-256 checksum
How to use checksums
16b7b3b5358cba2534364a6c5c67a7770f489a8f6af3c3025bb43bc5cb4081ab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp312-cp312-win_amd64.whl

Download URL pygorpmrustinfo-0.1.5-cp312-cp312-win_amd64.whl
Size 3.7 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e4c1743925bd5e1f2eb163d4605166ae80008d813550087eb0cd629cce833abf
BLAKE2b-256 checksum
How to use checksums
aec3884af0932e16e36391a1631bb0eaa0605a9a7e7deb431fab7114a2894f71
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Size 3.7 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9edc14d24454fd937a8d0abacb886c0c2bc84f3749e62c5cac1d67ebf53c1682
BLAKE2b-256 checksum
How to use checksums
a26302df29003924c58fc55ca02002e7b6342d2f4e2347fec1e66af311856b1c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Size 3.5 MB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
3a21419332924bb6efab3f50febf669b012de3239fae0252b552c53fe5f642e0
BLAKE2b-256 checksum
How to use checksums
aaa11d10a97e18f476b5936ebe2c4141747509dc84c5c38e208a2ab1480f0ef7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.5 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
8511b54013ce8f5c43b67bc3f61769c26786ffaf409c9c46313c7ce4a7eab1a0
BLAKE2b-256 checksum
How to use checksums
299684feee77362740ffaeb28f4a737d1b5c435dd58a6dc38f24ef465a67d9c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 3.7 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
75289ee94df4b989e3e0af40af34c79ab0911efb39393b63bc8ac13822a94c00
BLAKE2b-256 checksum
How to use checksums
9bfa05073bc9b18f2db54789927f19491788df6e8963e7da454d11d6d2ab015f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp312-cp312-macosx_11_0_arm64.whl

Download URL pygorpmrustinfo-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Size 3.5 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
eaac13d91b112e53509a0452d2a8f4a24fe4b37a5f082e8ed1218da7ba104566
BLAKE2b-256 checksum
How to use checksums
b57c9eedc03d32b3b6e491a3eb52479abe454215c30feccc294f7f5aba767e0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl
Size 3.6 MB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
5e97b2c7df587d99a0198977ddd3319c897be1a2cf32ab9529e1937b2a2e58e5
BLAKE2b-256 checksum
How to use checksums
56089b6900910c005d10c815400b8b38552ab80382662eaaf0751499f8ab8e44
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp311-cp311-win_amd64.whl

Download URL pygorpmrustinfo-0.1.5-cp311-cp311-win_amd64.whl
Size 3.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
de1a34d189b12b96be282f078684b46c81a025bbee33a7bd4a39b7ca87214196
BLAKE2b-256 checksum
How to use checksums
5103c514987f20c816726cb6ba4c9cedf7acc2588bb4d1b6df95387ab60c1646
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Size 3.7 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
bcf5f9a8c0343efdea0a35c75a2ea5b478d32c8f86ea27fe41f98bb5dcf966bd
BLAKE2b-256 checksum
How to use checksums
1c31e5ccdbba53da310364efd77d6e0138dcadf509211498b9cc038ed93b415f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Size 3.5 MB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
1176825c088f286acf4cb93ec85ed0c1ef84e0ed184b2a303a35fd5566d95f17
BLAKE2b-256 checksum
How to use checksums
08051f42f1804084359a132594d4c8080b24e2cbf82febeb6e0eae02ba7c0608
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.5 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
1e730b7b76351be821b5ff9732f0a1652b5b7176d0736c91fe59471d1a8f49a5
BLAKE2b-256 checksum
How to use checksums
54dfa8c89a662eefadab50432a3a9d79a8f79df5de7875d555d400ab9c72bb1a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 3.7 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
9bab551421165a38b45f23812b075917fdbc29e53bd52445742f8f5223095209
BLAKE2b-256 checksum
How to use checksums
7747fcc83fffe9d83d2134e0f1b65a23eee4273f5ce0e99cbe7265100531172d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp311-cp311-macosx_11_0_arm64.whl

Download URL pygorpmrustinfo-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Size 3.5 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f83ff0d042b42947c2428860135d5a41cbc724a4070b56e7cbe54c579b7da0c2
BLAKE2b-256 checksum
How to use checksums
1b80038b86d4cc609778c6a76f3ecf8525a02f7362a4ccff85d47f0f0bbeb0e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Size 3.6 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
8a9df65821a3568ca830af7d6304a267dd0c32642a96d18a51df51800a068f5d
BLAKE2b-256 checksum
How to use checksums
6db447bf03b6481b5642a5cb51ac3795506fac232f300fe4e99bc5dbba2f767c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp310-cp310-win_amd64.whl

Download URL pygorpmrustinfo-0.1.5-cp310-cp310-win_amd64.whl
Size 3.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
7a3fba6794aab0f28cf71afb271322f187f4ed9a9b96ef5076a1100e566c1e43
BLAKE2b-256 checksum
How to use checksums
1f2ce4cc0bd535a3c932655ca4ab2db70d94295a389e8447dfc120e245d50c40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Size 3.7 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
cf81e7018ea3a2dec2b63f0e95231244f7671376d3480759c7af169766acc363
BLAKE2b-256 checksum
How to use checksums
506ee65d293776c5e9c0dfec6da53e3f08b3165054b2f096a83660c03ad55551
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Size 3.5 MB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
ef07121f8db071fac5765b0923af0d7cfedb1c41f062357505d888537261627e
BLAKE2b-256 checksum
How to use checksums
988814352f88d16df6bfb1fac73f7e89243fc5227083e1834b6ad871f1993c7f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

Download URL pygorpmrustinfo-0.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Size 3.5 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
38e2894ae710d49c4abab8e9170cdf22c20acbd1ea4baa2201910f07caaa514b
BLAKE2b-256 checksum
How to use checksums
4cf73e6d051f30b0345eda855c7ca469e77c2d55ad4fd767f3b1cadaac4751f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 3.7 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
9078c0ae587ebb8a54199fbf94e3d3b03668e9c6f1bac050990c991d76400d9a
BLAKE2b-256 checksum
How to use checksums
4dfd2edea65affa6565bcf356f41ec93f454a1f75eccf857d89c1ce7de45a31e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp310-cp310-macosx_11_0_arm64.whl

Download URL pygorpmrustinfo-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Size 3.5 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
24a81eb5ac841b6d50666a5a41baf1b2a656fdcc52cc6844d3972a3e49cebc67
BLAKE2b-256 checksum
How to use checksums
f0b5bb549e9212fb21dc01bda6772ffd9f9a1f55afb2bb4a612f136abf8110ac
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release files / pygorpmrustinfo-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pygorpmrustinfo-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Size 3.6 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
d0ac6aa10272d1ccd48a65a62f0c3cf2445f07c924bc32c468b6162b9d1fb827
BLAKE2b-256 checksum
How to use checksums
9e833f40896a45010bd2c5755906ab477adf55b3e411473679c8465cf735d8f8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 18, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

0.1.5 This release

47 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page