Skip to main content

A utility to extract rpm package information from rpm database

Project description

A python package that extracts rpm package information from rpm database.

Why this and not "rpm" I needed a package that could run on environment without rpm shared libraries installable. This leverage go's portability to enable this.

Example usage

from pyrpmdb import get_rpm_db_info
import json


def test_get_info(file):
    res = get_rpm_db_info(file)
    print(json.dumps(res, indent=4))


test_get_info("foo/bar")
test_get_info("/usr/bin/du")
test_get_info("test-data/centos5-plain-Packages")

The result returned is always a dict object for errors the dictionary returned contains a key; "error" like;

{
    "error": "path error:foo/bar"
}

or

{
    "error": "/usr/bin/du: could not read Go build info from /usr/bin/du: unrecognized file format"
}

on success a python list of rpm package info struct is returned of this go structure serialized

{
    Name            string
    Version         string
    Release         string
    Arch            string
    SourceRpm       string
    Size            int
    License         string
    Vendor          string
    Modularitylabel string
    Summary         string
    PGP             string
    SigMD5          string
    InstallTime     int
    BaseNames       []string
    DirIndexes      []int32
    DirNames        []string
    FileSizes       []int32
    FileDigests     []string
    FileModes       []uint16
    FileFlags       []int32
    UserNames       []string
    GroupNames      []string
    
    Provides []string
    Requires []string
}
[
    {
        "Name": "package_name",
        "Version": "version",
        "Release": "blah"
    }
]

This spackage relies on a shared go library that leverages https://pkg.go.dev/github.com/knqyf263/go-rpmdb/pkg

So relies on this for database support.

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

pyrpmdb-0.1.27.tar.gz (7.9 kB view details)

Uploaded Source

Built Distributions

