pyrustaudit


Namepyrustaudit JSON
Version 0.0.11 PyPI version JSON
download
home_pagehttps://github.com/Mikemoore63/pyrustaudit
SummaryA utility to extract rust audit information from rust executable if audit enabled
upload_time2025-07-14 12:54:04
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 rust audit  information from rust audit based executables.


Example usage

```python

from pyrustaudit import get_rust_audit
import json


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


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

```

The result returned is always a dict object for errors  the dictionary returned contains a key;
"error" like;
```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 is rturned like this

```python
{
    "packages": [
        {
            "name": "adler",
            "version": "1.0.2",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "auditable",
            "version": "0.1.0",
            "source": "registry",
            "kind": "runtime",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "auditable-build",
            "version": "0.1.0",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                3,
                5,
                7,
                15
            ],
            "features": null,
            "root": false
        },
        {
            "name": "auditable-serde",
            "version": "0.1.0",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                5,
                11,
                13,
                15
            ],
            "features": [
                "cargo_metadata",
                "default",
                "from_metadata"
            ],
            "root": false
        },
        {
            "name": "autocfg",
            "version": "1.2.0",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "cargo_metadata",
            "version": "0.11.4",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                11,
                13,
                15
            ],
            "features": [
                "default"
            ],
            "root": false
        },
        {
            "name": "itoa",
            "version": "1.0.11",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "miniz_oxide",
            "version": "0.4.4",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                0,
                4
            ],
            "features": null,
            "root": false
        },
        {
            "name": "proc-macro2",
            "version": "1.0.79",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                18
            ],
            "features": [
                "proc-macro"
            ],
            "root": false
        },
        {
            "name": "quote",
            "version": "1.0.35",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                8
            ],
            "features": [
                "proc-macro"
            ],
            "root": false
        },
        {
            "name": "ryu",
            "version": "1.0.17",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "semver",
            "version": "0.10.0",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                12,
                13
            ],
            "features": [
                "default",
                "serde"
            ],
            "root": false
        },
        {
            "name": "semver-parser",
            "version": "0.7.0",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        },
        {
            "name": "serde",
            "version": "1.0.197",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                14
            ],
            "features": [
                "default",
                "derive",
                "serde_derive",
                "std"
            ],
            "root": false
        },
        {
            "name": "serde_derive",
            "version": "1.0.197",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                8,
                9,
                16
            ],
            "features": [
                "default"
            ],
            "root": false
        },
        {
            "name": "serde_json",
            "version": "1.0.115",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                6,
                10,
                13
            ],
            "features": [
                "default",
                "std"
            ],
            "root": false
        },
        {
            "name": "syn",
            "version": "2.0.58",
            "source": "registry",
            "kind": "build",
            "dependencies": [
                8,
                9,
                18
            ],
            "features": [
                "clone-impls",
                "derive",
                "parsing",
                "printing",
                "proc-macro"
            ],
            "root": false
        },
        {
            "name": "test-data",
            "version": "0.1.0",
            "source": "local",
            "kind": "runtime",
            "dependencies": [
                1,
                2
            ],
            "features": null,
            "root": false
        },
        {
            "name": "unicode-ident",
            "version": "1.0.12",
            "source": "registry",
            "kind": "build",
            "dependencies": null,
            "features": null,
            "root": false
        }
    ]
}

