Skip to main content

A utility to extract go build info information fro go executables and shared libraries

Project description

A python package that extracts go build information from go based executables, go.mod and go.sum files and shared libraries. The package leverages the golang debug/buildinfo and golang.org/x/mod/modfile packages to extract the information hence relies on a shared library to do this work.

Example usage

from pygobuildinfo import get_go_build_info, get_go_mod, get_go_sum
import json


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

def test_go_mod(file):
    res = get_go_mod(file)
    print(json.dumps(res,indent=4))

def test_go_sum(file):
    res = get_go_sum(file)
    print(json.dumps(res,indent=4))

test_get_info("foo/bar")
test_get_info("/usr/bin/du")
test_get_info("/Users/auser/go/src/spire/support/oidc-discovery-provider/oidc-discovery-provider.elf")
test_get_info("/Users/auser/go/src/spire/support/oidc-discovery-provider/oidc-discovery-provider.exe")
test_get_info("/Users/auser/go/src/spire/support/oidc-discovery-provider/oidc-discovery-provider")
test_get_info("/Users/auser/go/pygobuildinfo/pybuildInfo/_pyGoBuildinfo.cpython-39-darwin.so")
test_go_mod("/Users/auser/go/src/pygobuildInfo/go.mod")
test_go_sum("/Users/auser/go/src/pygobuildInfo/go.sum")

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 dict of the buildinfo struct is returned