pyrpmdb-0.1.27-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrpmdb-0.1.27-pp310-pypy310_pp73-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyrpmdb-0.1.27-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (2.9 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

pyrpmdb-0.1.27-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrpmdb-0.1.27-pp39-pypy39_pp73-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyrpmdb-0.1.27-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (2.9 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

pyrpmdb-0.1.27-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrpmdb-0.1.27-pp38-pypy38_pp73-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pyrpmdb-0.1.27-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

pyrpmdb-0.1.27-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13 Windows x86-64

pyrpmdb-0.1.27-cp313-cp313-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

pyrpmdb-0.1.27-cp313-cp313-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

pyrpmdb-0.1.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

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

pyrpmdb-0.1.27-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pyrpmdb-0.1.27-cp313-cp313-macosx_10_13_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pyrpmdb-0.1.27-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12 Windows x86-64

pyrpmdb-0.1.27-cp312-cp312-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

pyrpmdb-0.1.27-cp312-cp312-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

pyrpmdb-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

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

pyrpmdb-0.1.27-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pyrpmdb-0.1.27-cp312-cp312-macosx_10_13_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

pyrpmdb-0.1.27-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11 Windows x86-64

pyrpmdb-0.1.27-cp311-cp311-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

pyrpmdb-0.1.27-cp311-cp311-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

pyrpmdb-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

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

pyrpmdb-0.1.27-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pyrpmdb-0.1.27-cp311-cp311-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pyrpmdb-0.1.27-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

pyrpmdb-0.1.27-cp310-cp310-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

pyrpmdb-0.1.27-cp310-cp310-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

pyrpmdb-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

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

pyrpmdb-0.1.27-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pyrpmdb-0.1.27-cp310-cp310-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pyrpmdb-0.1.27-cp39-cp39-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

pyrpmdb-0.1.27-cp39-cp39-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

pyrpmdb-0.1.27-cp39-cp39-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

pyrpmdb-0.1.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrpmdb-0.1.27-cp39-cp39-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pyrpmdb-0.1.27-cp39-cp39-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pyrpmdb-0.1.27-cp38-cp38-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

pyrpmdb-0.1.27-cp38-cp38-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

pyrpmdb-0.1.27-cp38-cp38-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

pyrpmdb-0.1.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrpmdb-0.1.27-cp38-cp38-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pyrpmdb-0.1.27-cp38-cp38-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pyrpmdb-0.1.27-cp37-cp37m-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

pyrpmdb-0.1.27-cp37-cp37m-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ ARM64

pyrpmdb-0.1.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrpmdb-0.1.27-cp37-cp37m-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pyrpmdb-0.1.27-cp36-cp36m-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ x86-64

pyrpmdb-0.1.27-cp36-cp36m-musllinux_1_2_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.2+ ARM64

pyrpmdb-0.1.27-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.8 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pyrpmdb-0.1.27-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

pyrpmdb-0.1.27-cp36-cp36m-macosx_10_9_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file pyrpmdb-0.1.27.tar.gz.

File metadata

  • Download URL: pyrpmdb-0.1.27.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyrpmdb-0.1.27.tar.gz
Algorithm Hash digest
SHA256 42f281eff2bc192b2e11edfac35591daf05e2af3cdc9a95cd78b4797dc87fca5
MD5 781febd899e7cf691285e9757c671c42
BLAKE2b-256 4ae2c394183a86b63d8316ab9371d4633ab7c88c5692f9657ebbb895cc2afc5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27.tar.gz:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 159f9f501115a685e6fc5d82d3f2330ad54ed45a3197ba21567dc93d11677833
MD5 b1c2ac1355a46615bf3e151bac717d65
BLAKE2b-256 1c5b1fef8506ae3412d10be974d0db1c533732afe7d0ba9ee84c364512cedfa8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f05e3109b6bf177de5d4bfeaf923987d72af6ee1ea5074567273d7c3f0257a34
MD5 662dd0ba7028cf9d4a5d25d29c2f4397
BLAKE2b-256 f41c63d24089351d933fd860fbfc3df464d0f38a368b9e5e2bac1c861eaf0e60

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43330ccbb034e42ea31bc5d3a39947e21a01cfabe042e9101e4767ca488ab93f
MD5 60c9de525d0fe1a2fe994ddd468eae15
BLAKE2b-256 3e4978b2b9bf6afbc5ed1caf3596c764e8a980fac8285679741db34d394ddc51

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 928d215cd642dd07a1b2eeb8e750d19f70ee3066bebfd3836d652bdfbb6a15e4
MD5 bdfe61fb6f3ce79e9e7a6ca14168672f
BLAKE2b-256 6f89dbcedb95e8ccfdc1ea62d9bfb32e49ee7b7d69306170e31e4ffe6186874a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3b387466eadf268934a1b2f09808e4c427d3f23b67ce6e182293cb370bda403
MD5 66aa4b03d8ace490f1f5156647863019
BLAKE2b-256 df3c34410c8adb106c56dee38f862b321add2eedd2a5a686a9b01634613e5894

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e2cff57b32ffbd105b091bb998acf6738daddc3d921c99883201034a8b305ac
MD5 fce1456d8e4ae8775c73e1b57cdb894a
BLAKE2b-256 6bde83bc97915e7f7234b4992a6a89de6713978c86c215eeca13b1cf5faa6d57

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49948bcc6da1e579f2816ccc622d394dbffcfe432681601ba121cbbae9fbf27c
MD5 94afa2a8bc086c7e5c472c13bb1a263f
BLAKE2b-256 381b00bdf0f0f5a0c6e8c86d500c08047b0e9aa01cb917ce2b8eb4e33b6c21ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 27c3deefcea69b837861bdd1789fb898d6cc2eb65531f2749d3354aecb92b8c5
MD5 a07d0bf90dbb5e2fea1aaaac43810700
BLAKE2b-256 48538c829d582067ee9719153d6595fa0556cf12c80088d1520ba5e419378726

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5de13acbaabe5b30e9e75b1ce1fe7cc5bcfbf7af4d34865e4cadbfcf8fe1fa25
MD5 06247b65fc2083b8d89e5a4c42bf140e
BLAKE2b-256 6cf0125fe91944aee882b525217d81882bbfc598edb2adbeee41a4a35c3f6194

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d58ab1d229e5befa2e2399cf3a459812a7caaf5d39bce6b8fd3e5e0133c026f1
MD5 66a742ae62eb1472c9b80e348d466656
BLAKE2b-256 0efa7f84c8b4b37b3f27f2cd0495773c22a77af4d71979f9a7522e7bc4ebc157

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b6c10e21422fa6c634b1fa64fafe1e5c3e0634b4e48c40ca9af7175e97d5bd0
MD5 5f235ee6d5abf1421ddf051520372172
BLAKE2b-256 393e751b18f43f915fe89fd8acabe4b09f2711e48a85f3aa2a31c706df6efa18

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f556c21d4c02d373df40f82782f5f43e9f7aadc0d823d61d9dfd11b6ed3439ea
MD5 f17896c205cedbec43a2e20a50d7a759
BLAKE2b-256 a112e5c176e701e0a71671af55ff6d7d72c3225667cfd90923ce6b7addf91396

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-pp38-pypy38_pp73-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 20fd1a2cc0d35132c64267158f3610c7727d9c7f18447490664ab01670c2e730
MD5 a9a903973dea87bd0b7e6aff2eb5c28e
BLAKE2b-256 7d4c04b8ed4aaed4bbefb83d0e4272f3bd1457031965ddabb8378766de7c6c34

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6619bed5743f2b312022cb281899bf551ee8b0c5a61d8aa8e9ae8ffb9800475c
MD5 568b7626dc67b1a631c592965aef6730
BLAKE2b-256 961aeb8c4837202971c79bb55fd9b0fb65c69138d0776bd6bf66e3cacf59f826

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68668d79a935e7ab0ccaa373d46f289658dd0c836de0d5824f20dd48ce3d105b
MD5 2221c08a43a573086ea4bce77402c72f
BLAKE2b-256 92291da39f45bdd0dc4e6fa3ebdb59e19e986914cbb0e172d32864f7ca6f0545

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abb296e0666cce77e89e85f4bf408a779f55dfcfd78296f1f34c44316a3dcb3f
MD5 0233edd142953fe3ab10fc44cb214123
BLAKE2b-256 cd9bcd1e4d4288c557ea47022639d4ccaa7d83da76546b013a4b54e89d754234

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3f342ef01920b3a4b95cb52ac157c1ecf5ecc9fa23d95e21be8468c84a3a762
MD5 911cf0c527d76513bcbb342023a2af49
BLAKE2b-256 2be8eebf6e94fa5e84cb23f57e2b34dbdc2c7efa7180d02f1b8ea3ed522f2b1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36eb6b09983c4a7bb08056df42f7b1c7f94fb18ff253b1487101e9580d42946d
MD5 965aca0254527dca76b84b0942e6e3c7
BLAKE2b-256 cc7fd7c5d0491a0d655a42302bb458d8dd97a10b28cb0e3ce13fdc4b7c7eba6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 85b1e0ec6c9bc388c6a1ad07d6d33138b4643bc2195c0306115c474a90c2d88a
MD5 1c6df11ed24d270dd3e29becee2df0d1
BLAKE2b-256 e5c9b8530d69744d44bf866cf0d2eb603f64052eb56d9432cdd04631fe17d800

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 41ae1075ce1c0cc00bc6690a5300229047fac449b25402010daf5547dfdbaa20
MD5 e9765ce288500a86adbd27a8b6ba84f9
BLAKE2b-256 ff2aad2a2f875b1d0f226ee3d348d7dce790fc0c734bee239e022fa49016e326

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c63de2f295085e3716bd59129696cbae39927bbf26b029e3415ecbe3a686c72
MD5 b4e86aba3e359a0b2ba11863b4a1ac44
BLAKE2b-256 957b7357f7d161cd71fee574a54d4d8b060754bbb4932d9c4e5fe64edcc84e1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8cb6b15497a8ae90513ef7f698c510efa0e2c1d20dd55bff4bd96719b3492b7
MD5 614fd28dc91c95375ee649f93fa724c2
BLAKE2b-256 268a016c9e87671051aced6e0a8554de1076051f31af39d0857dcca3be996ba3

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24885bf1d43a33027eef28008405c2aeeb2bd1c1e76e95afd7ed19c891fa7091
MD5 55d4a4208ff9e040e7bac5ca5a0978ac
BLAKE2b-256 49cfce601af9b708a0694db2cd05e3b6f028c99c984c3a3571603a27572c30e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 815c205368e74db0ebb710bc43eeef57513f321f23fd852badcd31b990ba6606
MD5 93267952146acf5c1b2508d3ebee547d
BLAKE2b-256 ea7f3093e40ef0d02ae9ab6cd32bc63a0bee11b8285d95303d8166e470dee726

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5895ae8278297fbe2ea260ab77503f1ad72f90e93a39c8a3e8f2ee3c8ac8f67b
MD5 cfcd23bbb5c288a9cfb3e1dfe78befd1
BLAKE2b-256 08aebeca239bebee1c9145b4e79d9904428382e63683bc7e4b691dd33ed08453

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0f8f360aeb6b9bdda6bf3b7f85633cee7d45535b736bfb637393628c398ea974
MD5 6c97736b75288f80401d7a9483139187
BLAKE2b-256 d1d5fab7a30d33b7edf7b26168e1c6ab6ed94b6dce6429ba9c4e924896b7c0e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fd406d10e2a0b564ced213244b462bdd90ba5ec99311e3ab5ea1ea606de2769d
MD5 678e6eeb65b048cfa38bdc54a878e97f
BLAKE2b-256 e555569253ccbc72b1a029b692e4154cdcb6172f4393d85114511b09b5758ce2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d3b41398f21ab210aa5b836b137709506d00f30a44c90979a995bf622c56bc6
MD5 14dbb3b126d5ecb4f9f1f226db4ac21f
BLAKE2b-256 9353ff777f275ca7e02eaa129b3dfbb34a87c0ec97d189439f9dec5355339cab

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3dbb02cb0db03898762046602f755e999017ff8489045849020961e58b9a07a3
MD5 45cbcbb16412b622e23ecd1d29fbb22e
BLAKE2b-256 996fca23fce8ee5db644358e2e79ab65bf939d76d217c85b4d7ab375e14b4fc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11ac9a253b842b62b254b2e01da67af18197b84282cb9608445d1b01b311a9df
MD5 4e3f94c72fb978507ec408e8cd9d776b
BLAKE2b-256 f97efb68682a3109b82961613f6794211519f9df0b1ab253f5ad836a5a81cacb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1457192c659c32ea0eb01a96b5920f68b2f94fb9b218785c00229883d16dc1fc
MD5 b49d7513800f7b31216a2e9652511631
BLAKE2b-256 41db4dc8179c09102a4967338adc076a0ba7f8c1ea06f9f419d799a5321f485a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78c865ccd2a46e166dd0c7147ecef291f6dcb901c0e95c7e13fdac5875bf37c9
MD5 74ce8d38734dd1fcf26795d350844771
BLAKE2b-256 521eedcf7913f2f0dd74043ece552f4093f3449cf5c95c04fd349a2cab568dc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a3a0e9e168f390c82241b96093aa7b1dea5a769c08f631a352c8d7ced42356f6
MD5 171b68e553e8a4c743177a4957c8d78d
BLAKE2b-256 1f67b55bfe5b69077688eecb32360ad070842cad1a81c48de4cd89227f0d7b3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0158e4fcedf1df76ad8613cdcbf062aad3969253bfe6a0a3f2110f14651c4a50
MD5 f3a285362bcde4a3de7ea4ade36f32f1
BLAKE2b-256 7fa37774b3758fce01729dc6078a159e89626647acf5f3cd55886c2376ae1f74

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54d2e2b31a6dc16e6d3bef8923d85c34ef979da02650dc87831f5a468ae3ae46
MD5 bbbeafaf7ee8a96e5d16cb11e3164fec
BLAKE2b-256 2bd526b08eabeacd3eaed56e4385a796a1c8a92890cbc3e6a4fdb3252c448de2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89b250502c0b3987b5a3b8dec45d19be8a2d5117c6796754c6f12de5bb70c7df
MD5 796ae11fed3ccc54a9a91cf61eee0b22
BLAKE2b-256 78d3b0272438a5cf7b1c83017a1359ed10cdad322ed64afeb2b69f06e59a842a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3f80a9507a3299b8ac1d2a5037bcce34d3175c679d025f8f5b89d9c24b97740
MD5 3e16ca77f739b69daa48abe1c24fbe05
BLAKE2b-256 08c8498682d970fa6f5513cb5df9769376dcdb4c0daeb785aade116f23842f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6846af8fcd9e9e7fd388d987460a771f1401d1691d03643e745f07bb0763b995
MD5 2a8d0ffef68f18fdba506beda1985a0b
BLAKE2b-256 1bdcf56ec7869a5af44f7aa3e85f02b55ff8c0e7c5c94961e9752cd494886df8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bbb01e167c5d70d56002d950457f54ae7fa4e422a2c6c7e7fcbdd3bf375afba0
MD5 10c919e1394adf19a3f7ef49e980b528
BLAKE2b-256 83d1e680b4df07290ed81c041821bc3a9b5e3a055558071b66bbb0ea1efa7b92

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9958605c28f90b4cd910e5308f967eb295382774d29a52777f45da38e85a9eb3
MD5 89887b03889980e3fbaa7a2d9b7d9036
BLAKE2b-256 d5eff418559f9652340170116a327e40d537a87305b18404c511d97d938635cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pyrpmdb-0.1.27-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyrpmdb-0.1.27-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 37e5fe4ed1ce3a8c069e5e3abc0c1bbd6055626617e7d8866ffe7329dd28eb07
MD5 4c09ad1b33481a52819f61ed8f9870f7
BLAKE2b-256 c61da89ccce187d248e56434503a9262bdc90648d032200ac3b3597ecbae09c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06b3b9755535c4875ab50865f07e94583505c1e19c857ce927e7f51dd886f868
MD5 90f7043457c256008462c5a7c0f32e96
BLAKE2b-256 10c039c15932f0e8d11535ab4500bb17926113471d3f61a396f7f81a33420b1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 406545b05d26ddf6c48dde867ef72406072610a9544a4a65bdebdff393dee577
MD5 87819326fe1cee3afbf876468bbdf52a
BLAKE2b-256 b5f3ab7fd0c1e5fd25ac3e1ec1848ab164c4c9924edcb09268165bcbc741bc90

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 497f6496b51914f79fee1731a8430c0befccd32e1fffab80a248a451baa0213c
MD5 7d4c8920608fa59b4f85574b94f70bb4
BLAKE2b-256 52a686d41332c75f31eb68f7f947ee56446dd090897621212b085168a9ccca5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e130e35d06f6f50f1b9c74868edd77e3f82eca3f96b8922ba099df6ca4b70b46
MD5 75ff223ffa2468cf08d2404f892f311d
BLAKE2b-256 b9563d94ac345d2705103415eec5a468cefc932eaec16205762e3434df01b656

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3282f3088396a4c0b6fe31399f5d4d3b08c37ebf2d9e3b920f82055a18875840
MD5 7fe13786966000aa16035268bf70acc7
BLAKE2b-256 24d32b2e4c81aa6f736a9b3558388aa26c8d9ee193fae7fde22432a889aa69cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1b44a6541453326c1c2a316860f3c68009e693b865e9dbdce11f46366158298b
MD5 04dead1f9a6c887304edb4aeb41d5e5c
BLAKE2b-256 09251a2db8acbdec33ac9300c0fd99117bf3804e5ff29b2715b8ca35137b8348

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pyrpmdb-0.1.27-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for pyrpmdb-0.1.27-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3e9cf8e62757201b5a0f4ac86b73f8eba9d00f33c927bd41faac6818844bf069
MD5 3d092cc4c32ff82e3b7ee1cb9fab52ae
BLAKE2b-256 5c1e9695ac68d2583ae9eb21d548670bf60d7d4b028761e36db685d7397deecb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp38-cp38-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e259683a9e19e383a02e8c5d9251e2738409b730e2665452df4878f3ae7197f
MD5 02b61005b1046394ed3734b3a716d50e
BLAKE2b-256 b733799f166cf638fbaddab5811f2b09548638c1fd658b699c7ca280d33cfc26

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03a9639c92d38688a599604444b95a039c9df761660789517c6a648e301a9d86
MD5 1786b732389d46bfa50f27805cea944b
BLAKE2b-256 fc3399b6233cebaaf48cf1cbeae4510678e97ec3dda231844f9ca7532e814dbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a02539d6c4a99d91c94da608ad4fd7f905a0e329d733fa933ba95614ccd687d
MD5 c9629cec40b6bb4e576955b88f0baecf
BLAKE2b-256 90d8c39a9f904985c61994adab912ede97c50ffe280462546ee4e854bf07343c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c8fe2ca98ce0f6362b95f69a21e53a78c496f3b9d19c8c0f3e473abf55ee566
MD5 0b7f3523cfd3a2976dd2526db71a9980
BLAKE2b-256 57a68f2b582784fd3e3c20c42982be38ed36361496ff2a7d1592ac6a3d3241e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd1aba13c0da1d983c7cd2b48fe129bd415e5476357570436ed8fec71f004818
MD5 43a502433bde41424f8c7cf97bb71c3f
BLAKE2b-256 805dccb3a1a23e0419f2ff92566abb7f3e67423c6df0bd9d9919a1085cd651d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6e11d3b0b8b5e887b579a9efead091529eb50e7b69551c744bb9fbf0885a6b62
MD5 de92713bd082caeed99ae7ee0d30d3b5
BLAKE2b-256 715976a7593edac3615dc5c6d705c36f447dd27724e4f9b29eb2a1b4f47ae25a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c34c80efcc806bb599971c619d0bae2ef6a0aacbb2ebb05fb1870367b897c46
MD5 5e17ec32150d5bafe22538712e90f7a0
BLAKE2b-256 70c044612e679db98ebb70d809df2218f9948b47a78bad48796cfa307d42284e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31155127b4ecb89d7232bde95807ed3f4248183e835a04de5fb3ec5ac4831b64
MD5 cf22dfcd04f50abb0b1e61627ccb0f09
BLAKE2b-256 3a0191c4b3c53aa3a347dbf79c31b5c2710bd93aad112343ff63f1bec154f871

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp37-cp37m-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 897a50973bb77d9d64f3691455a5204f5774fa73929996a414f3f86dc7f43de2
MD5 63c01e110a1a372132d1103405534e1d
BLAKE2b-256 f1dd900f4a39c117c810243b80aa66d86884a67c580dc6d63176b41a989dbcaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71e53c44b7e4a0ab483433a88ff2444d91e8a431b06afa1632031d16ee6c31d1
MD5 01fea48d72b37e6571df51dd6bfcc14b
BLAKE2b-256 3183c82e5a951ce323d5862ad4f506b492a52cd9ea6bfa750b0bfb3f40f81b32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96f01b980bdde71da80969d1d467abd88e7e31e7090204d74e67bad2c076dfac
MD5 997c303ccc627590dfcb8fb1249d3b58
BLAKE2b-256 b1a74aefe8e4676ad8870341790dd330aec81b08c532632622d8cd1177562984

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36546dce51b3d2dc829868622fe86eb3bef4b665e56cd72e62e2e936d46105c8
MD5 74571beee03fc797d65fedd4241a84b9
BLAKE2b-256 20667449eb1da947ddc70ea555fd7e4822c4911d806f5dbc6a0af76bd40a0e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp36-cp36m-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86249e42bfa40f910a59ffdc11929394d9412e740a276596833cfc26eb1460e7
MD5 36bee4fa36c9371ae7b826cb56050369
BLAKE2b-256 f06a459de7554870a4598effdcc5440ec4844231070795ce94aabbbe78eef79d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp36-cp36m-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeb76feaaf3b28ae23707bd634235b25eeade3f88a49d5e7dc0e961c2d5831aa
MD5 5fc049b8aa702307b51cf79b09ca3db5
BLAKE2b-256 c6f2239f81e30f29c87a84eff06d6c0a5d581f1538bbf3cd138cae4d990a8d78

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f4b58b25140e08b8d09bfcfa6e13a1c7fd557b0e1f0ca43cc446a34512222fe
MD5 7305e1f452f9553e26ff5edd5c0a442f
BLAKE2b-256 bd321dd2345b7fadc159d256a69824156e1b1d4710e1910b93e67bd69324bacf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

File details

Details for the file pyrpmdb-0.1.27-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pyrpmdb-0.1.27-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 357c937567aaa20a29f3e389be75f9dfbb1977e7e3810fb4b5c446847ac769bf
MD5 5b8093ffe074060f6cd41e8236b0a7c4
BLAKE2b-256 92c775fe2046506be83ba328d44cc8f7155fe6ca734f16fb989d6264d0cdb097

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyrpmdb-0.1.27-cp36-cp36m-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pyrpmdb

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page