pygobuildinfo


Namepygobuildinfo JSON
Version 0.1.23 PyPI version JSON
download
home_pagehttps://github.com/Mikemoore63/pybuildInfo
SummaryA utility to extract go build info information fro go executables and shared libraries
upload_time2024-12-14 10:42:51
maintainerNone
docs_urlNone
authorMike Moore
requires_pythonNone
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            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 

```python

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;
```python
{
    "error": "path error:foo/bar"
}
```
or 
```python
{
    "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
```python
{
    "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.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Mikemoore63/pybuildInfo",
    "name": "pygobuildinfo",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": null,
    "author": "Mike Moore",
    "author_email": "z_z_zebra@yahoo.com",
    "download_url": "https://files.pythonhosted.org/packages/36/fd/9466a306d070a93fb6b97e18a541176823080065574e32e5b619daceb3d3/pygobuildinfo-0.1.23.tar.gz",
    "platform": null,
    "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.\n\nExample usage \n\n```python\n\nfrom pygobuildinfo import get_go_build_info, get_go_mod, get_go_sum\nimport json\n\n\ndef test_get_info(file):\n    res = get_go_build_info(file)\n    print(json.dumps(res, indent=4))\n\ndef test_go_mod(file):\n    res = get_go_mod(file)\n    print(json.dumps(res,indent=4))\n\ndef test_go_sum(file):\n    res = get_go_sum(file)\n    print(json.dumps(res,indent=4))\n\ntest_get_info(\"foo/bar\")\ntest_get_info(\"/usr/bin/du\")\ntest_get_info(\"/Users/auser/go/src/spire/support/oidc-discovery-provider/oidc-discovery-provider.elf\")\ntest_get_info(\"/Users/auser/go/src/spire/support/oidc-discovery-provider/oidc-discovery-provider.exe\")\ntest_get_info(\"/Users/auser/go/src/spire/support/oidc-discovery-provider/oidc-discovery-provider\")\ntest_get_info(\"/Users/auser/go/pygobuildinfo/pybuildInfo/_pyGoBuildinfo.cpython-39-darwin.so\")\ntest_go_mod(\"/Users/auser/go/src/pygobuildInfo/go.mod\")\ntest_go_sum(\"/Users/auser/go/src/pygobuildInfo/go.sum\")\n```\n\nThe result returned is always a dict object for errors  the dictionary returned contains a key;\n\"error\" like;\n```python\n{\n    \"error\": \"path error:foo/bar\"\n}\n```\nor \n```python\n{\n    \"error\": \"/usr/bin/du: could not read Go build info from /usr/bin/du: unrecognized file format\"\n}\n```\non success a python dict of the buildinfo struct is returned\n```python\n{\n    \"GoVersion\": \"go1.18.4\",\n    \"Path\": \"github.com/spiffe/spire/support/oidc-discovery-provider\",\n    \"Main\": {\n        \"Path\": \"github.com/spiffe/spire\",\n        \"Version\": \"(devel)\",\n        \"Sum\": \"\",\n        \"Replace\": null\n    },\n    \"Deps\": [\n        {\n            \"Path\": \"github.com/DataDog/datadog-go\",\n            \"Version\": \"v3.2.0+incompatible\",\n            \"Sum\": \"h1:qSG2N4FghB1He/r2mFrWKCaL7dXCilEuNEeAn20fdD4=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/andres-erbsen/clock\",\n            \"Version\": \"v0.0.0-20160526145045-9e14626cd129\",\n            \"Sum\": \"h1:MzBOUgng9orim59UnfUTLRjMpd09C5uEVQ6RPGeCaVI=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/armon/go-metrics\",\n            \"Version\": \"v0.4.0\",\n            \"Sum\": \"h1:yCQqn7dwca4ITXb+CbubHmedzaQYHhNhrEXLYUeEe8Q=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/beorn7/perks\",\n            \"Version\": \"v1.0.1\",\n            \"Sum\": \"h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/cespare/xxhash/v2\",\n            \"Version\": \"v2.1.2\",\n            \"Sum\": \"h1:YRXhKfTDauu4ajMg1TPgFO5jnlC2HCbmLXMcTG5cbYE=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/fatih/color\",\n            \"Version\": \"v1.13.0\",\n            \"Sum\": \"h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/felixge/httpsnoop\",\n            \"Version\": \"v1.0.2\",\n            \"Sum\": \"h1:+nS9g82KMXccJ/wp0zyRW9ZBHFETmMGtkk+2CTTrW4o=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/golang/protobuf\",\n            \"Version\": \"v1.5.2\",\n            \"Sum\": \"h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/gorilla/handlers\",\n            \"Version\": \"v1.5.1\",\n            \"Sum\": \"h1:9lRY6j8DEeeBT10CvO9hGW0gmky0BprnvDI5vfhUHH4=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/hashicorp/go-hclog\",\n            \"Version\": \"v1.2.1\",\n            \"Sum\": \"h1:YQsLlGDJgwhXFpucSPyVbCBviQtjlHv3jLTlp8YmtEw=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/hashicorp/go-immutable-radix\",\n            \"Version\": \"v1.3.1\",\n            \"Sum\": \"h1:DKHmCUm2hRBK510BaiZlwvpD40f8bJFeZnpfm2KLowc=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/hashicorp/golang-lru\",\n            \"Version\": \"v0.5.4\",\n            \"Sum\": \"h1:YDjusn29QI/Das2iO9M0BHnIbxPeyuCHsjMW+lJfyTc=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/hashicorp/hcl\",\n            \"Version\": \"v1.0.1-0.20190430135223-99e2f22d1c94\",\n            \"Sum\": \"h1:LaH4JWe6Q7ICdxL5raxQjSRw7Pj8uTtAENrjejIYZIg=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/mattn/go-colorable\",\n            \"Version\": \"v0.1.12\",\n            \"Sum\": \"h1:jF+Du6AlPIjs2BiUiQlKOX0rt3SujHxPnksPKZbaA40=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/mattn/go-isatty\",\n            \"Version\": \"v0.0.14\",\n            \"Sum\": \"h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/matttproud/golang_protobuf_extensions\",\n            \"Version\": \"v1.0.2-0.20181231171920-c182affec369\",\n            \"Sum\": \"h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/pkg/errors\",\n            \"Version\": \"v0.9.1\",\n            \"Sum\": \"h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/prometheus/client_golang\",\n            \"Version\": \"v1.12.2\",\n            \"Sum\": \"h1:51L9cDoUHVrXx4zWYlcLQIZ+d+VXHgqnYKkIuq4g/34=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/prometheus/client_model\",\n            \"Version\": \"v0.2.0\",\n            \"Sum\": \"h1:uq5h0d+GuxiXLJLNABMgp2qUWDPiLvgCzz2dUR+/W/M=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/prometheus/common\",\n            \"Version\": \"v0.32.1\",\n            \"Sum\": \"h1:hWIdL3N2HoUx3B8j3YN9mWor0qhY/NlEKZEaXxuIRh4=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/prometheus/procfs\",\n            \"Version\": \"v0.7.3\",\n            \"Sum\": \"h1:4jVXhlkAyzOScmCkXBTOLRLTz8EeU+eyjrwB/EPq0VU=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/sirupsen/logrus\",\n            \"Version\": \"v1.8.1\",\n            \"Sum\": \"h1:dJKuHgqk1NNQlqoA6BTlM1Wf9DOH3NBjQyu0h9+AZZE=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/spiffe/go-spiffe/v2\",\n            \"Version\": \"v2.0.1-0.20220414143532-2ed460a8b9d3\",\n            \"Sum\": \"h1:FpqM5PfWHs4Ze36HwzMpRefrv8kkmxFgtG9Qc6hL7Dc=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/spiffe/spire-api-sdk\",\n            \"Version\": \"v1.2.2-0.20220317172821-e2705b35aa09\",\n            \"Sum\": \"h1:2oavALIvyKv+M9Q2CWoz3UlJn4DT+oAhVO1qIgaq0GA=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/twmb/murmur3\",\n            \"Version\": \"v1.1.6\",\n            \"Sum\": \"h1:mqrRot1BRxm+Yct+vavLMou2/iJt0tNVTTC0QoIjaZg=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/uber-go/tally/v4\",\n            \"Version\": \"v4.1.2\",\n            \"Sum\": \"h1:NlU/4j+AAaPHG7yxQVmu0QY7H0W9FFDjFznwAU0t+rE=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"github.com/zeebo/errs\",\n            \"Version\": \"v1.3.0\",\n            \"Sum\": \"h1:hmiaKqgYZzcVgRL1Vkc1Mn2914BbzB0IBxs+ebeutGs=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"go.uber.org/atomic\",\n            \"Version\": \"v1.9.0\",\n            \"Sum\": \"h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"golang.org/x/crypto\",\n            \"Version\": \"v0.0.0-20220511200225-c6db032c6c88\",\n            \"Sum\": \"h1:Tgea0cVUD0ivh5ADBX4WwuI12DUd2to3nCYe2eayMIw=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"golang.org/x/net\",\n            \"Version\": \"v0.0.0-20220624214902-1bab6f366d9e\",\n            \"Sum\": \"h1:TsQ7F31D3bUCLeqPT0u+yjp1guoArKaNKmCr22PYgTQ=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"golang.org/x/sys\",\n            \"Version\": \"v0.0.0-20220624220833-87e55d714810\",\n            \"Sum\": \"h1:rHZQSjJdAI4Xf5Qzeh2bBc5YJIkPFVM6oDtMFYmgws0=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"golang.org/x/text\",\n            \"Version\": \"v0.3.7\",\n            \"Sum\": \"h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"google.golang.org/genproto\",\n            \"Version\": \"v0.0.0-20220624142145-8cd45d7dbd1f\",\n            \"Sum\": \"h1:hJ/Y5SqPXbarffmAsApliUlcvMU+wScNGfyop4bZm8o=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"google.golang.org/grpc\",\n            \"Version\": \"v1.47.0\",\n            \"Sum\": \"h1:9n77onPX5F3qfFCqjy9dhn8PbNQsIKeVU04J9G7umt8=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"google.golang.org/protobuf\",\n            \"Version\": \"v1.28.0\",\n            \"Sum\": \"h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw=\",\n            \"Replace\": null\n        },\n        {\n            \"Path\": \"gopkg.in/square/go-jose.v2\",\n            \"Version\": \"v2.6.0\",\n            \"Sum\": \"h1:NGk74WTnPKBNUhNzQX7PYcTLUjoq7mzKk2OKbvwk2iI=\",\n            \"Replace\": null\n        }\n    ],\n    \"Settings\": [\n        {\n            \"Key\": \"-compiler\",\n            \"Value\": \"gc\"\n        },\n        {\n            \"Key\": \"CGO_ENABLED\",\n            \"Value\": \"0\"\n        },\n        {\n            \"Key\": \"GOARCH\",\n            \"Value\": \"amd64\"\n        },\n        {\n            \"Key\": \"GOOS\",\n            \"Value\": \"linux\"\n        },\n        {\n            \"Key\": \"GOAMD64\",\n            \"Value\": \"v1\"\n        },\n        {\n            \"Key\": \"vcs\",\n            \"Value\": \"git\"\n        },\n        {\n            \"Key\": \"vcs.revision\",\n            \"Value\": \"6cdc33ac0c19ca30b9e76313e8f17cfba0c86996\"\n        },\n        {\n            \"Key\": \"vcs.time\",\n            \"Value\": \"2022-07-13T19:09:00Z\"\n        },\n        {\n            \"Key\": \"vcs.modified\",\n            \"Value\": \"true\"\n        }\n    ]\n}\n```\nFor 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.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A utility to extract go build info information fro go executables and shared libraries",
    "version": "0.1.23",
    "project_urls": {
        "Homepage": "https://github.com/Mikemoore63/pybuildInfo"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b9932bd80cab65e12f0d87992ea261312a1b80f86e163ec5ed51874a995d888",
                "md5": "542ed9511c714e3c783cbfe059e88870",
                "sha256": "966b12d5e5192c47b8c0de9384b14d7f76084988250da5118348119a80209dd0"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "542ed9511c714e3c783cbfe059e88870",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1117506,
            "upload_time": "2024-12-14T10:40:34",
            "upload_time_iso_8601": "2024-12-14T10:40:34.090588Z",
            "url": "https://files.pythonhosted.org/packages/3b/99/32bd80cab65e12f0d87992ea261312a1b80f86e163ec5ed51874a995d888/pygobuildinfo-0.1.23-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad5502da249382e6785bbb1753ae94d2660f848460cff69805e98b25dbc04ab1",
                "md5": "9f7ef487ff551c0b287d5d6634bd959f",
                "sha256": "8c998b8372c2184480fd260aebcd5c845b143f9c776674f8567abba73f349786"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9f7ef487ff551c0b287d5d6634bd959f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1054016,
            "upload_time": "2024-12-14T10:40:38",
            "upload_time_iso_8601": "2024-12-14T10:40:38.061165Z",
            "url": "https://files.pythonhosted.org/packages/ad/55/02da249382e6785bbb1753ae94d2660f848460cff69805e98b25dbc04ab1/pygobuildinfo-0.1.23-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d80d4a34546d983c80e4d1b8ec3065bc1fd3065d53a2af11dcd540062d1dd0a5",
                "md5": "0c446149c6d7514f7c8d408d4ffc399e",
                "sha256": "94574a0f5c269de171bb803eff0f238efbd1e26f2c62218e7fee6fa5d6774952"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0c446149c6d7514f7c8d408d4ffc399e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1055431,
            "upload_time": "2024-12-14T10:40:44",
            "upload_time_iso_8601": "2024-12-14T10:40:44.327927Z",
            "url": "https://files.pythonhosted.org/packages/d8/0d/4a34546d983c80e4d1b8ec3065bc1fd3065d53a2af11dcd540062d1dd0a5/pygobuildinfo-0.1.23-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d904252bcb5af6a4e2d19e068f1da5021cba6762254ec0070757801692ff5214",
                "md5": "619ac8972fa796eb4fc1ec9d0ebe4e7e",
                "sha256": "3487fd9b394d81b7abaee73b451f9129acaf3077c735693de2edc92073d802e6"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "619ac8972fa796eb4fc1ec9d0ebe4e7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1141745,
            "upload_time": "2024-12-14T10:40:47",
            "upload_time_iso_8601": "2024-12-14T10:40:47.077122Z",
            "url": "https://files.pythonhosted.org/packages/d9/04/252bcb5af6a4e2d19e068f1da5021cba6762254ec0070757801692ff5214/pygobuildinfo-0.1.23-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93ca818a2e16bc3ee170b81ceda6b2798ffb254c4fd97fcfce598bcf08b4cac8",
                "md5": "312caf27587fe3a7eb5f8081365b84ce",
                "sha256": "fd1670c90966b359866387e1e2a525f4d0f0b24728baf8126c3edee0721ceb6a"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "312caf27587fe3a7eb5f8081365b84ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1054599,
            "upload_time": "2024-12-14T10:40:49",
            "upload_time_iso_8601": "2024-12-14T10:40:49.822204Z",
            "url": "https://files.pythonhosted.org/packages/93/ca/818a2e16bc3ee170b81ceda6b2798ffb254c4fd97fcfce598bcf08b4cac8/pygobuildinfo-0.1.23-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f64ffa7ce8f02a4223060c928a2a9d99bc9509a4a49802ef58aaee10a907137",
                "md5": "1264fc10ec240cc3908cad8dd5988da6",
                "sha256": "25c42728bf28b2b774500c381eb4322d06a2b8fe5a3ef29f51e768c3878df159"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1264fc10ec240cc3908cad8dd5988da6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1141484,
            "upload_time": "2024-12-14T10:40:52",
            "upload_time_iso_8601": "2024-12-14T10:40:52.801919Z",
            "url": "https://files.pythonhosted.org/packages/5f/64/ffa7ce8f02a4223060c928a2a9d99bc9509a4a49802ef58aaee10a907137/pygobuildinfo-0.1.23-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b488575ad91a25dea89d0e08cdad3f993bd6c0c1810556895c67df9ad9bf3102",
                "md5": "7b17fc170c5f908a9aba2d36b2209bbc",
                "sha256": "b2e5782cddfbb9d81a7b962c5dd8bd9c227a43cd3301bb7dd2525f123e1b2390"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7b17fc170c5f908a9aba2d36b2209bbc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1138438,
            "upload_time": "2024-12-14T10:40:55",
            "upload_time_iso_8601": "2024-12-14T10:40:55.471305Z",
            "url": "https://files.pythonhosted.org/packages/b4/88/575ad91a25dea89d0e08cdad3f993bd6c0c1810556895c67df9ad9bf3102/pygobuildinfo-0.1.23-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f59f3c06473858bb4eb290385a334c28322f19846b6de0452570dfac287dce70",
                "md5": "00bc21eeb02f83e28d305bb25247c691",
                "sha256": "caac62b74061b27e727a901fa90b0af5ad1a0b3de6a69112b344747699d4b869"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "00bc21eeb02f83e28d305bb25247c691",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1117504,
            "upload_time": "2024-12-14T10:40:57",
            "upload_time_iso_8601": "2024-12-14T10:40:57.281716Z",
            "url": "https://files.pythonhosted.org/packages/f5/9f/3c06473858bb4eb290385a334c28322f19846b6de0452570dfac287dce70/pygobuildinfo-0.1.23-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bcf8fc5e65142f78cdcf66eb4da393a4e35840b586837548d04d44a40e3872c",
                "md5": "8f840c63aea38d8761ae2c4585bc6cc7",
                "sha256": "75a85f24cf786243361fda8c3d2dd4c828bf2f2d213af3cff8d8007ce9f0e15e"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8f840c63aea38d8761ae2c4585bc6cc7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1054009,
            "upload_time": "2024-12-14T10:40:58",
            "upload_time_iso_8601": "2024-12-14T10:40:58.833945Z",
            "url": "https://files.pythonhosted.org/packages/1b/cf/8fc5e65142f78cdcf66eb4da393a4e35840b586837548d04d44a40e3872c/pygobuildinfo-0.1.23-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e803076a0a4f6b6090389080d373fb8288ed9941ac9237c7e1232c3e1d50174c",
                "md5": "175f0b68f668710894186d2d704cb1ea",
                "sha256": "b5d743e17c9ee96c2431a42560d910a6d99aa62d902e29cecade78ccb6a0f4f4"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "175f0b68f668710894186d2d704cb1ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1055429,
            "upload_time": "2024-12-14T10:41:02",
            "upload_time_iso_8601": "2024-12-14T10:41:02.214543Z",
            "url": "https://files.pythonhosted.org/packages/e8/03/076a0a4f6b6090389080d373fb8288ed9941ac9237c7e1232c3e1d50174c/pygobuildinfo-0.1.23-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6566b712f39e95a01a50adb6e7770791e52eb89de94c1191d072bb99024324ac",
                "md5": "7cff476669ce967bcb33a4eb565126a1",
                "sha256": "76815fc38e38801ec92f0b531a884f83fd6464f069238dc86149ef067827eeb5"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7cff476669ce967bcb33a4eb565126a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1141745,
            "upload_time": "2024-12-14T10:41:03",
            "upload_time_iso_8601": "2024-12-14T10:41:03.878762Z",
            "url": "https://files.pythonhosted.org/packages/65/66/b712f39e95a01a50adb6e7770791e52eb89de94c1191d072bb99024324ac/pygobuildinfo-0.1.23-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed316b549adff913ca9852f73508055ccb0dac450dd786e288efa9cc40490151",
                "md5": "cbc0a4598702a349ae523afe72ce1c10",
                "sha256": "4b44b6effa1b1bc61ca9c3cdba53a3d4fc5cbf969ca80f8cf6052ee8e3a8e714"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cbc0a4598702a349ae523afe72ce1c10",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1054605,
            "upload_time": "2024-12-14T10:41:06",
            "upload_time_iso_8601": "2024-12-14T10:41:06.989832Z",
            "url": "https://files.pythonhosted.org/packages/ed/31/6b549adff913ca9852f73508055ccb0dac450dd786e288efa9cc40490151/pygobuildinfo-0.1.23-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9af4fd8537d0d2b40c78ebc274cc679e5f057afbf638d625b47a004c81ec9fdb",
                "md5": "8f967bdacdc4c7dd78a56dce951bfc93",
                "sha256": "8caae09abd97aef170ad78d0e39c633f12dfb8c96d43bbdde9769c744dab6787"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f967bdacdc4c7dd78a56dce951bfc93",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1141495,
            "upload_time": "2024-12-14T10:41:08",
            "upload_time_iso_8601": "2024-12-14T10:41:08.802981Z",
            "url": "https://files.pythonhosted.org/packages/9a/f4/fd8537d0d2b40c78ebc274cc679e5f057afbf638d625b47a004c81ec9fdb/pygobuildinfo-0.1.23-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84403d8580635b6613db0095dca98868c93ee39668454babb6da18305b1a0308",
                "md5": "671c2593023cf909e463c8ab61484ecf",
                "sha256": "f0c5c42f739e03528be0c913e545466c47d3d0db7682de6e4003842b963496f5"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "671c2593023cf909e463c8ab61484ecf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1138442,
            "upload_time": "2024-12-14T10:41:11",
            "upload_time_iso_8601": "2024-12-14T10:41:11.771765Z",
            "url": "https://files.pythonhosted.org/packages/84/40/3d8580635b6613db0095dca98868c93ee39668454babb6da18305b1a0308/pygobuildinfo-0.1.23-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84e3fe276adb3726da0c2458130d931ff600f1793dcf45d3bc40651b56e348cb",
                "md5": "b501721c600eee77dc14e3ee4f5f9d9d",
                "sha256": "bed3b0498e93e3d15f1727f9ff7179a0d5813ba7793c065befd12f9f06a92474"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b501721c600eee77dc14e3ee4f5f9d9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1117505,
            "upload_time": "2024-12-14T10:41:14",
            "upload_time_iso_8601": "2024-12-14T10:41:14.341081Z",
            "url": "https://files.pythonhosted.org/packages/84/e3/fe276adb3726da0c2458130d931ff600f1793dcf45d3bc40651b56e348cb/pygobuildinfo-0.1.23-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c87f49dbc14cda39a0a81259edd3a2635e8431d2f46ce2e6f9c02be1b8d847b8",
                "md5": "d2eb46782f19e483b4914daca5ef08ef",
                "sha256": "5b1090e552cef459fbeaeb681ed7cbedbadc0abc6b697958cfea3916cda110a7"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d2eb46782f19e483b4914daca5ef08ef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1054003,
            "upload_time": "2024-12-14T10:41:17",
            "upload_time_iso_8601": "2024-12-14T10:41:17.511376Z",
            "url": "https://files.pythonhosted.org/packages/c8/7f/49dbc14cda39a0a81259edd3a2635e8431d2f46ce2e6f9c02be1b8d847b8/pygobuildinfo-0.1.23-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6068af8c6745f07ed53204c0bf6b7bc741545b08392e7351b443cb98798bf1df",
                "md5": "095b3d5230f4d6e15d5d30f82559b0d1",
                "sha256": "17aaf018d6310cf1c861fa4dacc9f974827e0919789d5e7769d729806514d199"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "095b3d5230f4d6e15d5d30f82559b0d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1055428,
            "upload_time": "2024-12-14T10:41:20",
            "upload_time_iso_8601": "2024-12-14T10:41:20.337713Z",
            "url": "https://files.pythonhosted.org/packages/60/68/af8c6745f07ed53204c0bf6b7bc741545b08392e7351b443cb98798bf1df/pygobuildinfo-0.1.23-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8e0c9a1262ea35d78cfc89962c53e11b3f0b05f434d9f14a733a9f1537ffb96",
                "md5": "c57c6afad9899474167b5c997f7567f5",
                "sha256": "8bb0a1541a068b5a3c316d8d8f5589908869267ee7562230275fabfb9cd8363e"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c57c6afad9899474167b5c997f7567f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1141740,
            "upload_time": "2024-12-14T10:41:23",
            "upload_time_iso_8601": "2024-12-14T10:41:23.318707Z",
            "url": "https://files.pythonhosted.org/packages/b8/e0/c9a1262ea35d78cfc89962c53e11b3f0b05f434d9f14a733a9f1537ffb96/pygobuildinfo-0.1.23-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9de40d89e97faa4f8f03b74ce7cf8db189aab806affcc95b58adb8395830766f",
                "md5": "568f01f0b73c8bd6ef4210f5d959aa11",
                "sha256": "09c19d15a6d03bc5e360a4046b457f2dc9e38e11b50c02b1391375f3d59c137b"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "568f01f0b73c8bd6ef4210f5d959aa11",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1054605,
            "upload_time": "2024-12-14T10:41:24",
            "upload_time_iso_8601": "2024-12-14T10:41:24.883068Z",
            "url": "https://files.pythonhosted.org/packages/9d/e4/0d89e97faa4f8f03b74ce7cf8db189aab806affcc95b58adb8395830766f/pygobuildinfo-0.1.23-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ce18df989608c1f87109595b77c68556bb3e869e46e978d68236b35b60753234",
                "md5": "1c86b9461c1227efcccedf880a0c6a57",
                "sha256": "c1e0cabf834076c7bd5142d5d3546b14941701fa4f6dfbe98c7acee1338ddac1"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1c86b9461c1227efcccedf880a0c6a57",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1141493,
            "upload_time": "2024-12-14T10:41:26",
            "upload_time_iso_8601": "2024-12-14T10:41:26.818026Z",
            "url": "https://files.pythonhosted.org/packages/ce/18/df989608c1f87109595b77c68556bb3e869e46e978d68236b35b60753234/pygobuildinfo-0.1.23-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d9f49ab07f94e4132415e84436dd7679496af40f7105dd91092ea25977da8d08",
                "md5": "bdd5b4e2c5ae8924394649e27c357fef",
                "sha256": "d2b7939ea81fa2ec0a6b764da0f291d1c6f1c90b180a94527485d270a6e42a58"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "bdd5b4e2c5ae8924394649e27c357fef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1138492,
            "upload_time": "2024-12-14T10:41:29",
            "upload_time_iso_8601": "2024-12-14T10:41:29.325592Z",
            "url": "https://files.pythonhosted.org/packages/d9/f4/9ab07f94e4132415e84436dd7679496af40f7105dd91092ea25977da8d08/pygobuildinfo-0.1.23-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6154e39271c4b87cc3190096351f6e51b2b1d7766d4e26cb1b6920d49da540d4",
                "md5": "05bf7f89ed53d370c8dd93b1877eadaa",
                "sha256": "7f7db923c9df13e20fb8df9674e266408c02952201144380faf48195306fc134"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05bf7f89ed53d370c8dd93b1877eadaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1117510,
            "upload_time": "2024-12-14T10:41:32",
            "upload_time_iso_8601": "2024-12-14T10:41:32.837306Z",
            "url": "https://files.pythonhosted.org/packages/61/54/e39271c4b87cc3190096351f6e51b2b1d7766d4e26cb1b6920d49da540d4/pygobuildinfo-0.1.23-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b0c520471ea314aa6aa6884962a3b3c6a8483efd62a83acfa3a75f1c3f36181",
                "md5": "b8c5318be9cdb33a0ca34c4ee1042ef5",
                "sha256": "28c80b01193873bf6110508d40dc6b6cea2645f8af0801af255d836babbf1472"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b8c5318be9cdb33a0ca34c4ee1042ef5",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1054003,
            "upload_time": "2024-12-14T10:41:34",
            "upload_time_iso_8601": "2024-12-14T10:41:34.423995Z",
            "url": "https://files.pythonhosted.org/packages/7b/0c/520471ea314aa6aa6884962a3b3c6a8483efd62a83acfa3a75f1c3f36181/pygobuildinfo-0.1.23-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "699b5d7eb4b3c6d27b53b6284def614712dd7bfcd3b868b8890db6c80933edc5",
                "md5": "6500279e866947d01b68c8f228a971b2",
                "sha256": "6935de9cf09c8fdc2142f46d889804ef861a15becb670f1b79fdc901015500a9"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6500279e866947d01b68c8f228a971b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1055430,
            "upload_time": "2024-12-14T10:41:36",
            "upload_time_iso_8601": "2024-12-14T10:41:36.068935Z",
            "url": "https://files.pythonhosted.org/packages/69/9b/5d7eb4b3c6d27b53b6284def614712dd7bfcd3b868b8890db6c80933edc5/pygobuildinfo-0.1.23-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84064838368e37568dc4e020e8475c173fd0ecb4f193adc0ecfac7422e1a33ad",
                "md5": "90fd07d054bb3502445fefffc8461c02",
                "sha256": "600b96ba7f19574cc2108bf3c3390d1e0707072a709ec2849f7b97b90d9bf8e5"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "90fd07d054bb3502445fefffc8461c02",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1141740,
            "upload_time": "2024-12-14T10:41:37",
            "upload_time_iso_8601": "2024-12-14T10:41:37.606330Z",
            "url": "https://files.pythonhosted.org/packages/84/06/4838368e37568dc4e020e8475c173fd0ecb4f193adc0ecfac7422e1a33ad/pygobuildinfo-0.1.23-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f257dd9061813e274ae2014777646c9d31408b3700f7b47b9c33f7ddebeb0595",
                "md5": "9987ebbc897cf5828b7ba68d80be6e79",
                "sha256": "318e77ebfc5932ef274f58766db74573436f9aa5cd01cfb7a84177c9e99b8493"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "9987ebbc897cf5828b7ba68d80be6e79",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1054598,
            "upload_time": "2024-12-14T10:41:39",
            "upload_time_iso_8601": "2024-12-14T10:41:39.261779Z",
            "url": "https://files.pythonhosted.org/packages/f2/57/dd9061813e274ae2014777646c9d31408b3700f7b47b9c33f7ddebeb0595/pygobuildinfo-0.1.23-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5299b4e73aba22e7a2aa26d8414d503967313cdab291cb3c5344eb57b886f148",
                "md5": "bf9696ec3fe7587fa5b0aa35cff4faa0",
                "sha256": "57b8d6642261aa820cae41ac8e8682539ae12a41b63cb27221653ed979100031"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf9696ec3fe7587fa5b0aa35cff4faa0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1141499,
            "upload_time": "2024-12-14T10:41:40",
            "upload_time_iso_8601": "2024-12-14T10:41:40.925467Z",
            "url": "https://files.pythonhosted.org/packages/52/99/b4e73aba22e7a2aa26d8414d503967313cdab291cb3c5344eb57b886f148/pygobuildinfo-0.1.23-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4e05edfba0b30807e2326e5a8cf7ce2102e071b4f0b036feee1d2ec65e654664",
                "md5": "2c458fed8f254129873e393fc99a30bf",
                "sha256": "7e7acd4a518c6799046e2ca03eb2e45888a148d954655eee5a49f8a90b8d644c"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2c458fed8f254129873e393fc99a30bf",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1138440,
            "upload_time": "2024-12-14T10:41:42",
            "upload_time_iso_8601": "2024-12-14T10:41:42.358565Z",
            "url": "https://files.pythonhosted.org/packages/4e/05/edfba0b30807e2326e5a8cf7ce2102e071b4f0b036feee1d2ec65e654664/pygobuildinfo-0.1.23-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea82f4de68e506510ee54a49d0027d5f26af3a3e5b31e97f5b849aca315ffb31",
                "md5": "ddfca0783693f22ba252938f01d263c0",
                "sha256": "3931b4e8a16670521166f19865436dd4c2d9211665123bc532815c0c2f9005f6"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ddfca0783693f22ba252938f01d263c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1116866,
            "upload_time": "2024-12-14T10:41:43",
            "upload_time_iso_8601": "2024-12-14T10:41:43.887379Z",
            "url": "https://files.pythonhosted.org/packages/ea/82/f4de68e506510ee54a49d0027d5f26af3a3e5b31e97f5b849aca315ffb31/pygobuildinfo-0.1.23-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "751b9483e09f2fb62adfda733fc6da60fad2f5ed182f09f5e526822412ebf8c4",
                "md5": "4f361d91339206eb40ee40053ecdb2d1",
                "sha256": "af162c069e2d3db7c29104902455ba8c02f8179c0f98a135279cd10e88c26edc"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4f361d91339206eb40ee40053ecdb2d1",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1055428,
            "upload_time": "2024-12-14T10:41:45",
            "upload_time_iso_8601": "2024-12-14T10:41:45.564768Z",
            "url": "https://files.pythonhosted.org/packages/75/1b/9483e09f2fb62adfda733fc6da60fad2f5ed182f09f5e526822412ebf8c4/pygobuildinfo-0.1.23-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1bf6ec3e4a08fc5909b53f82451b9a81af2fe5ae707458688d8abb8e0def2c6a",
                "md5": "57261661372e5b8e1a546927acc649fb",
                "sha256": "31a819f64264e739ebf74acdb59dc3ebf3324c7e6b3a5a30b75424c4c54463a7"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57261661372e5b8e1a546927acc649fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1141739,
            "upload_time": "2024-12-14T10:41:47",
            "upload_time_iso_8601": "2024-12-14T10:41:47.110033Z",
            "url": "https://files.pythonhosted.org/packages/1b/f6/ec3e4a08fc5909b53f82451b9a81af2fe5ae707458688d8abb8e0def2c6a/pygobuildinfo-0.1.23-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f38df76aaf5f55123aa88d623c4f65483bf16e35fedbf26a41eb15cc351645c",
                "md5": "92358e0fb14e0584cbbb2fbc1a172233",
                "sha256": "dbca2f07052c74cbb7bfbf4048fb390e3e22fa156c81d4b1c007b0c53a811a0d"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "92358e0fb14e0584cbbb2fbc1a172233",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1054584,
            "upload_time": "2024-12-14T10:41:48",
            "upload_time_iso_8601": "2024-12-14T10:41:48.708079Z",
            "url": "https://files.pythonhosted.org/packages/7f/38/df76aaf5f55123aa88d623c4f65483bf16e35fedbf26a41eb15cc351645c/pygobuildinfo-0.1.23-cp36-cp36m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4e9a71ac42522f9a66ab6b158c1e74996f3a21bf8c9c97d91d51f656c956fed",
                "md5": "32fd347992436ba29c2021d63a00d28b",
                "sha256": "a6572145661c257a9aa202b1f80a3dbb2440ad6fecbd4a918d90fc46ff688cc5"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "32fd347992436ba29c2021d63a00d28b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 1141499,
            "upload_time": "2024-12-14T10:41:50",
            "upload_time_iso_8601": "2024-12-14T10:41:50.280986Z",
            "url": "https://files.pythonhosted.org/packages/c4/e9/a71ac42522f9a66ab6b158c1e74996f3a21bf8c9c97d91d51f656c956fed/pygobuildinfo-0.1.23-cp36-cp36m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e93e0d043c2b9f1611244104241b9983795294b0bd731bd943bad8226952203b",
                "md5": "6522c91e837efaedc7d0d606da648dfa",
                "sha256": "5255fd2de7208e4a14ff51f54717411db21fc59ad5206edbb358f19628ce8e52"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6522c91e837efaedc7d0d606da648dfa",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1117500,
            "upload_time": "2024-12-14T10:41:51",
            "upload_time_iso_8601": "2024-12-14T10:41:51.775698Z",
            "url": "https://files.pythonhosted.org/packages/e9/3e/0d043c2b9f1611244104241b9983795294b0bd731bd943bad8226952203b/pygobuildinfo-0.1.23-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab31b6b431509d2c430ea87cd11bed83f3b6636706c4deeefe60fa66333632e8",
                "md5": "6b1dcc2080a1826e736af2e60d9d1be0",
                "sha256": "c3e33c8fa2d53123b6f58b5c092f74ca58faf6d72cff90c889c16c639ff4a0fb"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6b1dcc2080a1826e736af2e60d9d1be0",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1055430,
            "upload_time": "2024-12-14T10:41:53",
            "upload_time_iso_8601": "2024-12-14T10:41:53.194326Z",
            "url": "https://files.pythonhosted.org/packages/ab/31/b6b431509d2c430ea87cd11bed83f3b6636706c4deeefe60fa66333632e8/pygobuildinfo-0.1.23-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c1f06b67237452955529d0084d221f7149ee744e68137ef1d1f3516cff68ce6",
                "md5": "988ec96a09b4817094bf71e6ee23d7b1",
                "sha256": "5435d25948a7f98756be77c0a2f637fc18c91d1f06ebbe348dc5bec93815f684"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "988ec96a09b4817094bf71e6ee23d7b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1141748,
            "upload_time": "2024-12-14T10:41:54",
            "upload_time_iso_8601": "2024-12-14T10:41:54.771809Z",
            "url": "https://files.pythonhosted.org/packages/3c/1f/06b67237452955529d0084d221f7149ee744e68137ef1d1f3516cff68ce6/pygobuildinfo-0.1.23-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "deca38da79d994ff862bc945962b38daeed3a5bfd18b7dc73e1e9cb7f9330262",
                "md5": "23486aea324f3678f40cab1e4d7b002f",
                "sha256": "e87b0ad606ab9197717426373a72862c6301b6ff36fa20019a9e57777d084130"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "23486aea324f3678f40cab1e4d7b002f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1054598,
            "upload_time": "2024-12-14T10:41:56",
            "upload_time_iso_8601": "2024-12-14T10:41:56.294224Z",
            "url": "https://files.pythonhosted.org/packages/de/ca/38da79d994ff862bc945962b38daeed3a5bfd18b7dc73e1e9cb7f9330262/pygobuildinfo-0.1.23-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3a661802d92ea33691ca1f8ffbea03513a66394a43c97903aeace105393acfdb",
                "md5": "0f95cffc2b89c28078bfe1edeb2e0d67",
                "sha256": "4ee1003d3fd96852ef9c641e3b25acbf6c60f2155f6b915df1b9e77cf1374f3f"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f95cffc2b89c28078bfe1edeb2e0d67",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 1141500,
            "upload_time": "2024-12-14T10:41:57",
            "upload_time_iso_8601": "2024-12-14T10:41:57.805579Z",
            "url": "https://files.pythonhosted.org/packages/3a/66/1802d92ea33691ca1f8ffbea03513a66394a43c97903aeace105393acfdb/pygobuildinfo-0.1.23-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3edfd6c8ad922cf1453d61a552dbd87e5f2711c05a0ec4a069d100ecf49e51ff",
                "md5": "041ea354a274966df80d8ce6dd7548af",
                "sha256": "1292d3336b3734e523eaa574822b0e2faee4c50fade2f1f3a31fda7a90702302"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "041ea354a274966df80d8ce6dd7548af",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1117495,
            "upload_time": "2024-12-14T10:41:59",
            "upload_time_iso_8601": "2024-12-14T10:41:59.309604Z",
            "url": "https://files.pythonhosted.org/packages/3e/df/d6c8ad922cf1453d61a552dbd87e5f2711c05a0ec4a069d100ecf49e51ff/pygobuildinfo-0.1.23-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2d8f0199d2d260b99a2ba1c2212c0a3863da4d0a839b2e61ba4d16101504078",
                "md5": "75136e2343db3db150e4c523c7965a29",
                "sha256": "9f0c53fd3a5857465c9beb5eb3f2103e9131d59e80081acb0d1723ea1331dd4e"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "75136e2343db3db150e4c523c7965a29",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1054001,
            "upload_time": "2024-12-14T10:42:00",
            "upload_time_iso_8601": "2024-12-14T10:42:00.870213Z",
            "url": "https://files.pythonhosted.org/packages/c2/d8/f0199d2d260b99a2ba1c2212c0a3863da4d0a839b2e61ba4d16101504078/pygobuildinfo-0.1.23-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90d7b0ec999692b1d5450568d27a83a4ab52752eff6cb541b67ee033fde1f634",
                "md5": "94a666dfcec01d28b3b76c71672e04f2",
                "sha256": "306340b8f90e8978d1fd3364ace8db5366e70ce98c49e352b7e1ea17a0bbd2bd"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "94a666dfcec01d28b3b76c71672e04f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1055426,
            "upload_time": "2024-12-14T10:42:02",
            "upload_time_iso_8601": "2024-12-14T10:42:02.505726Z",
            "url": "https://files.pythonhosted.org/packages/90/d7/b0ec999692b1d5450568d27a83a4ab52752eff6cb541b67ee033fde1f634/pygobuildinfo-0.1.23-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34e02e5eeaab5f8554af91aead0745eb5f913d3cae0b061ad8450c28839ac689",
                "md5": "9d471a283f30bec36cec1d04d241b637",
                "sha256": "fce875eb7d3fe46c34df752208b324a2b3a0aa5e9a4307b2c729b6009a88efcd"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d471a283f30bec36cec1d04d241b637",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1141741,
            "upload_time": "2024-12-14T10:42:04",
            "upload_time_iso_8601": "2024-12-14T10:42:04.030227Z",
            "url": "https://files.pythonhosted.org/packages/34/e0/2e5eeaab5f8554af91aead0745eb5f913d3cae0b061ad8450c28839ac689/pygobuildinfo-0.1.23-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "563ec15889e6551f8bc908cf6af2b6f099bc7010459db8fb80fd3c9a5e9d0092",
                "md5": "fe0b46b24d5e201d58d089c12500ac07",
                "sha256": "f4b65058369a9ffa3574694e68d8f9afbf83983f833bf231760cdce65718867d"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fe0b46b24d5e201d58d089c12500ac07",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1054591,
            "upload_time": "2024-12-14T10:42:05",
            "upload_time_iso_8601": "2024-12-14T10:42:05.723014Z",
            "url": "https://files.pythonhosted.org/packages/56/3e/c15889e6551f8bc908cf6af2b6f099bc7010459db8fb80fd3c9a5e9d0092/pygobuildinfo-0.1.23-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c702fd93322ca30a67964fe296ce3a37e331bd49461593ab34ea923b8047b5f",
                "md5": "326d097c41169da8dc39b62b9ee5dd39",
                "sha256": "898babed368825807f0625708159b7082bb226560e6b0b2b4bef2c94612df33d"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "326d097c41169da8dc39b62b9ee5dd39",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1141488,
            "upload_time": "2024-12-14T10:42:07",
            "upload_time_iso_8601": "2024-12-14T10:42:07.418628Z",
            "url": "https://files.pythonhosted.org/packages/8c/70/2fd93322ca30a67964fe296ce3a37e331bd49461593ab34ea923b8047b5f/pygobuildinfo-0.1.23-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f125c423d0b676815274dba4333a2d22fe2b555a08d6832c52a98312e66bbccb",
                "md5": "8d96a1a3bffebc19960da9b9534798b2",
                "sha256": "41bda543570cbc7c39ef607ef1c5ee33ac31fe51e891d79e4021a1b57487458c"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8d96a1a3bffebc19960da9b9534798b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1138489,
            "upload_time": "2024-12-14T10:42:10",
            "upload_time_iso_8601": "2024-12-14T10:42:10.091433Z",
            "url": "https://files.pythonhosted.org/packages/f1/25/c423d0b676815274dba4333a2d22fe2b555a08d6832c52a98312e66bbccb/pygobuildinfo-0.1.23-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dba6ae178240e093fe62ffee5c2c20fba6f2a72ce35e20086d1948af242912d7",
                "md5": "4a581361ffc61a32e759f2e1b1474026",
                "sha256": "846252812229d244e58f8297774cfe0c6a92f88ccddbe7eedec3ea0e8671d77f"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4a581361ffc61a32e759f2e1b1474026",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1117492,
            "upload_time": "2024-12-14T10:42:11",
            "upload_time_iso_8601": "2024-12-14T10:42:11.667503Z",
            "url": "https://files.pythonhosted.org/packages/db/a6/ae178240e093fe62ffee5c2c20fba6f2a72ce35e20086d1948af242912d7/pygobuildinfo-0.1.23-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "71a10661ddbcb47760241f381fdf5a55ff3812c62f420129863f1621640b0b1b",
                "md5": "913cb7d4d058da4b8ab89ac9c1d0ceaa",
                "sha256": "15eb6cac909272d61bcbd721d3b0a0b64da753369fa857cccac2213c9916879b"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "913cb7d4d058da4b8ab89ac9c1d0ceaa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1053998,
            "upload_time": "2024-12-14T10:42:13",
            "upload_time_iso_8601": "2024-12-14T10:42:13.284586Z",
            "url": "https://files.pythonhosted.org/packages/71/a1/0661ddbcb47760241f381fdf5a55ff3812c62f420129863f1621640b0b1b/pygobuildinfo-0.1.23-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85c1a3fcfccbc8b585f5dde90dbd18d3cb7c7ca50e89baffe2a62dd0210b5d91",
                "md5": "e8c1695d08aca15912b6a6b80603c359",
                "sha256": "ee1cd42c2be6e07ebf7fe467721f630f7951d7bbc368d53665dc3ad91f284959"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e8c1695d08aca15912b6a6b80603c359",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1055423,
            "upload_time": "2024-12-14T10:42:14",
            "upload_time_iso_8601": "2024-12-14T10:42:14.812491Z",
            "url": "https://files.pythonhosted.org/packages/85/c1/a3fcfccbc8b585f5dde90dbd18d3cb7c7ca50e89baffe2a62dd0210b5d91/pygobuildinfo-0.1.23-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ca543cc2048ab663cab1054ad81f28d0bd46d98196a04937dbd0bea815726fe",
                "md5": "2704fddf7240e125b2889a4217ac5a1e",
                "sha256": "fc47811b7882f204fff3b317b299d6fd113cd2c6b8f3de21818fac8f16bf3a2d"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2704fddf7240e125b2889a4217ac5a1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1141740,
            "upload_time": "2024-12-14T10:42:17",
            "upload_time_iso_8601": "2024-12-14T10:42:17.778930Z",
            "url": "https://files.pythonhosted.org/packages/6c/a5/43cc2048ab663cab1054ad81f28d0bd46d98196a04937dbd0bea815726fe/pygobuildinfo-0.1.23-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "846bfc6028deb0af61d51d171a63a0e00eb0f2f24cdc7d56e416dd0c6608971d",
                "md5": "002b62defd5704a7f0fb21bb28e811f3",
                "sha256": "924f7d934e44d207ab70ae2aa75bec4a196b42765760260e40c5ec79f29bf858"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "002b62defd5704a7f0fb21bb28e811f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1054586,
            "upload_time": "2024-12-14T10:42:19",
            "upload_time_iso_8601": "2024-12-14T10:42:19.421803Z",
            "url": "https://files.pythonhosted.org/packages/84/6b/fc6028deb0af61d51d171a63a0e00eb0f2f24cdc7d56e416dd0c6608971d/pygobuildinfo-0.1.23-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1952efdbcc0116ca95ec03fb04dd44cce5489f0fe33ade0e3cb9b8abca09d66a",
                "md5": "a2d22d62cf6eb77614bf47a5f8e1eba2",
                "sha256": "9e389b5e325b478945f6e0b112fd875ac30b86e6a939f4462adf8fe107f0564b"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a2d22d62cf6eb77614bf47a5f8e1eba2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1141488,
            "upload_time": "2024-12-14T10:42:20",
            "upload_time_iso_8601": "2024-12-14T10:42:20.967467Z",
            "url": "https://files.pythonhosted.org/packages/19/52/efdbcc0116ca95ec03fb04dd44cce5489f0fe33ade0e3cb9b8abca09d66a/pygobuildinfo-0.1.23-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c6a6b2fb29c640b78fc6ca1e1e65dcd29484c3f5963e6ae2faae85eaa35fff4",
                "md5": "46b98f187af36c5d52822593def33a99",
                "sha256": "9ceca80587bbe3e92d52326a35b4a9422ede685a1a4586ef706b663ce055136a"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "46b98f187af36c5d52822593def33a99",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1138471,
            "upload_time": "2024-12-14T10:42:22",
            "upload_time_iso_8601": "2024-12-14T10:42:22.654160Z",
            "url": "https://files.pythonhosted.org/packages/3c/6a/6b2fb29c640b78fc6ca1e1e65dcd29484c3f5963e6ae2faae85eaa35fff4/pygobuildinfo-0.1.23-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "526dad74a48073e39deb0debc7e648e4cbd88d3773e83f9d54bde6e1be3b69b7",
                "md5": "a5c321c87c2575b03e669fc4607b7368",
                "sha256": "88b82f2b79571804fa481a5962b96d4ab77ddfea8de880ef29bf386e6e72952b"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5c321c87c2575b03e669fc4607b7368",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1117599,
            "upload_time": "2024-12-14T10:42:25",
            "upload_time_iso_8601": "2024-12-14T10:42:25.533385Z",
            "url": "https://files.pythonhosted.org/packages/52/6d/ad74a48073e39deb0debc7e648e4cbd88d3773e83f9d54bde6e1be3b69b7/pygobuildinfo-0.1.23-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f12155fff8b0a03ec461dffa704d2eba2037c0bfec02141a50bb46210ade2d0e",
                "md5": "4ed4adec1439079d4cb2b59fb06870c6",
                "sha256": "f9f2ee93dab3b1c59388307424960bff04d2270d6b095ab0f1f399eff8cecac3"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4ed4adec1439079d4cb2b59fb06870c6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1054036,
            "upload_time": "2024-12-14T10:42:27",
            "upload_time_iso_8601": "2024-12-14T10:42:27.199372Z",
            "url": "https://files.pythonhosted.org/packages/f1/21/55fff8b0a03ec461dffa704d2eba2037c0bfec02141a50bb46210ade2d0e/pygobuildinfo-0.1.23-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "075cc3aba34241e4107bb5f8843006651086bf19fe244f628a0bb64c49f8c34b",
                "md5": "12be9618a6ed8e364bd6482fbb3cb06c",
                "sha256": "c09488c68e5a9aeb6e860383c7bb1bbd4d073d08f957a840aae04134d5b491f5"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "12be9618a6ed8e364bd6482fbb3cb06c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1055434,
            "upload_time": "2024-12-14T10:42:29",
            "upload_time_iso_8601": "2024-12-14T10:42:29.959989Z",
            "url": "https://files.pythonhosted.org/packages/07/5c/c3aba34241e4107bb5f8843006651086bf19fe244f628a0bb64c49f8c34b/pygobuildinfo-0.1.23-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47328cc76d679ed5ed573baa466be68eb638e7dd5dda28d86423bf00749b1674",
                "md5": "740099dd9b272bcf94c9d394adf99419",
                "sha256": "34458737a3af85fc002f4e496353aae182fc3afba2af57668ef252b57acfd5ce"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "740099dd9b272bcf94c9d394adf99419",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1141752,
            "upload_time": "2024-12-14T10:42:31",
            "upload_time_iso_8601": "2024-12-14T10:42:31.499216Z",
            "url": "https://files.pythonhosted.org/packages/47/32/8cc76d679ed5ed573baa466be68eb638e7dd5dda28d86423bf00749b1674/pygobuildinfo-0.1.23-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "857d31c913cbfa16dade1fbca4df81742150db3b841616ac514751d2902981d3",
                "md5": "301e3c67b67395836f8fe0fd2b4fc34b",
                "sha256": "98732d375117a4771fe16e4be937a97b69d950ae3449845b07722688723d817c"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "301e3c67b67395836f8fe0fd2b4fc34b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1117526,
            "upload_time": "2024-12-14T10:42:34",
            "upload_time_iso_8601": "2024-12-14T10:42:34.184932Z",
            "url": "https://files.pythonhosted.org/packages/85/7d/31c913cbfa16dade1fbca4df81742150db3b841616ac514751d2902981d3/pygobuildinfo-0.1.23-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3388e687ab8dc8b59ad25881ad38cc76a42ffeb15db07c452849971b2ecd1fff",
                "md5": "7d749d4d510e1ddefde31932b863837b",
                "sha256": "8fcb992a744b15fc6451f0769f2030a1ffef123d3659ff314ce8381d3df52a8a"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "7d749d4d510e1ddefde31932b863837b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1054036,
            "upload_time": "2024-12-14T10:42:35",
            "upload_time_iso_8601": "2024-12-14T10:42:35.821430Z",
            "url": "https://files.pythonhosted.org/packages/33/88/e687ab8dc8b59ad25881ad38cc76a42ffeb15db07c452849971b2ecd1fff/pygobuildinfo-0.1.23-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9b266b37e7367b4d35735d33e11dae09d8af836bfb6da961593677f62740c16",
                "md5": "bae485a5264801b3cfc0c93a43bdbafd",
                "sha256": "8550b20a35c0212e9f77e533c1d256b14cd25977a838cc426ef6f5ad5e4641c4"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bae485a5264801b3cfc0c93a43bdbafd",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1055423,
            "upload_time": "2024-12-14T10:42:37",
            "upload_time_iso_8601": "2024-12-14T10:42:37.433409Z",
            "url": "https://files.pythonhosted.org/packages/a9/b2/66b37e7367b4d35735d33e11dae09d8af836bfb6da961593677f62740c16/pygobuildinfo-0.1.23-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "32ee7cb31da84fdb1e75be5717f64ae2a594809c9de653f08f2f04dad558a907",
                "md5": "5af5da17c54db1c412c3ba16cbd259a5",
                "sha256": "114f2c38321439617eabf327365d57bb2a19550204f67ee2561c68a124851064"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5af5da17c54db1c412c3ba16cbd259a5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1141740,
            "upload_time": "2024-12-14T10:42:40",
            "upload_time_iso_8601": "2024-12-14T10:42:40.131875Z",
            "url": "https://files.pythonhosted.org/packages/32/ee/7cb31da84fdb1e75be5717f64ae2a594809c9de653f08f2f04dad558a907/pygobuildinfo-0.1.23-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a75659ab33f634b27ecb0d7a94e5eced6d8913138417f39a555e3522ab52989",
                "md5": "4d1615314444d60fb0ea5d6b611546ac",
                "sha256": "68a32ff15c59f913acca6861055b5ae850563ac918dd50b91014c4d34dce16ac"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d1615314444d60fb0ea5d6b611546ac",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1117590,
            "upload_time": "2024-12-14T10:42:41",
            "upload_time_iso_8601": "2024-12-14T10:42:41.747903Z",
            "url": "https://files.pythonhosted.org/packages/4a/75/659ab33f634b27ecb0d7a94e5eced6d8913138417f39a555e3522ab52989/pygobuildinfo-0.1.23-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2deb229a9f16a413e80eb9bdfc86b0e62b695026640767bb5fece37f7362df8",
                "md5": "39d5d749c16f2d11661f279fb3a1ef3c",
                "sha256": "22e7f54d936c983494f258e2599c082db7b7f2cb8b72af00f7d2fd65a7036261"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "39d5d749c16f2d11661f279fb3a1ef3c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1054037,
            "upload_time": "2024-12-14T10:42:43",
            "upload_time_iso_8601": "2024-12-14T10:42:43.842868Z",
            "url": "https://files.pythonhosted.org/packages/e2/de/b229a9f16a413e80eb9bdfc86b0e62b695026640767bb5fece37f7362df8/pygobuildinfo-0.1.23-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23e95562b2e7f79d07962f0690c0b6ad40c95365edca286beb35635cdc697492",
                "md5": "df4b5437280818fb0d74503f82520509",
                "sha256": "2d56667443322f2631d8c9b6333af1d7b4082d66795d470f3431f4e256c8b998"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df4b5437280818fb0d74503f82520509",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1055425,
            "upload_time": "2024-12-14T10:42:45",
            "upload_time_iso_8601": "2024-12-14T10:42:45.527838Z",
            "url": "https://files.pythonhosted.org/packages/23/e9/5562b2e7f79d07962f0690c0b6ad40c95365edca286beb35635cdc697492/pygobuildinfo-0.1.23-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b8f9d3b230306bc7c989b94a1d85aac91f841250afcd9fbc009febb57114ab1",
                "md5": "1dc6b0802c8ebc2508bd1bf003c3d1ce",
                "sha256": "edf05e106fe995e8fb1f82e52ecb4634104d66bf3bf3cc28151b09039276ec5b"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1dc6b0802c8ebc2508bd1bf003c3d1ce",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1141745,
            "upload_time": "2024-12-14T10:42:47",
            "upload_time_iso_8601": "2024-12-14T10:42:47.281883Z",
            "url": "https://files.pythonhosted.org/packages/9b/8f/9d3b230306bc7c989b94a1d85aac91f841250afcd9fbc009febb57114ab1/pygobuildinfo-0.1.23-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36fd9466a306d070a93fb6b97e18a541176823080065574e32e5b619daceb3d3",
                "md5": "51925a1d4fa42994a48344e473182bdb",
                "sha256": "d3de589c674a82d76d652db533d3abfeca7ace0935d2538c1f46a44182153d64"
            },
            "downloads": -1,
            "filename": "pygobuildinfo-0.1.23.tar.gz",
            "has_sig": false,
            "md5_digest": "51925a1d4fa42994a48344e473182bdb",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 12740,
            "upload_time": "2024-12-14T10:42:51",
            "upload_time_iso_8601": "2024-12-14T10:42:51.819157Z",
            "url": "https://files.pythonhosted.org/packages/36/fd/9466a306d070a93fb6b97e18a541176823080065574e32e5b619daceb3d3/pygobuildinfo-0.1.23.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-14 10:42:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Mikemoore63",
    "github_project": "pybuildInfo",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pygobuildinfo"
}
        
Elapsed time: 0.48584s