{
    "GoVersion": "go1.18.4",
    "Path": "github.com/spiffe/spire/support/oidc-discovery-provider",
    "Main": {
        "Path": "github.com/spiffe/spire",
        "Version": "(devel)",
        "Sum": "",
        "Replace": null
    },
    "Deps": [
        {
            "Path": "github.com/DataDog/datadog-go",
            "Version": "v3.2.0+incompatible",
            "Sum": "h1:qSG2N4FghB1He/r2mFrWKCaL7dXCilEuNEeAn20fdD4=",
            "Replace": null
        },
        {
            "Path": "github.com/andres-erbsen/clock",
            "Version": "v0.0.0-20160526145045-9e14626cd129",
            "Sum": "h1:MzBOUgng9orim59UnfUTLRjMpd09C5uEVQ6RPGeCaVI=",
            "Replace": null
        },
        {
            "Path": "github.com/armon/go-metrics",
            "Version": "v0.4.0",
            "Sum": "h1:yCQqn7dwca4ITXb+CbubHmedzaQYHhNhrEXLYUeEe8Q=",
            "Replace": null
        },
        {
            "Path": "github.com/beorn7/perks",
            "Version": "v1.0.1",
            "Sum": "h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=",
            "Replace": null
        },
        {
            "Path": "github.com/cespare/xxhash/v2",
            "Version": "v2.1.2",
            "Sum": "h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE=",
            "Replace": null
        },
        {
            "Path": "github.com/fatih/color",
            "Version": "v1.13.0",
            "Sum": "h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w=",
            "Replace": null
        },
        {
            "Path": "github.com/felixge/httpsnoop",
            "Version": "v1.0.2",
            "Sum": "h1:+nS9g82KMXccJ/wp0zyRW9ZBHFETmMGtkk+2CTTrW4o=",
            "Replace": null
        },
        {
            "Path": "github.com/golang/protobuf",
            "Version": "v1.5.2",
            "Sum": "h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=",
            "Replace": null
        },
        {
            "Path": "github.com/gorilla/handlers",
            "Version": "v1.5.1",
            "Sum": "h1:9lRY6j8DEeeBT10CvO9hGW0gmky0BprnvDI5vfhUHH4=",
            "Replace": null
        },
        {
            "Path": "github.com/hashicorp/go-hclog",
            "Version": "v1.2.1",
            "Sum": "h1:YQsLlGDJgwhXFpucSPyVbCBviQtjlHv3jLTlp8YmtEw=",
            "Replace": null
        },
        {
            "Path": "github.com/hashicorp/go-immutable-radix",
            "Version": "v1.3.1",
            "Sum": "h1:DKHmCUm2hRBK510BaiZlwvpD40f8bJFeZnpfm2KLowc=",
            "Replace": null
        },
        {
            "Path": "github.com/hashicorp/golang-lru",
            "Version": "v0.5.4",
            "Sum": "h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=",
            "Replace": null
        },
        {
            "Path": "github.com/hashicorp/hcl",
            "Version": "v1.0.1-0.20190430135223-99e2f22d1c94",
            "Sum": "h1:LaH4JWe6Q7ICdxL5raxQjSRw7Pj8uTtAENrjejIYZIg=",
            "Replace": null
        },
        {
            "Path": "github.com/mattn/go-colorable",
            "Version": "v0.1.12",
            "Sum": "h1:jF+Du6AlPIjs2BiUiQlKOX0rt3SujHxPnksPKZbaA40=",
            "Replace": null
        },
        {
            "Path": "github.com/mattn/go-isatty",
            "Version": "v0.0.14",
            "Sum": "h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=",
            "Replace": null
        },
        {
            "Path": "github.com/matttproud/golang_protobuf_extensions",
            "Version": "v1.0.2-0.20181231171920-c182affec369",
            "Sum": "h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=",
            "Replace": null
        },
        {
            "Path": "github.com/pkg/errors",
            "Version": "v0.9.1",
            "Sum": "h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=",
            "Replace": null
        },
        {
            "Path": "github.com/prometheus/client_golang",
            "Version": "v1.12.2",
            "Sum": "h1:51L9cDoUHVrXx4zWYlcLQIZ+d+VXHgqnYKkIuq4g/34=",
            "Replace": null
        },
        {
            "Path": "github.com/prometheus/client_model",
            "Version": "v0.2.0",
            "Sum": "h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=",
            "Replace": null
        },
        {
            "Path": "github.com/prometheus/common",
            "Version": "v0.32.1",
            "Sum": "h1:hWIdL3N2HoUx3B8j3YN9mWor0qhY/NlEKZEaXxuIRh4=",
            "Replace": null
        },
        {
            "Path": "github.com/prometheus/procfs",
            "Version": "v0.7.3",
            "Sum": "h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU=",
            "Replace": null
        },
        {
            "Path": "github.com/sirupsen/logrus",
            "Version": "v1.8.1",
            "Sum": "h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=",
            "Replace": null
        },
        {
            "Path": "github.com/spiffe/go-spiffe/v2",
            "Version": "v2.0.1-0.20220414143532-2ed460a8b9d3",
            "Sum": "h1:FpqM5PfWHs4Ze36HwzMpRefrv8kkmxFgtG9Qc6hL7Dc=",
            "Replace": null
        },
        {
            "Path": "github.com/spiffe/spire-api-sdk",
            "Version": "v1.2.2-0.20220317172821-e2705b35aa09",
            "Sum": "h1:2oavALIvyKv+M9Q2CWoz3UlJn4DT+oAhVO1qIgaq0GA=",
            "Replace": null
        },
        {
            "Path": "github.com/twmb/murmur3",
            "Version": "v1.1.6",
            "Sum": "h1:mqrRot1BRxm+Yct+vavLMou2/iJt0tNVTTC0QoIjaZg=",
            "Replace": null
        },
        {
            "Path": "github.com/uber-go/tally/v4",
            "Version": "v4.1.2",
            "Sum": "h1:NlU/4j+AAaPHG7yxQVmu0QY7H0W9FFDjFznwAU0t+rE=",
            "Replace": null
        },
        {
            "Path": "github.com/zeebo/errs",
            "Version": "v1.3.0",
            "Sum": "h1:hmiaKqgYZzcVgRL1Vkc1Mn2914BbzB0IBxs+ebeutGs=",
            "Replace": null
        },
        {
            "Path": "go.uber.org/atomic",
            "Version": "v1.9.0",
            "Sum": "h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE=",
            "Replace": null
        },
        {
            "Path": "golang.org/x/crypto",
            "Version": "v0.0.0-20220511200225-c6db032c6c88",
            "Sum": "h1:Tgea0cVUD0ivh5ADBX4WwuI12DUd2to3nCYe2eayMIw=",
            "Replace": null
        },
        {
            "Path": "golang.org/x/net",
            "Version": "v0.0.0-20220624214902-1bab6f366d9e",
            "Sum": "h1:TsQ7F31D3bUCLeqPT0u+yjp1guoArKaNKmCr22PYgTQ=",
            "Replace": null
        },
        {
            "Path": "golang.org/x/sys",
            "Version": "v0.0.0-20220624220833-87e55d714810",
            "Sum": "h1:rHZQSjJdAI4Xf5Qzeh2bBc5YJIkPFVM6oDtMFYmgws0=",
            "Replace": null
        },
        {
            "Path": "golang.org/x/text",
            "Version": "v0.3.7",
            "Sum": "h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=",
            "Replace": null
        },
        {
            "Path": "google.golang.org/genproto",
            "Version": "v0.0.0-20220624142145-8cd45d7dbd1f",
            "Sum": "h1:hJ/Y5SqPXbarffmAsApliUlcvMU+wScNGfyop4bZm8o=",
            "Replace": null
        },
        {
            "Path": "google.golang.org/grpc",
            "Version": "v1.47.0",
            "Sum": "h1:9n77onPX5F3qfFCqjy9dhn8PbNQsIKeVU04J9G7umt8=",
            "Replace": null
        },
        {
            "Path": "google.golang.org/protobuf",
            "Version": "v1.28.0",
            "Sum": "h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw=",
            "Replace": null
        },
        {
            "Path": "gopkg.in/square/go-jose.v2",
            "Version": "v2.6.0",
            "Sum": "h1:NGk74WTnPKBNUhNzQX7PYcTLUjoq7mzKk2OKbvwk2iI=",
            "Replace": null
        }
    ],
    "Settings": [
        {
            "Key": "-compiler",
            "Value": "gc"
        },
        {
            "Key": "CGO_ENABLED",
            "Value": "0"
        },
        {
            "Key": "GOARCH",
            "Value": "amd64"
        },
        {
            "Key": "GOOS",
            "Value": "linux"
        },
        {
            "Key": "GOAMD64",
            "Value": "v1"
        },
        {
            "Key": "vcs",
            "Value": "git"
        },
        {
            "Key": "vcs.revision",
            "Value": "6cdc33ac0c19ca30b9e76313e8f17cfba0c86996"
        },
        {
            "Key": "vcs.time",
            "Value": "2022-07-13T19:09:00Z"
        },
        {
            "Key": "vcs.modified",
            "Value": "true"
        }
    ]
}