```



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Mikemoore63/pyrustaudit",
    "name": "pyrustaudit",
    "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/c1/bb/cd57a24d0b6159b32aea00d5bbee9a9da7b6aba0deeb2e0e4d52b99bde9e/pyrustaudit-0.0.11.tar.gz",
    "platform": null,
    "description": "A python package that extracts rust audit  information from rust audit based executables.\n\n\nExample usage\n\n```python\n\nfrom pyrustaudit import get_rust_audit\nimport json\n\n\ndef test_get_info(file):\n    res = get_rust_audit(file)\n    print(json.dumps(res, indent=4))\n\n\ntest_get_info(\"foo/bar\")\ntest_get_info(\"/usr/bin/du\")\ntest_get_info(\"test-data/centos5-plain-Packages\")\n\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 is rturned like this\n\n```python\n{\n    \"packages\": [\n        {\n            \"name\": \"adler\",\n            \"version\": \"1.0.2\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": null,\n            \"features\": null,\n            \"root\": false\n        },\n        {\n            \"name\": \"auditable\",\n            \"version\": \"0.1.0\",\n            \"source\": \"registry\",\n            \"kind\": \"runtime\",\n            \"dependencies\": null,\n            \"features\": null,\n            \"root\": false\n        },\n        {\n            \"name\": \"auditable-build\",\n            \"version\": \"0.1.0\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                3,\n                5,\n                7,\n                15\n            ],\n            \"features\": null,\n            \"root\": false\n        },\n        {\n            \"name\": \"auditable-serde\",\n            \"version\": \"0.1.0\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                5,\n                11,\n                13,\n                15\n            ],\n            \"features\": [\n                \"cargo_metadata\",\n                \"default\",\n                \"from_metadata\"\n            ],\n            \"root\": false\n        },\n        {\n            \"name\": \"autocfg\",\n            \"version\": \"1.2.0\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": null,\n            \"features\": null,\n            \"root\": false\n        },\n        {\n            \"name\": \"cargo_metadata\",\n            \"version\": \"0.11.4\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                11,\n                13,\n                15\n            ],\n            \"features\": [\n                \"default\"\n            ],\n            \"root\": false\n        },\n        {\n            \"name\": \"itoa\",\n            \"version\": \"1.0.11\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": null,\n            \"features\": null,\n            \"root\": false\n        },\n        {\n            \"name\": \"miniz_oxide\",\n            \"version\": \"0.4.4\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                0,\n                4\n            ],\n            \"features\": null,\n            \"root\": false\n        },\n        {\n            \"name\": \"proc-macro2\",\n            \"version\": \"1.0.79\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                18\n            ],\n            \"features\": [\n                \"proc-macro\"\n            ],\n            \"root\": false\n        },\n        {\n            \"name\": \"quote\",\n            \"version\": \"1.0.35\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                8\n            ],\n            \"features\": [\n                \"proc-macro\"\n            ],\n            \"root\": false\n        },\n        {\n            \"name\": \"ryu\",\n            \"version\": \"1.0.17\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": null,\n            \"features\": null,\n            \"root\": false\n        },\n        {\n            \"name\": \"semver\",\n            \"version\": \"0.10.0\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                12,\n                13\n            ],\n            \"features\": [\n                \"default\",\n                \"serde\"\n            ],\n            \"root\": false\n        },\n        {\n            \"name\": \"semver-parser\",\n            \"version\": \"0.7.0\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": null,\n            \"features\": null,\n            \"root\": false\n        },\n        {\n            \"name\": \"serde\",\n            \"version\": \"1.0.197\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                14\n            ],\n            \"features\": [\n                \"default\",\n                \"derive\",\n                \"serde_derive\",\n                \"std\"\n            ],\n            \"root\": false\n        },\n        {\n            \"name\": \"serde_derive\",\n            \"version\": \"1.0.197\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                8,\n                9,\n                16\n            ],\n            \"features\": [\n                \"default\"\n            ],\n            \"root\": false\n        },\n        {\n            \"name\": \"serde_json\",\n            \"version\": \"1.0.115\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                6,\n                10,\n                13\n            ],\n            \"features\": [\n                \"default\",\n                \"std\"\n            ],\n            \"root\": false\n        },\n        {\n            \"name\": \"syn\",\n            \"version\": \"2.0.58\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": [\n                8,\n                9,\n                18\n            ],\n            \"features\": [\n                \"clone-impls\",\n                \"derive\",\n                \"parsing\",\n                \"printing\",\n                \"proc-macro\"\n            ],\n            \"root\": false\n        },\n        {\n            \"name\": \"test-data\",\n            \"version\": \"0.1.0\",\n            \"source\": \"local\",\n            \"kind\": \"runtime\",\n            \"dependencies\": [\n                1,\n                2\n            ],\n            \"features\": null,\n            \"root\": false\n        },\n        {\n            \"name\": \"unicode-ident\",\n            \"version\": \"1.0.12\",\n            \"source\": \"registry\",\n            \"kind\": \"build\",\n            \"dependencies\": null,\n            \"features\": null,\n            \"root\": false\n        }\n    ]\n}\n\n```\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A utility to extract rust audit  information from rust executable if audit enabled",
    "version": "0.0.11",
    "project_urls": {
        "Homepage": "https://github.com/Mikemoore63/pyrustaudit"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ff5f54440c7fd783d629e3de14fa53ef10a6bdecac9e0ba0b7ef77ee3b05c01d",
                "md5": "bc3c87f18824869610d3401aaa775c31",
                "sha256": "d253034b9dafd264de66b7a79134ff20eae88b6362cc25d60fbe3040e59e84fd"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bc3c87f18824869610d3401aaa775c31",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1029418,
            "upload_time": "2025-07-14T12:52:25",
            "upload_time_iso_8601": "2025-07-14T12:52:25.160767Z",
            "url": "https://files.pythonhosted.org/packages/ff/5f/54440c7fd783d629e3de14fa53ef10a6bdecac9e0ba0b7ef77ee3b05c01d/pyrustaudit-0.0.11-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e03578e942e0d6d17ed3fdeecae1cee8c4bb74d2140b5e4b54de6bbae4fefaf",
                "md5": "8d591292de3a3b7b47323fceca11f24d",
                "sha256": "5dbbc0b46edacc93ce351dbce81edfcecff6e22e0016a8751b89a9f8e18e1013"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8d591292de3a3b7b47323fceca11f24d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 969476,
            "upload_time": "2025-07-14T12:52:26",
            "upload_time_iso_8601": "2025-07-14T12:52:26.798814Z",
            "url": "https://files.pythonhosted.org/packages/9e/03/578e942e0d6d17ed3fdeecae1cee8c4bb74d2140b5e4b54de6bbae4fefaf/pyrustaudit-0.0.11-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d2d57b3c6691f06d14621851949100ab1781defaf888492e04163477be5336b",
                "md5": "44a2e4e84497ba4adfd4c02b29b62d51",
                "sha256": "99028eaa56de76c5b96acb375e57fded8f7f4f1344bc11835cf30fc8cde6566f"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44a2e4e84497ba4adfd4c02b29b62d51",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1033549,
            "upload_time": "2025-07-14T12:52:28",
            "upload_time_iso_8601": "2025-07-14T12:52:28.174727Z",
            "url": "https://files.pythonhosted.org/packages/8d/2d/57b3c6691f06d14621851949100ab1781defaf888492e04163477be5336b/pyrustaudit-0.0.11-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e8afbe875535ae8e4507a8c582d030e148045e2aff8e82bc5fa670a1bcce66b4",
                "md5": "5d187c057e94a1f9bce7fd74b9f12780",
                "sha256": "648c6555d6ea466eab0f5893aa3025dd1f1b90793aa0e2fa37eba7d9ce28a47a"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5d187c057e94a1f9bce7fd74b9f12780",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 952524,
            "upload_time": "2025-07-14T12:52:29",
            "upload_time_iso_8601": "2025-07-14T12:52:29.656446Z",
            "url": "https://files.pythonhosted.org/packages/e8/af/be875535ae8e4507a8c582d030e148045e2aff8e82bc5fa670a1bcce66b4/pyrustaudit-0.0.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9aaf02b2e231aae9e166c25365e248bb838b2a50b3280e47b3b2f33abac7c29f",
                "md5": "94bdff5c10886a4de8d19e4bdc343dc0",
                "sha256": "087c48c4f7a0049ed6c896d670e9c4433579fac4f733312918e1838c476414c2"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "94bdff5c10886a4de8d19e4bdc343dc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 951863,
            "upload_time": "2025-07-14T12:52:31",
            "upload_time_iso_8601": "2025-07-14T12:52:31.033795Z",
            "url": "https://files.pythonhosted.org/packages/9a/af/02b2e231aae9e166c25365e248bb838b2a50b3280e47b3b2f33abac7c29f/pyrustaudit-0.0.11-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d36a86836df87a820a0029240e8a9c326fd0fc2fd8d68d6851758d7724ca930e",
                "md5": "49ec1f1149849224cb37768145181e82",
                "sha256": "eb8fa4b0c0ac99a588bc76a3b7e74d9d58cce7bb80172835c897977c3d51b4cb"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49ec1f1149849224cb37768145181e82",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1033175,
            "upload_time": "2025-07-14T12:52:32",
            "upload_time_iso_8601": "2025-07-14T12:52:32.254882Z",
            "url": "https://files.pythonhosted.org/packages/d3/6a/86836df87a820a0029240e8a9c326fd0fc2fd8d68d6851758d7724ca930e/pyrustaudit-0.0.11-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0138cb37d247c3832960f0bca1c68c258afcea529247a49f76c047db5e83eb73",
                "md5": "98cb4dd6778b135fc777338abf50594b",
                "sha256": "7a9941f799e631c73dd77b94153bb6465d29c1f17e35eeb69d5a7c305ae75976"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "98cb4dd6778b135fc777338abf50594b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 1021363,
            "upload_time": "2025-07-14T12:52:33",
            "upload_time_iso_8601": "2025-07-14T12:52:33.620870Z",
            "url": "https://files.pythonhosted.org/packages/01/38/cb37d247c3832960f0bca1c68c258afcea529247a49f76c047db5e83eb73/pyrustaudit-0.0.11-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3565b5ea0eeee3fa421ee92cd0a228948978de378837ed2efa03cd8d6d31e66",
                "md5": "f5b0d28a7d683e9f8bb60d409b81bfab",
                "sha256": "d0a994569c5be7efe66a04c673881ee38652bef62c882d987fa93ded41b32fa8"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f5b0d28a7d683e9f8bb60d409b81bfab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1029416,
            "upload_time": "2025-07-14T12:52:35",
            "upload_time_iso_8601": "2025-07-14T12:52:35.270873Z",
            "url": "https://files.pythonhosted.org/packages/c3/56/5b5ea0eeee3fa421ee92cd0a228948978de378837ed2efa03cd8d6d31e66/pyrustaudit-0.0.11-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31145c066b2f458f5ef9598c13617bdab27a891d7d6c635cbed291587a757f0e",
                "md5": "08273d2af83f8c29b03f1c267bbefb2d",
                "sha256": "5756d6a4a8b75096c0dfde7987eb69a995d13ee0107deff770793e2c1d6e0b7e"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "08273d2af83f8c29b03f1c267bbefb2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 969475,
            "upload_time": "2025-07-14T12:52:36",
            "upload_time_iso_8601": "2025-07-14T12:52:36.667160Z",
            "url": "https://files.pythonhosted.org/packages/31/14/5c066b2f458f5ef9598c13617bdab27a891d7d6c635cbed291587a757f0e/pyrustaudit-0.0.11-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e49adbfb3e21a1bd20fd1813c9fbe691b9d53e8b11c8227fe0196b5bfc79daa",
                "md5": "f51f63b038b29e9eeea2f63eb835c464",
                "sha256": "4a6eb17a285d067788af4e3b93d7e04c3ad3bb79c11cf09de375db0495304821"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f51f63b038b29e9eeea2f63eb835c464",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1033549,
            "upload_time": "2025-07-14T12:52:40",
            "upload_time_iso_8601": "2025-07-14T12:52:40.423783Z",
            "url": "https://files.pythonhosted.org/packages/4e/49/adbfb3e21a1bd20fd1813c9fbe691b9d53e8b11c8227fe0196b5bfc79daa/pyrustaudit-0.0.11-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0c94872cad8091e557062bd2caa83579b4e8b09c8c15ce173a34fd4fa1711d00",
                "md5": "3e19a3bad3826ac739f91333913bca80",
                "sha256": "d4316b0574a17d48689c17a0feb8b85c90ed913fd86e4b5959200c9399991215"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e19a3bad3826ac739f91333913bca80",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 952526,
            "upload_time": "2025-07-14T12:52:41",
            "upload_time_iso_8601": "2025-07-14T12:52:41.941275Z",
            "url": "https://files.pythonhosted.org/packages/0c/94/872cad8091e557062bd2caa83579b4e8b09c8c15ce173a34fd4fa1711d00/pyrustaudit-0.0.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "03e96364ae8df09aecb33d2522c1615d01c2f8cb4a52667b64d3f5e2583a1e26",
                "md5": "b09302b637668e74881f6ac40a36abee",
                "sha256": "74780dc9d273b126dbf17a6b5c95af395eca122079dc11321684382e34f25074"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b09302b637668e74881f6ac40a36abee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 951872,
            "upload_time": "2025-07-14T12:52:43",
            "upload_time_iso_8601": "2025-07-14T12:52:43.240672Z",
            "url": "https://files.pythonhosted.org/packages/03/e9/6364ae8df09aecb33d2522c1615d01c2f8cb4a52667b64d3f5e2583a1e26/pyrustaudit-0.0.11-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9059c1ea9f5a46b0a90cc1b42733d8efc724b90359f542fd777f59c1ba6b1392",
                "md5": "1ec2ffa3d34a7960f54d0773b17e7914",
                "sha256": "821b38968411a4654bf18c54d7231f18c8b9cb134c764cd0f432b664b7fadc6c"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ec2ffa3d34a7960f54d0773b17e7914",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1033180,
            "upload_time": "2025-07-14T12:52:44",
            "upload_time_iso_8601": "2025-07-14T12:52:44.808527Z",
            "url": "https://files.pythonhosted.org/packages/90/59/c1ea9f5a46b0a90cc1b42733d8efc724b90359f542fd777f59c1ba6b1392/pyrustaudit-0.0.11-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9683788cb238413c1561ec3ec38d9b7dd2b7989931f21f6f897c596921682461",
                "md5": "d8da17782a34dcb4347eca58ca469c14",
                "sha256": "70bb5fe421b96a7359156d90b8fb28ecc5b0061a6a63eb06b9ccdbe46be80f48"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d8da17782a34dcb4347eca58ca469c14",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 1021381,
            "upload_time": "2025-07-14T12:52:46",
            "upload_time_iso_8601": "2025-07-14T12:52:46.138172Z",
            "url": "https://files.pythonhosted.org/packages/96/83/788cb238413c1561ec3ec38d9b7dd2b7989931f21f6f897c596921682461/pyrustaudit-0.0.11-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc24e0cc0aafd04e354bf312b01e57a41622d22609a7f80c249787380e05bb7a",
                "md5": "dda0de38dc28f5e8650f95ea762a05ff",
                "sha256": "db3d998841d7b2767b4336c16b64161c5f8e9eac51fe75bdf92f150e1f8205c3"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dda0de38dc28f5e8650f95ea762a05ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1029429,
            "upload_time": "2025-07-14T12:52:47",
            "upload_time_iso_8601": "2025-07-14T12:52:47.443365Z",
            "url": "https://files.pythonhosted.org/packages/fc/24/e0cc0aafd04e354bf312b01e57a41622d22609a7f80c249787380e05bb7a/pyrustaudit-0.0.11-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "adbcb59ed60224c983644ecdb1f9b17ca96e35184b7ade242f7f6b94a78b65ab",
                "md5": "649d1ed4eca15c539a213ae7c788f631",
                "sha256": "4d56e3c5417158ba11d5b00ed415dd744d54b2c51022eb73a2ca1efc02055c96"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "649d1ed4eca15c539a213ae7c788f631",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 969473,
            "upload_time": "2025-07-14T12:52:48",
            "upload_time_iso_8601": "2025-07-14T12:52:48.770975Z",
            "url": "https://files.pythonhosted.org/packages/ad/bc/b59ed60224c983644ecdb1f9b17ca96e35184b7ade242f7f6b94a78b65ab/pyrustaudit-0.0.11-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e777f6526c6d761f0f8cf2cac021d325441b17282b3af367c0c0a8d07cd93c5",
                "md5": "ba6a8a2457e52b06b66942c6395050b4",
                "sha256": "a9557e79297da8a314a8bd5a00d24a0213ef56d6adeb6e0a4a7d564128ef3c05"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ba6a8a2457e52b06b66942c6395050b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1033549,
            "upload_time": "2025-07-14T12:52:50",
            "upload_time_iso_8601": "2025-07-14T12:52:50.225591Z",
            "url": "https://files.pythonhosted.org/packages/6e/77/7f6526c6d761f0f8cf2cac021d325441b17282b3af367c0c0a8d07cd93c5/pyrustaudit-0.0.11-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19a96eb4633f4b219ad92e4888a0bb878d54f9f3c0537ed97f0eb1318ce720fb",
                "md5": "b68d0a4fa21164b0d8d9eea53f56f6d8",
                "sha256": "c7876f9fc680cd35a0e7d68ce1e37066063091919cbae2a7a99eb776fdf910e2"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b68d0a4fa21164b0d8d9eea53f56f6d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 952526,
            "upload_time": "2025-07-14T12:52:51",
            "upload_time_iso_8601": "2025-07-14T12:52:51.902496Z",
            "url": "https://files.pythonhosted.org/packages/19/a9/6eb4633f4b219ad92e4888a0bb878d54f9f3c0537ed97f0eb1318ce720fb/pyrustaudit-0.0.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba29b2700d32ea750fa65e08477fc9e5dea9daee9ea14fd11060702d0573268e",
                "md5": "958837be21106777d2721f1d04230645",
                "sha256": "7120886522daab01b5bb8072e7ed90d5fa1efba2454a8fdadf3500d4cc9ccca3"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "958837be21106777d2721f1d04230645",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 951869,
            "upload_time": "2025-07-14T12:52:53",
            "upload_time_iso_8601": "2025-07-14T12:52:53.716530Z",
            "url": "https://files.pythonhosted.org/packages/ba/29/b2700d32ea750fa65e08477fc9e5dea9daee9ea14fd11060702d0573268e/pyrustaudit-0.0.11-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4def62ad22f3dbbfd626d567dc321413a1510247077c3cdcf4295abc84811f5d",
                "md5": "927bbe9cace116a67f1bd5eca42df78f",
                "sha256": "96319c6c47d43aefb0bbcafab79df9748a2bbfd41910abe4aaa987b430ab739e"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "927bbe9cace116a67f1bd5eca42df78f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1033178,
            "upload_time": "2025-07-14T12:52:55",
            "upload_time_iso_8601": "2025-07-14T12:52:55.057470Z",
            "url": "https://files.pythonhosted.org/packages/4d/ef/62ad22f3dbbfd626d567dc321413a1510247077c3cdcf4295abc84811f5d/pyrustaudit-0.0.11-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9a9138a2c25854dda3fd3ad6860263af33c3c0985b66fcb6f70c3f31977f0e48",
                "md5": "416bd362a77d2448a3e6c6ba8e430f25",
                "sha256": "95905ca98e5c2321e2d9692fbd6b630cf5758a723a49e9570e085755ee607d37"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "416bd362a77d2448a3e6c6ba8e430f25",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 1021381,
            "upload_time": "2025-07-14T12:52:56",
            "upload_time_iso_8601": "2025-07-14T12:52:56.761116Z",
            "url": "https://files.pythonhosted.org/packages/9a/91/38a2c25854dda3fd3ad6860263af33c3c0985b66fcb6f70c3f31977f0e48/pyrustaudit-0.0.11-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dda83be8549622e7788a939427e1c7f9223d839a1d42664ee1cf5edac96e6e16",
                "md5": "6e9c2ed1256dd612015189e5da4ce1c1",
                "sha256": "0b6b3fc64863e6aab2eecf3e12689bb1c0e4796c19eb3b4be6c707f6d7c5a302"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6e9c2ed1256dd612015189e5da4ce1c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1029419,
            "upload_time": "2025-07-14T12:52:58",
            "upload_time_iso_8601": "2025-07-14T12:52:58.428594Z",
            "url": "https://files.pythonhosted.org/packages/dd/a8/3be8549622e7788a939427e1c7f9223d839a1d42664ee1cf5edac96e6e16/pyrustaudit-0.0.11-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a72034ae675bec8b5266b7851c5d3b260638619076fc061780defa5c12377f7",
                "md5": "864b7db486427f748f18e88ddd2c0779",
                "sha256": "df32a9d52b575a6e76fb73ec813b6f331fdaf8493128639377db0568dbc1d57f"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "864b7db486427f748f18e88ddd2c0779",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 969479,
            "upload_time": "2025-07-14T12:53:00",
            "upload_time_iso_8601": "2025-07-14T12:53:00.060261Z",
            "url": "https://files.pythonhosted.org/packages/2a/72/034ae675bec8b5266b7851c5d3b260638619076fc061780defa5c12377f7/pyrustaudit-0.0.11-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6990fc71154b3412b86c05b4c5db4e281eed75af5df487ebb85411f6e48d1a41",
                "md5": "7f0775ef1ad59a09d9453572ccda010b",
                "sha256": "faf490072328c803a79b5f1979b6f72e168c436070eee4d6c92d15669639a593"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f0775ef1ad59a09d9453572ccda010b",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1033551,
            "upload_time": "2025-07-14T12:53:01",
            "upload_time_iso_8601": "2025-07-14T12:53:01.388849Z",
            "url": "https://files.pythonhosted.org/packages/69/90/fc71154b3412b86c05b4c5db4e281eed75af5df487ebb85411f6e48d1a41/pyrustaudit-0.0.11-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "27a687790c5a936086d7f2b56c7057d4022cc8c3ece54ecd462649ac102fd538",
                "md5": "940ec37b1cc1d5408847e1cd07e8845a",
                "sha256": "c4621b8efa5ece570cc26f3891a1cca16b963f4e015359c272d8e90743d75748"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "940ec37b1cc1d5408847e1cd07e8845a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 952523,
            "upload_time": "2025-07-14T12:53:03",
            "upload_time_iso_8601": "2025-07-14T12:53:03.041506Z",
            "url": "https://files.pythonhosted.org/packages/27/a6/87790c5a936086d7f2b56c7057d4022cc8c3ece54ecd462649ac102fd538/pyrustaudit-0.0.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11ed1cb0da2822062d1eea300baa94f626a012252cf007f85345485a4426ef57",
                "md5": "b50d646a8dfabbedd3a925c91748aeff",
                "sha256": "6c9ae4b1aabc7a98c61698196c9d4406cab51f54c859c904d00fc1f759a7f285"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b50d646a8dfabbedd3a925c91748aeff",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 951872,
            "upload_time": "2025-07-14T12:53:04",
            "upload_time_iso_8601": "2025-07-14T12:53:04.340472Z",
            "url": "https://files.pythonhosted.org/packages/11/ed/1cb0da2822062d1eea300baa94f626a012252cf007f85345485a4426ef57/pyrustaudit-0.0.11-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bf7fedc22ff31cf3c524c2d59f75bd39c09c9a401a56df5e3951ace78f09b449",
                "md5": "997be546e2ffbf37ade1db12e6a41ab1",
                "sha256": "a0872363a07cf9f4d75b5550973d3cfe3061a98fbe552a12b8e1e031798b30f1"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "997be546e2ffbf37ade1db12e6a41ab1",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1033179,
            "upload_time": "2025-07-14T12:53:05",
            "upload_time_iso_8601": "2025-07-14T12:53:05.667922Z",
            "url": "https://files.pythonhosted.org/packages/bf/7f/edc22ff31cf3c524c2d59f75bd39c09c9a401a56df5e3951ace78f09b449/pyrustaudit-0.0.11-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "649252b77883200f53a50acca7c3119df3ac7de75b36375bea13dbb46069cda6",
                "md5": "26ddb51e90f0506b198812603334d804",
                "sha256": "786c396e25332f54b552c093ba06958dd895a25aa083ae896ae7e86d0bf18170"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "26ddb51e90f0506b198812603334d804",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": null,
            "size": 1021365,
            "upload_time": "2025-07-14T12:53:06",
            "upload_time_iso_8601": "2025-07-14T12:53:06.947814Z",
            "url": "https://files.pythonhosted.org/packages/64/92/52b77883200f53a50acca7c3119df3ac7de75b36375bea13dbb46069cda6/pyrustaudit-0.0.11-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14d43952275cc2c98fc51e1dedda7a4a07ffb01287645ba9a1b0237dca55677a",
                "md5": "23603516ffbf309810c409f454a0e82a",
                "sha256": "3fd410166d17053b1741419147b6e876eab7e14d6685fc462aeadfab9730c541"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp314-cp314-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "23603516ffbf309810c409f454a0e82a",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 1029421,
            "upload_time": "2025-07-14T12:53:08",
            "upload_time_iso_8601": "2025-07-14T12:53:08.230977Z",
            "url": "https://files.pythonhosted.org/packages/14/d4/3952275cc2c98fc51e1dedda7a4a07ffb01287645ba9a1b0237dca55677a/pyrustaudit-0.0.11-cp314-cp314-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "edd9b8faa9b537b04a3a32014f1c96da652d76c456abdfc500b77860e76e42b9",
                "md5": "3e130f5bb7384e9cc34be504a8ad1542",
                "sha256": "925b9fbecb7b4ceb9e778f5d0a144ffd489514f27de73403d24150d4b02419b9"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp314-cp314-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3e130f5bb7384e9cc34be504a8ad1542",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 969480,
            "upload_time": "2025-07-14T12:53:09",
            "upload_time_iso_8601": "2025-07-14T12:53:09.874700Z",
            "url": "https://files.pythonhosted.org/packages/ed/d9/b8faa9b537b04a3a32014f1c96da652d76c456abdfc500b77860e76e42b9/pyrustaudit-0.0.11-cp314-cp314-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b20d8ff07b4113033fa155875d55a60bf83f6d980bf53e2014a5194d47e91a06",
                "md5": "4819fb7fb69d500baa02c795a195e8f2",
                "sha256": "cef1813d60cab467a367bc0608c61d65ed1f507f1ed3ac385120144fc74df65e"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4819fb7fb69d500baa02c795a195e8f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 1033555,
            "upload_time": "2025-07-14T12:53:11",
            "upload_time_iso_8601": "2025-07-14T12:53:11.158373Z",
            "url": "https://files.pythonhosted.org/packages/b2/0d/8ff07b4113033fa155875d55a60bf83f6d980bf53e2014a5194d47e91a06/pyrustaudit-0.0.11-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb3159cdea34c47be2163e4117687fbe8cc1190ba58101b2a85dc13ac22435ea",
                "md5": "cf3870aab8e9b857cb43e8f0ab21a631",
                "sha256": "c576759f32b3d5c47c0e3dcf8ec96888904d157375c7f7274035f475e43b63b0"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cf3870aab8e9b857cb43e8f0ab21a631",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 952527,
            "upload_time": "2025-07-14T12:53:12",
            "upload_time_iso_8601": "2025-07-14T12:53:12.429212Z",
            "url": "https://files.pythonhosted.org/packages/bb/31/59cdea34c47be2163e4117687fbe8cc1190ba58101b2a85dc13ac22435ea/pyrustaudit-0.0.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47aaeb440a9bffe52c9c5e5db7c5d6ed622d9aedc5ab749c14e9d9e175e128f0",
                "md5": "6a6e9e589889d0d33a27f67ec1cb17f2",
                "sha256": "858ddcf7778ac11f05edaad848b743ee6de252c24631236e7c67283c66a253c0"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp314-cp314-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6a6e9e589889d0d33a27f67ec1cb17f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 951876,
            "upload_time": "2025-07-14T12:53:13",
            "upload_time_iso_8601": "2025-07-14T12:53:13.678713Z",
            "url": "https://files.pythonhosted.org/packages/47/aa/eb440a9bffe52c9c5e5db7c5d6ed622d9aedc5ab749c14e9d9e175e128f0/pyrustaudit-0.0.11-cp314-cp314-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46c2fd2aff1523bcf5f724362fb3e4c96519bf78da8c29650834929822a07ebf",
                "md5": "acba3017723fbdd566f78fd5bfa1a789",
                "sha256": "91471dbd57895c1734527628e57bb58d5e8ee63148f455bba0f71a7b431d39f7"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp314-cp314-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "acba3017723fbdd566f78fd5bfa1a789",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 1033182,
            "upload_time": "2025-07-14T12:53:15",
            "upload_time_iso_8601": "2025-07-14T12:53:15.225637Z",
            "url": "https://files.pythonhosted.org/packages/46/c2/fd2aff1523bcf5f724362fb3e4c96519bf78da8c29650834929822a07ebf/pyrustaudit-0.0.11-cp314-cp314-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad2f8db2eb2b2e4bc6bd533b0cd210e30869563018e4f184e2ec8cbb16804720",
                "md5": "3bcb7f7e2ba9421c23f23233a9cb3e32",
                "sha256": "9dfefb16e47a57f2fc63efd72c5a62ce4dffeb804277442f95d097013a73643f"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp314-cp314-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3bcb7f7e2ba9421c23f23233a9cb3e32",
            "packagetype": "bdist_wheel",
            "python_version": "cp314",
            "requires_python": null,
            "size": 1041335,
            "upload_time": "2025-07-14T12:53:16",
            "upload_time_iso_8601": "2025-07-14T12:53:16.513189Z",
            "url": "https://files.pythonhosted.org/packages/ad/2f/8db2eb2b2e4bc6bd533b0cd210e30869563018e4f184e2ec8cbb16804720/pyrustaudit-0.0.11-cp314-cp314-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6188fe097dcbd75b85be8605c004d96ec94cf3ab49e00ccefc5171541acaf849",
                "md5": "a8241e060d3c2c5a6368f9f6a951e205",
                "sha256": "96140199866d54e9e156664bd0f89a92be1cd1653b98201933ef2c181aaa2aa4"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a8241e060d3c2c5a6368f9f6a951e205",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1029213,
            "upload_time": "2025-07-14T12:53:19",
            "upload_time_iso_8601": "2025-07-14T12:53:19.744155Z",
            "url": "https://files.pythonhosted.org/packages/61/88/fe097dcbd75b85be8605c004d96ec94cf3ab49e00ccefc5171541acaf849/pyrustaudit-0.0.11-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f5e47862f1b310e7eb143b898211b9d519833a30da937eddcb8229e548ac52ac",
                "md5": "96188c11a960014b2dfc0ddc161d8f98",
                "sha256": "03a2265801577eb059bc0f11bab41cf0bf9511b0da0d2337ae1275433afe4fde"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "96188c11a960014b2dfc0ddc161d8f98",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 969267,
            "upload_time": "2025-07-14T12:53:21",
            "upload_time_iso_8601": "2025-07-14T12:53:21.088106Z",
            "url": "https://files.pythonhosted.org/packages/f5/e4/7862f1b310e7eb143b898211b9d519833a30da937eddcb8229e548ac52ac/pyrustaudit-0.0.11-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7436fa1264cfc8eb82970245bcefe84825f348ee2c0627add2e9aa2d5cdc54d7",
                "md5": "ce186e7cbb5bf0af3797040ebbe49dd6",
                "sha256": "159e170d5c05294b1e5bbbab0d00b0e22b9f6df284bf39ab2f2224701331b60d"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ce186e7cbb5bf0af3797040ebbe49dd6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1033355,
            "upload_time": "2025-07-14T12:53:22",
            "upload_time_iso_8601": "2025-07-14T12:53:22.409249Z",
            "url": "https://files.pythonhosted.org/packages/74/36/fa1264cfc8eb82970245bcefe84825f348ee2c0627add2e9aa2d5cdc54d7/pyrustaudit-0.0.11-cp38-cp38-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f0ff83192439ce89e47cfba9d47ba7723c86a6017c58ab55a20b43c51bc26e84",
                "md5": "662c7d5141ae53c0571e0d8a84f3f57c",
                "sha256": "38a01e488d0de1dd0f8932172139526dd7543d8276b1c8f30f24f925e5204381"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "662c7d5141ae53c0571e0d8a84f3f57c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 952333,
            "upload_time": "2025-07-14T12:53:23",
            "upload_time_iso_8601": "2025-07-14T12:53:23.687548Z",
            "url": "https://files.pythonhosted.org/packages/f0/ff/83192439ce89e47cfba9d47ba7723c86a6017c58ab55a20b43c51bc26e84/pyrustaudit-0.0.11-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "11ecd16d014104eb4138542763f8929fd9361a01b01ea0f696aa62a92dbcd9a0",
                "md5": "f9c280ac8bba122c317457304c6978ed",
                "sha256": "fc57308214d3785d65f8d93795a9818d09efe624f8767846e0699762feb6d825"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f9c280ac8bba122c317457304c6978ed",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 951671,
            "upload_time": "2025-07-14T12:53:25",
            "upload_time_iso_8601": "2025-07-14T12:53:25.062183Z",
            "url": "https://files.pythonhosted.org/packages/11/ec/d16d014104eb4138542763f8929fd9361a01b01ea0f696aa62a92dbcd9a0/pyrustaudit-0.0.11-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "61f7b1cf3788048367cab727313d431fb02470215be8695c935167cc30dcaf18",
                "md5": "ed796e439872ed964d601776eb309331",
                "sha256": "73d3e38bd0268c4fa3664a7941cb821be94048046f441ae620fc15e3e63e7d07"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed796e439872ed964d601776eb309331",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1032981,
            "upload_time": "2025-07-14T12:53:26",
            "upload_time_iso_8601": "2025-07-14T12:53:26.420176Z",
            "url": "https://files.pythonhosted.org/packages/61/f7/b1cf3788048367cab727313d431fb02470215be8695c935167cc30dcaf18/pyrustaudit-0.0.11-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06fa562cfb56da6d554388e24a6c2674bd7d19a8bf15f7751a7787b129a740c1",
                "md5": "71402bfebb27001e1e6ef5f4012c4b04",
                "sha256": "98c448bdd7a0966f78f9c3f9c72c56d23c8db511190393a6669f69c70a96023a"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "71402bfebb27001e1e6ef5f4012c4b04",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 1021316,
            "upload_time": "2025-07-14T12:53:28",
            "upload_time_iso_8601": "2025-07-14T12:53:28.427141Z",
            "url": "https://files.pythonhosted.org/packages/06/fa/562cfb56da6d554388e24a6c2674bd7d19a8bf15f7751a7787b129a740c1/pyrustaudit-0.0.11-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ba403c2fc0238e9431c9d880677876f43d9117350374a3a321ec2eefeac22d70",
                "md5": "611656af375746851e147b103fa603a1",
                "sha256": "e9e415dd8d9d6c4a469973c80d80131d5abccec227f072f0aae8c7af93c860ed"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "611656af375746851e147b103fa603a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1029412,
            "upload_time": "2025-07-14T12:53:29",
            "upload_time_iso_8601": "2025-07-14T12:53:29.897324Z",
            "url": "https://files.pythonhosted.org/packages/ba/40/3c2fc0238e9431c9d880677876f43d9117350374a3a321ec2eefeac22d70/pyrustaudit-0.0.11-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0731473b3b555b47ae6c55708d6a161d55ff08eaa91d5b2aa94954cb934a94d",
                "md5": "96812efb5b250363d7400940d2799458",
                "sha256": "71f339f40b7403f1931258bac27ac280934f5a94dd57beb9fc5c45b0ce0b21f1"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "96812efb5b250363d7400940d2799458",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 969476,
            "upload_time": "2025-07-14T12:53:31",
            "upload_time_iso_8601": "2025-07-14T12:53:31.589431Z",
            "url": "https://files.pythonhosted.org/packages/b0/73/1473b3b555b47ae6c55708d6a161d55ff08eaa91d5b2aa94954cb934a94d/pyrustaudit-0.0.11-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a7bd02b621aee1c089335afc29d91e58907f9d34964c7595fbf31de81ac8e26",
                "md5": "e33eb2f2ee0dfb2ac2621784016226d9",
                "sha256": "98454cfe787cb8b59aa6eb8080fb1062ab8c08c36499bded6dab5243371f7696"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e33eb2f2ee0dfb2ac2621784016226d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1033540,
            "upload_time": "2025-07-14T12:53:32",
            "upload_time_iso_8601": "2025-07-14T12:53:32.889052Z",
            "url": "https://files.pythonhosted.org/packages/3a/7b/d02b621aee1c089335afc29d91e58907f9d34964c7595fbf31de81ac8e26/pyrustaudit-0.0.11-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a23f378780407f5fa6381e34aedd14fa5a5bc036184b8da1b47d906cd46970a8",
                "md5": "b97e07475c68dedd2f54588c6ff47fd2",
                "sha256": "635e8b004d167d3e9464f9e10434894bf35cce0222a26fbc437e69cedff3a3e3"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b97e07475c68dedd2f54588c6ff47fd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 952519,
            "upload_time": "2025-07-14T12:53:34",
            "upload_time_iso_8601": "2025-07-14T12:53:34.378161Z",
            "url": "https://files.pythonhosted.org/packages/a2/3f/378780407f5fa6381e34aedd14fa5a5bc036184b8da1b47d906cd46970a8/pyrustaudit-0.0.11-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea470f90b924f7cc8c9290673ca233d04717fe6ec565d484214633b26c65ed7f",
                "md5": "dcd0d9b098380e11d4f20b3dbb4ac7a5",
                "sha256": "504a362b7d25a734ee0a5460f07fa328f7394bb390a79492947738d2135770ec"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "dcd0d9b098380e11d4f20b3dbb4ac7a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 951865,
            "upload_time": "2025-07-14T12:53:35",
            "upload_time_iso_8601": "2025-07-14T12:53:35.702677Z",
            "url": "https://files.pythonhosted.org/packages/ea/47/0f90b924f7cc8c9290673ca233d04717fe6ec565d484214633b26c65ed7f/pyrustaudit-0.0.11-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67682b64fdc69f5619bb9f8fcdda2325b38319902bf7b3aebd4f8b5aa9ac2e00",
                "md5": "1ace7f2ff8632ff8412973664b5e7e10",
                "sha256": "d5b2baec42b61e2cb3bdda00eb6430b4407934044160e61712d8064b2cc462c0"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ace7f2ff8632ff8412973664b5e7e10",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1033167,
            "upload_time": "2025-07-14T12:53:37",
            "upload_time_iso_8601": "2025-07-14T12:53:37.900803Z",
            "url": "https://files.pythonhosted.org/packages/67/68/2b64fdc69f5619bb9f8fcdda2325b38319902bf7b3aebd4f8b5aa9ac2e00/pyrustaudit-0.0.11-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ed07b590a0944ae3fb428409d38e1d53e6cbbe9a992b423aa22bdb4aa4758baf",
                "md5": "d9c98216dc58f37c50686e2b41e4c3b9",
                "sha256": "1c514d7c4b303ce1b956727c46928440d945efe32b1d040ffe87560e051efd95"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d9c98216dc58f37c50686e2b41e4c3b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 1021356,
            "upload_time": "2025-07-14T12:53:39",
            "upload_time_iso_8601": "2025-07-14T12:53:39.812601Z",
            "url": "https://files.pythonhosted.org/packages/ed/07/b590a0944ae3fb428409d38e1d53e6cbbe9a992b423aa22bdb4aa4758baf/pyrustaudit-0.0.11-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffb63c721d2982ea1e746d03a3872374f42008d6af8a772009dea582dc94d634",
                "md5": "9af7448f9515ab9e3f19f4ecf679be52",
                "sha256": "50cffb6379780c7757b3d9bf36bd1638d7d3c1c0bea49f247843e7dadb9b82db"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9af7448f9515ab9e3f19f4ecf679be52",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1029456,
            "upload_time": "2025-07-14T12:53:41",
            "upload_time_iso_8601": "2025-07-14T12:53:41.489730Z",
            "url": "https://files.pythonhosted.org/packages/ff/b6/3c721d2982ea1e746d03a3872374f42008d6af8a772009dea582dc94d634/pyrustaudit-0.0.11-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "918f4a8415f7c345bf87b4c1e5a7dce11574f848aa335cb604c2232be517fbab",
                "md5": "f8ddf653198cf7d89e381232503ebabd",
                "sha256": "26cfa03287bb0dc58749a5fc796ad03eb5c1b70b888b50347e486a1e16fffcd7"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f8ddf653198cf7d89e381232503ebabd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 969500,
            "upload_time": "2025-07-14T12:53:43",
            "upload_time_iso_8601": "2025-07-14T12:53:43.030643Z",
            "url": "https://files.pythonhosted.org/packages/91/8f/4a8415f7c345bf87b4c1e5a7dce11574f848aa335cb604c2232be517fbab/pyrustaudit-0.0.11-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "612f17bbd3c1ffbc3a35a0117e229e1eeaf124c5910781bbc843c1286960ba68",
                "md5": "ef56dd99620a1159ff82d9eb4cda88e5",
                "sha256": "7da4f9dae87134b94e3ef86a427791705ef4236ce3bd08d4b167eb7c4493cb56"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ef56dd99620a1159ff82d9eb4cda88e5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 1033560,
            "upload_time": "2025-07-14T12:53:44",
            "upload_time_iso_8601": "2025-07-14T12:53:44.370043Z",
            "url": "https://files.pythonhosted.org/packages/61/2f/17bbd3c1ffbc3a35a0117e229e1eeaf124c5910781bbc843c1286960ba68/pyrustaudit-0.0.11-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8089f80deb4c0a5be31e80761084ef68b73ebb44e8a9951507de047b1ff0d303",
                "md5": "d48b7bc26932c2793d3fcf005fa7b44b",
                "sha256": "962f2bb38738f599be3fca4bb78311a6dace66a37099b11ff863ddaa1d8f1ac9"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d48b7bc26932c2793d3fcf005fa7b44b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 952533,
            "upload_time": "2025-07-14T12:53:46",
            "upload_time_iso_8601": "2025-07-14T12:53:46.015231Z",
            "url": "https://files.pythonhosted.org/packages/80/89/f80deb4c0a5be31e80761084ef68b73ebb44e8a9951507de047b1ff0d303/pyrustaudit-0.0.11-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6cf82f3d0b785751c79ca41cda04e346da1865794f59a0a4c0e3251a8ba57498",
                "md5": "4bb1cfe69e349b2d3236d92a495702ec",
                "sha256": "7a327a0c169b424cd99dd58e980ab0ee8446db1426c80e5f46a7483c26ee0894"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4bb1cfe69e349b2d3236d92a495702ec",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": null,
            "size": 1029459,
            "upload_time": "2025-07-14T12:53:47",
            "upload_time_iso_8601": "2025-07-14T12:53:47.321692Z",
            "url": "https://files.pythonhosted.org/packages/6c/f8/2f3d0b785751c79ca41cda04e346da1865794f59a0a4c0e3251a8ba57498/pyrustaudit-0.0.11-pp311-pypy311_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f02fb1cfadb5bc265dce2b40e849a76bfed0d7f5525ccb513a29342199cbae1",
                "md5": "f9ac8c90ed2d170c865410f44de9e17a",
                "sha256": "89d930eab4a349145e6cb6ba869fd942c2708bc00220cf5886fbebf620188349"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f9ac8c90ed2d170c865410f44de9e17a",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": null,
            "size": 969501,
            "upload_time": "2025-07-14T12:53:49",
            "upload_time_iso_8601": "2025-07-14T12:53:49.031415Z",
            "url": "https://files.pythonhosted.org/packages/1f/02/fb1cfadb5bc265dce2b40e849a76bfed0d7f5525ccb513a29342199cbae1/pyrustaudit-0.0.11-pp311-pypy311_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e538fcad0d26bd5f243d678a9526dc1ca24081fe0d257fa2a2f9cac999116a8f",
                "md5": "7b2265d5f384cf996752507ca3037a51",
                "sha256": "16a0af763fea4322cc306a101faffb818c98efd268e8fe476da7bfc21c0f5876"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b2265d5f384cf996752507ca3037a51",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": null,
            "size": 1033558,
            "upload_time": "2025-07-14T12:53:50",
            "upload_time_iso_8601": "2025-07-14T12:53:50.693944Z",
            "url": "https://files.pythonhosted.org/packages/e5/38/fcad0d26bd5f243d678a9526dc1ca24081fe0d257fa2a2f9cac999116a8f/pyrustaudit-0.0.11-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d9c5a3452564061d3ffee864c4e8e34f0aa9701d04062b0bbd100ce7414ee74e",
                "md5": "e746aa0f45a344145f0b07ee138c0f67",
                "sha256": "1a9d5e78ec538334f622e4129b27ce4f7bb87d82e4fcb06c699fdf507601a484"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e746aa0f45a344145f0b07ee138c0f67",
            "packagetype": "bdist_wheel",
            "python_version": "pp311",
            "requires_python": null,
            "size": 952534,
            "upload_time": "2025-07-14T12:53:51",
            "upload_time_iso_8601": "2025-07-14T12:53:51.957605Z",
            "url": "https://files.pythonhosted.org/packages/d9/c5/a3452564061d3ffee864c4e8e34f0aa9701d04062b0bbd100ce7414ee74e/pyrustaudit-0.0.11-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ca531e0a975489d690154c07901f43bb0bf7043643e20d241f7cd3dbf0e0e43",
                "md5": "30f1e53f0ff7313534a842ef8d378082",
                "sha256": "e4397a1227f302aa93db857058055a8fcd6fa99a8d7b622302d0b9a4135546d8"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30f1e53f0ff7313534a842ef8d378082",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1029290,
            "upload_time": "2025-07-14T12:53:53",
            "upload_time_iso_8601": "2025-07-14T12:53:53.611392Z",
            "url": "https://files.pythonhosted.org/packages/9c/a5/31e0a975489d690154c07901f43bb0bf7043643e20d241f7cd3dbf0e0e43/pyrustaudit-0.0.11-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cf98e7e849a077812157e868371f2f0f0274a24fbebbd18ee40fe3475eee3cc5",
                "md5": "adfc03888f3f03d27bdd2b38def4a4e1",
                "sha256": "4acdf61184d4444f71f1dccdd30d91986f4296fc8bbfd874c0e4b2760a3c5006"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "adfc03888f3f03d27bdd2b38def4a4e1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 969290,
            "upload_time": "2025-07-14T12:53:55",
            "upload_time_iso_8601": "2025-07-14T12:53:55.027421Z",
            "url": "https://files.pythonhosted.org/packages/cf/98/e7e849a077812157e868371f2f0f0274a24fbebbd18ee40fe3475eee3cc5/pyrustaudit-0.0.11-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8b241cb59d661e87c373e87714e8289f3cfc656c347fd8327dc60b0b0af3590c",
                "md5": "384029b03fc017bd396b5b13ce30e957",
                "sha256": "08f802a08ac2054d3c816f978c1590de79caf019fdfd7faa0b072203a9cc76b7"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "384029b03fc017bd396b5b13ce30e957",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 1033361,
            "upload_time": "2025-07-14T12:53:56",
            "upload_time_iso_8601": "2025-07-14T12:53:56.342975Z",
            "url": "https://files.pythonhosted.org/packages/8b/24/1cb59d661e87c373e87714e8289f3cfc656c347fd8327dc60b0b0af3590c/pyrustaudit-0.0.11-pp38-pypy38_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e035a04b3284024842928e2790b3ac7b49a64825161f87cab03805aab1b20007",
                "md5": "14477500e218a2f4af51fa522b42ff60",
                "sha256": "91ef8edfc67a8220b17e142d3d3cb60b097b8f71abad37874b0e1ef6807eb236"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "14477500e218a2f4af51fa522b42ff60",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 952339,
            "upload_time": "2025-07-14T12:53:57",
            "upload_time_iso_8601": "2025-07-14T12:53:57.610101Z",
            "url": "https://files.pythonhosted.org/packages/e0/35/a04b3284024842928e2790b3ac7b49a64825161f87cab03805aab1b20007/pyrustaudit-0.0.11-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "120ad57fb3507f9c9e67019fe4bc417a5279141298d3b6153af5d015d0e0d562",
                "md5": "998af6db7d0ca8be169f03fb1933a046",
                "sha256": "ef395712ec77939ca9e5297a20846feb3a967a3de496d94a0acf7742b6e99a8e"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "998af6db7d0ca8be169f03fb1933a046",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1029455,
            "upload_time": "2025-07-14T12:53:58",
            "upload_time_iso_8601": "2025-07-14T12:53:58.895124Z",
            "url": "https://files.pythonhosted.org/packages/12/0a/d57fb3507f9c9e67019fe4bc417a5279141298d3b6153af5d015d0e0d562/pyrustaudit-0.0.11-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aeb9cf3b84cf4f4b555dd77b1a0bc14de3f4fe6274f6203b843d40b1009eeb6d",
                "md5": "4edbd8eaec7ff9a60f3988f46e9c3b97",
                "sha256": "6ea602ac8395013c79ccc6261d382b5d74339cad0260abfc1ca03db3d53be87b"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4edbd8eaec7ff9a60f3988f46e9c3b97",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 969492,
            "upload_time": "2025-07-14T12:54:00",
            "upload_time_iso_8601": "2025-07-14T12:54:00.470656Z",
            "url": "https://files.pythonhosted.org/packages/ae/b9/cf3b84cf4f4b555dd77b1a0bc14de3f4fe6274f6203b843d40b1009eeb6d/pyrustaudit-0.0.11-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c99528867b2ff7b7e8dd776ce9845a44b6f5e486b53008eca5695e3c32cc836c",
                "md5": "4e0c9bc99182a568700ec8764c65f881",
                "sha256": "8c0c74c516448292fe1fe2628e42bd27de1295372f2399b303dd506b1a33034a"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e0c9bc99182a568700ec8764c65f881",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 1033547,
            "upload_time": "2025-07-14T12:54:01",
            "upload_time_iso_8601": "2025-07-14T12:54:01.790050Z",
            "url": "https://files.pythonhosted.org/packages/c9/95/28867b2ff7b7e8dd776ce9845a44b6f5e486b53008eca5695e3c32cc836c/pyrustaudit-0.0.11-pp39-pypy39_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0fe0a36d92c12563d9f1b5408e346dd8faded4b2d7d70cc728946ab566aa1f53",
                "md5": "83adcd8c596efc93a98d77f007bfc2f0",
                "sha256": "37b855be8749b507fd0966efe12351aea03273554a23b597002e491642f8eb0e"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "has_sig": false,
            "md5_digest": "83adcd8c596efc93a98d77f007bfc2f0",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 952530,
            "upload_time": "2025-07-14T12:54:03",
            "upload_time_iso_8601": "2025-07-14T12:54:03.159656Z",
            "url": "https://files.pythonhosted.org/packages/0f/e0/a36d92c12563d9f1b5408e346dd8faded4b2d7d70cc728946ab566aa1f53/pyrustaudit-0.0.11-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1bbcd57a24d0b6159b32aea00d5bbee9a9da7b6aba0deeb2e0e4d52b99bde9e",
                "md5": "445c8e00ba54560149abc3d4d2cc2c0f",
                "sha256": "4ad874fc90c2c9df601bd0258be53fc5b86572f6ac0de7f7a1bb94ce8a411028"
            },
            "downloads": -1,
            "filename": "pyrustaudit-0.0.11.tar.gz",
            "has_sig": false,
            "md5_digest": "445c8e00ba54560149abc3d4d2cc2c0f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 6603,
            "upload_time": "2025-07-14T12:54:04",
            "upload_time_iso_8601": "2025-07-14T12:54:04.392490Z",
            "url": "https://files.pythonhosted.org/packages/c1/bb/cd57a24d0b6159b32aea00d5bbee9a9da7b6aba0deeb2e0e4d52b99bde9e/pyrustaudit-0.0.11.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-14 12:54:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Mikemoore63",
    "github_project": "pyrustaudit",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pyrustaudit"
}
        
Elapsed time: 3.47322s