For go_sum and go_mod the structure will be similar with less info a go.sum does not know the module its part of nor go versions so just has dependencies, versions and hashes. For a go.mod it may have go version will have module path and dependencies but no hashes.

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

pygobuildinfo-0.1.28.tar.gz (13.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pygobuildinfo-0.1.28-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pygobuildinfo-0.1.28-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pygobuildinfo-0.1.28-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygobuildinfo-0.1.28-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pygobuildinfo-0.1.28-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pygobuildinfo-0.1.28-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pygobuildinfo-0.1.28-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygobuildinfo-0.1.28-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pygobuildinfo-0.1.28-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pygobuildinfo-0.1.28-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pygobuildinfo-0.1.28-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygobuildinfo-0.1.28-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.15+ x86-64

pygobuildinfo-0.1.28-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pygobuildinfo-0.1.28-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pygobuildinfo-0.1.28-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pygobuildinfo-0.1.28-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pygobuildinfo-0.1.28-cp314-cp314-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows x86-64

pygobuildinfo-0.1.28-cp314-cp314-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.28-cp314-cp314-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.28-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pygobuildinfo-0.1.28-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pygobuildinfo-0.1.28-cp314-cp314-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pygobuildinfo-0.1.28-cp314-cp314-macosx_10_15_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pygobuildinfo-0.1.28-cp313-cp313-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows x86-64

pygobuildinfo-0.1.28-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.28-cp313-cp313-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.28-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pygobuildinfo-0.1.28-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.3 MB view details)

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

pygobuildinfo-0.1.28-cp313-cp313-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pygobuildinfo-0.1.28-cp313-cp313-macosx_10_13_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

pygobuildinfo-0.1.28-cp312-cp312-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.12Windows x86-64

pygobuildinfo-0.1.28-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.28-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.28-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pygobuildinfo-0.1.28-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.3 MB view details)

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

pygobuildinfo-0.1.28-cp312-cp312-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pygobuildinfo-0.1.28-cp312-cp312-macosx_10_13_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

pygobuildinfo-0.1.28-cp311-cp311-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pygobuildinfo-0.1.28-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.28-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.28-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pygobuildinfo-0.1.28-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.3 MB view details)

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

pygobuildinfo-0.1.28-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pygobuildinfo-0.1.28-cp311-cp311-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pygobuildinfo-0.1.28-cp310-cp310-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pygobuildinfo-0.1.28-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

pygobuildinfo-0.1.28-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

pygobuildinfo-0.1.28-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pygobuildinfo-0.1.28-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (1.3 MB view details)

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

pygobuildinfo-0.1.28-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pygobuildinfo-0.1.28-cp310-cp310-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file pygobuildinfo-0.1.28.tar.gz.

File metadata

  • Download URL: pygobuildinfo-0.1.28.tar.gz
  • Upload date:
  • Size: 13.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pygobuildinfo-0.1.28.tar.gz
Algorithm Hash digest
SHA256 6497ab8a30dfced02cf53a922a0db63d3556bc6c5504b5361deeac9880a12c4d
MD5 ac981ad998ba677a57f9c64d632f3a04
BLAKE2b-256 658de19f7c6afd63f5ee779792e8e2da9ffe0ae52fb84d570aa825be9f5eb481

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28.tar.gz:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b92ed4a6f7b88277a1dbf1fd0b30c63a8e849e5d084a77eb0766da02d4b2c67
MD5 5bfdd43272c0a047d27cd09f551d3b83
BLAKE2b-256 ee7da4f6c508c9f53f6acf0e4b4d96e33f9b62c71b400898f12979076fd97356

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e3b20629db8f58179468554cb172c64dfecb6ded726200e32850ac93abe5a11f
MD5 32d8608e0cddb7bf327445237658fd29
BLAKE2b-256 4e42e43a3bbdd5615fb5f4d01a19e502fefa087477f02996dcfc618d4874bd6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f2e40344244d8bb7bedc03fae6608a2e04e7670e98ba4d904a2506a3a7e2416
MD5 542cc1513e8e7b8d25183ee73e2ce757
BLAKE2b-256 0190273ec17b5bf2d5d52aed719727d774ac5a88fac10f1f369f6cf5a00bf935

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 7c6480ef2de31b43fa7340e4da2df8fbbf463fd9719c84f8c755a56a3a2f95ec
MD5 1f419a8898d895e204134311db3c463a
BLAKE2b-256 d41eccd23cce34d8f8ce0e8a2814ade4bb2e6d73c9cbc1a2d509d188a6b16e40

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bb73ef58973b002ae20cfe75225e34b2ddef60a6faf203b7daca7cb37d7267a7
MD5 4d01f9e5a914458fb5beb43648c6b2a2
BLAKE2b-256 abc451aee369259237ccb903f201f0b81cd26b23154171271d35a3e2dc886878

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7110531397623d09d62f0b805eb994638f55fbbe4422ebcdc804563a17e8fbd1
MD5 f665f571a830791c7d1f443fa8c89dec
BLAKE2b-256 f25ad1652b27cc95b822ec6be96f68fe6fe22eec53a23f63602a47abf20e9d97

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f02b034da27f94ebb3d27660fbf342c2c4247f4f7518c7a9fda991379e38b594
MD5 a4d9afa6760857b976451210ae9c6572
BLAKE2b-256 33ae9eb11b620ed186ac524d818c24a9db38d95efe2f403f48bd5fb93755d3fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 532fe072c36dba81304b8ea33baa621ab2bc4f3a31c9ab66df453494dbd8c046
MD5 c8848d08482ff45eaec997e8277b9552
BLAKE2b-256 c755999a5c8cbd0e9ed44b9810b1f94e6c1a21fdcec63f758cf84bc4f25a07b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp310-pypy310_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53cc836fe56b33100fef56d3f93e71f1fe72f4d6a637364709b19b59f065bd61
MD5 ad0ab37796c3bb676dd6add24937af1f
BLAKE2b-256 5db79cd572969090ef55fd107371c270de88a1920b15dabb6651492e60927ade

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b40f28aeee05d3dcc0c750db311bf93ae9c8e88504a98cd013c10920320bc10b
MD5 85b6c78ee3c13a33f15dfc423e720eca
BLAKE2b-256 4f367fa4ddc543b3d12f0171210bd451099329f8a5996d936321a70479b90f25

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 baded35ba593335f2360fce9d6c425edd28a29935c04b3968dd69df76cd4674a
MD5 57b015b780df053dfe1e2c6a97a0bdee
BLAKE2b-256 6ce9335791942049682f994fb7122145f87c641892fe6947135e9fac54ae2501

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 feaa52ff91e1b0045ff43a5a0de3c74b512a67e65ca38593ebfcdbe39975844c
MD5 e34f36213be2f0bd6131163916df3b84
BLAKE2b-256 7017e2c344f240d9ae858abc1803b41986b479c19537657ffd2218735beeee3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp39-pypy39_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a54fecb4d076bc81be33ab5601f5b33d4f9f2fa7ced1846e7e9de4735ec3ec3c
MD5 ce0a93b020d399b7ea6ff3ca83f0a6e0
BLAKE2b-256 6251d860693fe861b7499364b5b4b69c38cf535f662ce05aaa1cf3a6165c9b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 325b981fa7e94cff5b100f24da12ce90ac4f1422d2dc0ca8b1a55e7c79f9db7d
MD5 21bbd41608b4b1d4676b2f0c448291fe
BLAKE2b-256 9f0eb653e7a806726157a474eb89c63e3789ab6ef6b79aea0de8d764069595b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 419401025b650cb452b1edc29a0ab487383fe695ebe31d13df9b8737721d1a3d
MD5 a51cc4a542935c1e081c76ff83f538bb
BLAKE2b-256 8f02d69596c3d19e179d8aa5c6597b71c1b83fd63f6a8ed88d568ee48cfe0932

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp38-pypy38_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a64c39ddc02eab62d71051071f2047fec46263e30506493b3b9d6f034437d566
MD5 0e9d64090f15807de7a0ab346e5e8175
BLAKE2b-256 d6ee908a1c026761de6e8339518b74b1bc426a4076d1ea821a4087787ac3f6c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-pp38-pypy38_pp73-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 78a24886e5ef2ea4f7122a4a95bfca60033ca030cac85b4b4f157a3949031a9a
MD5 a0bbe1814bdc61353d13ad45c3dcc58e
BLAKE2b-256 3fbd3d659f372ed11a4c57fc41985858ea0da1790376c9340fe30bfb7794b79e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09e6aded1a4c004398677c01b543b6874254d13db2b401fa3c6d1db28e7479bc
MD5 54f992c81bfc3c691e7bc3c8b992b4e9
BLAKE2b-256 23cb7c805f8850783dbddd403708e58a569fdc0ba992a8412474cccbdbea1e07

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3f86dfe5faa0c84cad9bd58a92e5bfad6e449b0da237fd692aa40dde5906dc7
MD5 5e2b1114c348c4e7c5f9cd935eaa9a78
BLAKE2b-256 03a6fa491a0d8f699a1c89dc8d5ee04ab17fbb95f675b2b41a82359bd47018a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c660df912b1d7ce4e1e2bb03e81d238fbcabd3f4e2f8e1196df1057e215cea03
MD5 5028a3dfed3ccecf79555daefdce0e98
BLAKE2b-256 311d69c65a68fb0cc8822e1c0f656dc2454e93bfc640e4a04b61c2a09df22c04

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 8329399f0a5c61ed862cf8b328361e2f5f508c1a69d1d134529b4da3a7df9746
MD5 e2e5773551cb83000d8b2ad1e398ac09
BLAKE2b-256 2cff8cdea7546e96f55b45d6ea50624d72b5a36539cde468b38b289dcf1d5357

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b089dd2ae745c1409e671eb5a7e6ef0319bdb80d2a4d8b7288287dcf89bae78d
MD5 9cb621744195522577454aee8e219f8c
BLAKE2b-256 fff8785af94720a39f898d5db0d8538d435315bbf689862aa8c1362b6397c2bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 411df9084b1eda85d1005df970f45ace8d551bd53e5d7b89cd30ab8894e07f8e
MD5 2be9e950a75c7b620c68c23ad76523db
BLAKE2b-256 e8f4abb35491f21d19b1246c2e1460b7a89064d00360132c78fbd3041021d2bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa612cc53ab10f9aaad765396cb7366372278a55414cd8e7232654ce7eb482c3
MD5 975b8b01e68cfd32b5f054067b7aadec
BLAKE2b-256 11c7226776ea0c00cc465847048c6f575fdbf06785f68b620da9580257416d4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d58b9b45c1821905f75e1bedc4a4d7f6fa6867f7b8d9711ddd4030cd3c2ae1ad
MD5 3d6d11aae4604c16b1119674c794335b
BLAKE2b-256 fe2b098ea981ceea076edd50008a9dfe8295a25d5c4eb749a25ae39c7d1fca88

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea9b63803b2160fbc9e01d82c8580b2f16ebd1db9e5f8cdba7b5c5ecca6db158
MD5 8af5907fb38574c7376650e1ef47884b
BLAKE2b-256 a4125201e53a0d5cdd84688fa9213990febd79f19f5fc81d67d92d290d2e566e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e02a8e33d6a5e99bbf1d474491d9cb37aff8e3401deb57f943b9e4d33a5711d
MD5 99822c2d434c3a71243110245ca7a026
BLAKE2b-256 bad4547b65e3318079de18f799d5c0e0ae00d37406de7982f221d2d265ec44b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b312cb650e31e6bcbca515fc84b4a699ccd83ed9ce41526716ff5e848b1d2f20
MD5 be5391b0fa9d19a35122c235ac61f3fc
BLAKE2b-256 bb992c2a66c20cac7cebcc7a381e28acc6a8af06d4328b3bd037efb10f6eeca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b35ff3cee165d05d47790eff2f940145879ba8f9f69edff9803777408317cd7
MD5 9ee3e7757d0c97001f0a940b9659850d
BLAKE2b-256 c6e66502488639d97c19f8e47610bd18d31a8a3a75dfa3a8eac1e3ac62bfbbf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c1aa18a7c90ea10e07951893a457557b78a6ed4863a7bd8869dce9e65869ca6c
MD5 da937612c60617ad942b9e95fe498f88
BLAKE2b-256 fa76b9c0270f186b72f843b238537acbce138716b0b2134b32588e0dfd642d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 988b5b3e54d0734bdd912d363fcdcd0fd7abcc0335344cb54ae3cf3c33cbb933
MD5 ea0f4cfaa8240d8fde7c1c025e010c82
BLAKE2b-256 7b2e8e7449126c73ff4f543104db3cbbfb39edb2f4a317d38dad94899c2aa4b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e9d74ee3411202edb9f6a2f48dd3e107d879fa63b3debfbe1695f0973c6a718
MD5 d1537c78dd4fc6302fb75b56eabe9f1a
BLAKE2b-256 ff79a11f033bbe33c25efdc2adb5c73272e04806d941fa1521f3d10c061e7b9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3cb9e1adf068bc82e15b01c248a95444fafca8945d3e3d59fe6ebbef84f144c
MD5 601ce276e4418a81b8c81da033e6d237
BLAKE2b-256 33bd9358a4a8fe70c63b5df2290b805ac548ce3e8c4cc426fbe185b2ea952dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ea7915459a802a1573e6f1d86ded8cbfa2eeead610f0e7fa8394e76d29385c72
MD5 61ecb8bd781afa62cd5228b152317d00
BLAKE2b-256 0d069eb5991f1c48c2a55a8aade31b0a5d0ae0798a32ba0d100c95de54dad0ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f1b0939bc865f99dbcfc65ebd183089711557b2ac07bd864df96f4790804f43e
MD5 6a76267caef24b1f09bd030980e2e243
BLAKE2b-256 1827f072757dae1d9c191c3643bd1a90e3069511c4d0e490f1b803fa29263b13

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c32bd92e35fe36e1fd1d95202aa2342d3e69bf275707420c02cea0434a9cf961
MD5 bc87dbe2bcd294422723d6278f9dfd55
BLAKE2b-256 3064ae3eeb3682ab4131c5b9034edfe76b828c4d2d43fab3a9cb0fda48d08c67

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0d61c11d0bcd4585cb47877118960ab47446286f1c176142576c17fd6c94d445
MD5 b95b91e7048986a69591c8444c89e726
BLAKE2b-256 7459830c6bb2fa73775b3356af0b03c66b9f8b5e2ce1f04eedbeca05751c58db

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 228993714729ae76558591aa9e1f946db12eaf492433d2be5f0b0cb61f78c7f0
MD5 b7c9d45a69c248f38279f0b98e380e77
BLAKE2b-256 a9810f1675748f214a9b77c3c436338ec1c3aae0058462f721acfa9048454481

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 55886d6ab85d9a3f9a13f91fccfdfcdb7fe6bd088c227a5617715e65cdf1cb0b
MD5 3288d7d5a58e1241ac78ae88678e7225
BLAKE2b-256 eb7aef919f182eb84d60de5f089d354087b2913814d7cbbde31f74601fd0f5be

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dade4ff93c9576aa01a4da90353f32fa010f1fbf948920d623f9201fa9b8230c
MD5 3bebca3ec6f83dcb314e3f00642b2bd4
BLAKE2b-256 1847c55fb0115299256b55ab11aa29ceec2884b15ac371364de48b966c1a2882

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba159ab4deaee758a26fdaed96a2613aeff5a1c1d0265de435f3e4f2bc114f55
MD5 048b0dcd13ae1871939f96ca21e48d74
BLAKE2b-256 9ccb9cba16de9d3f067111388257e425d2a607eb2adc58c388dec1183de1b697

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 05a1dcf1ac62110ae467b97e4d6745f386425f1b74f2827955d0ff3b413f5b47
MD5 9537b891caba48cf9d26286d0405e0e1
BLAKE2b-256 a8ef18d14efb31be99107e47a62200a334eda3c56b399ee369917f6ff5af797f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f4e78a21435f04ec706409f9b0009de3d5e3ed2ff0e05e51fab42edb55d8f04
MD5 1334147c2c913797a1c9ca4b104069dd
BLAKE2b-256 5386a788218bfc4ebdd458fdac0aea7899a6543d790e2da5821f3de75ec86224

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 794af5f5497335136642abb9961c8f6ec78e9c4db276a8856248e9a8e89e69fe
MD5 def9ea9bfd518e53e2d678a5b10dd6b1
BLAKE2b-256 e950722a8d3e67da5d9746a48731a791ac7a541ff12bf1fea6afb7d0db6bc419

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b714021545fe9d678c9a38d3c4ff5aff8f256f565d924b398b9b66b384b2b256
MD5 ba3a94f1d3adefb2a4dc05942c2cb16e
BLAKE2b-256 1eb74a83c4adc1d3b4ac4da20400f0f3b4cc8302729b9e2ce4e8b95692aa6770

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f5b77a2742b1fa2445275de5ada947a4fefc2098207df07ecb496c46c698478
MD5 684c468ee4dd62848678078f117374f6
BLAKE2b-256 626ef80fdb0a9dc08b7ab2e3bfa5899b84dfd87e73ddf74e79821a75f95aa7c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f86ac402c35cc8fb88b1824029856142cd5c4836179cd100b1c3c5a5e707b92b
MD5 7e9cf1c8aa7f7f15c933e86cd17d12d7
BLAKE2b-256 b9bdf7323cb062300b8b6791b958c4ec5bb941a1349abd1b1d8d5b3786cb4cee

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9dc9bc2736cd514d7ae89255b38b442a9ef81e49993edfbad8f30c4b78bb4c30
MD5 01166ea26d8b8e7444391910e62768d3
BLAKE2b-256 3afcb6d78900763d29e895462a9b0b61ea968750b3e7462fc77323c02bbeef0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 147caa1568afa639c5ce135af2975895a6310a8ad0c3772784197de263fb013d
MD5 39bedcbfad20619452e7630c237518bc
BLAKE2b-256 9d84f64f3dba8e4d5e0fd7e70c058a2f36f41906b910961dcbed8ffc9045479f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3a7f2afaa77883b95cdcef29597d5b7afb13f21ccec0171e21775cb0e1f74d6
MD5 f084b333dee9b56a9361f6f527412632
BLAKE2b-256 bfbad9d460da4f831c42038c0496aa826ba1eda05ba6ab5c3c932badc44f20ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pygobuildinfo-0.1.28-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygobuildinfo-0.1.28-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 60357366a79ebb48edb303c15b5118ef9bc1b1e4e6fda14990f7886ea34cd478
MD5 a0e3e541818a298fc85bd6fd0e3185f2
BLAKE2b-256 f21b5ebc85bf5739587e74c5684e3f5210edba9a859abca234d33e251c9c070f

See more details on using hashes here.

Provenance

The following attestation bundles were made for pygobuildinfo-0.1.28-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on MikeMoore63/pybuildInfo

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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