pact-python


Namepact-python JSON
Version 2.2.1 PyPI version JSON
download
home_pageNone
SummaryTool for creating and verifying consumer-driven contracts using the Pact framework.
upload_time2024-07-22 05:12:04
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT License Copyright (c) 2017 Pact Foundation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords contract-testing pact testing
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Pact Python

<!-- markdownlint-disable no-inline-html -->
<div align="center">
    <b>Fast, easy and reliable testing for your APIs and microservices.</b>
</div>

<div align="center"><table>
    <tr>
        <td>Package</td>
        <td>
            <a href="https://pypi.python.org/pypi/pact-python"><img src="https://img.shields.io/pypi/v/pact-python.svg" alt="Version"></a>
            <a href="https://pypi.python.org/pypi/pact-python"><img src="https://img.shields.io/pypi/pyversions/pact-python.svg" alt="Python Versions"></a>
            <a href="https://pypi.python.org/pypi/pact-python"><img src="https://img.shields.io/pypi/dm/pact-python.svg" alt="Downloads"></a>
        </td>
    </tr>
    <tr>
        <td>CI/CD</td>
        <td>
            <a
                href="https://github.com/pact-foundation/pact-python/actions/workflows/test.yml"><img
                src="https://img.shields.io/github/actions/workflow/status/pact-foundation/pact-python/test.yml?branch=master&label=test"
                alt="Test Status"></a>
            <a
                href="https://github.com/pact-foundation/pact-python/actions/workflows/build.yml"><img
                src="https://img.shields.io/github/actions/workflow/status/pact-foundation/pact-python/build.yml?branch=master&label=build"
                alt="Build Status"></a>
            <a
                href="https://github.com/pact-foundation/pact-python/actions/workflows/docs.yml"><img
                src="https://img.shields.io/github/actions/workflow/status/pact-foundation/pact-python/docs.yml?branch=master&label=docs"
                alt="Build Status"></a>
        </td>
    </tr>
    <tr>
        <td>Meta</td>
        <td>
            <a
                href="https://github.com/pypa/hatch"><img
                src="https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg"
                alt="Hatch project"></a>
            <a href="https://github.com/astral-sh/ruff"><img
                src="https://img.shields.io/badge/ruff-ruff?label=linting&color=%23261230"
                alt="linting - Ruff"></a>
            <a href="https://github.com/astral-sh/ruff"><img
                src="https://img.shields.io/badge/ruff-ruff?label=style&color=%23261230"
                alt="style - Ruff"></a>
            <a
                href="https://github.com/python/mypy"><img
                src="https://img.shields.io/badge/types-Mypy-blue.svg"
                alt="types - Mypy"></a>
            <a
                href="https://pypi.python.org/pypi/ruff"><img
                src="https://img.shields.io/pypi/l/pact-python.svg"
                alt="License"></a>
        </td>
    </tr>
    <tr>
        <td>Community</td>
        <td>
            <a
                href="http://slack.pact.io"><img
                src="https://slack.pact.io/badge.svg"
                alt="Slack"></a>
            <a
                href="https://stackoverflow.com/questions/tagged/pact"><img
                src="https://img.shields.io/badge/stackoverflow-pact-orange.svg"
                alt="Stack Overflow"></a>
            <a
                href="https://twitter.com/pact_up"><img
                src="https://img.shields.io/twitter/follow/pact_up?style=social"
                alt="Twitter"></a>
        </td>
    </tr>
</table></div>

<div align="center"><table><tr><td>
<b>Pact</b> is the de-facto API contract testing tool. Replace expensive and brittle end-to-end integration tests with fast, reliable and easy to debug unit tests.

<ul style="list-style-type: none">
    <li>⚡ Lightning fast</li>
    <li>🎈 Effortless full-stack integration testing - from the front-end to the back-end</li>
    <li>🔌 Supports HTTP/REST and event-driven systems</li>
    <li>🛠️ Configurable mock server</li>
    <li>😌 Powerful matching rules prevents brittle tests</li>
    <li>🤝 Integrates with Pact Broker / PactFlow for powerful CI/CD workflows</li>
    <li>🔡 Supports 12+ languages</li>
</ul>

<b>Why use Pact?</b> Contract testing with Pact lets you:

<ul style="list-style-type: none">
    <li>⚡ Test locally</li>
    <li>🚀 Deploy faster</li>
    <li>⬇️ Reduce the lead time for change</li>
    <li>💰 Reduce the cost of API integration testing</li>
    <li>💥 Prevent breaking changes</li>
    <li>🔎 Understand your system usage</li>
    <li>📃 Document your APIs for free</li>
    <li>🗄 Remove the need for complex data fixtures</li>
    <li>🤷‍♂️ Reduce the reliance on complex test environments</li>
</ul>

Watch our <a href="https://www.youtube.com/playlist?list=PLwy9Bnco-IpfZ72VQ7hce8GicVZs7nm0i">series</a> on the problems with end-to-end integrated tests, and how contract testing can help.

</td></tr></table></div>

<!-- markdownlint-enable no-inline-html -->

## Documentation

This readme provides a high-level overview of the Pact Python library. For detailed documentation, please refer to the [full Pact Python documentation](https://pact-foundation.github.io/pact-python). For a more general overview of Pact and the rest of the ecosystem, please refer to the [Pact documentation](https://docs.pact.io).

-   [Installation](#installation)
-   [Consumer testing](docs/consumer.md)
-   [Provider testing](docs/provider.md)
-   [Examples](examples/README.md)

Documentation for the API is generated from the docstrings in the code which you can view [here](https://pact-foundation.github.io/pact-python/pact). Please be aware that only the [`pact.v3` module][pact.v3] is thoroughly documented at this time.

### Need Help

-   [Join](https://slack.pact.io) our community [slack workspace][Pact Foundation Slack].
-   [Stack Overflow](https://stackoverflow.com/questions/tagged/pact) is a great place to ask questions.
-   Say 👋 on Twitter: [@pact_up](https://twitter.com/pact_up)
-   Join a discussion 💬 on [GitHub Discussions]
-   [Raise an issue][GitHub Issues] on GitHub

[Pact Foundation Slack]: https://pact-foundation.slack.com/
[GitHub Discussions]: https://github.com/pact-foundation/pact-python/discussions
[GitHub Issues]: https://github.com/pact-foundation/pact-python/issues

## V3 Preview

Pact Python is currently undergoing a major rewrite which will be released with the `3.0.0` version. This rewrite will replace the existing Ruby backend with a Rust backend which will provide a significant performance improvement and will allow us to support more features in the future. You can find more information about this rewrite in [this tracking issue on GitHub](https://github.com/pact-foundation/pact-python/issues/396).

You can preview the new version by using the [`pact.v3` module][pact.v3]. The new version is not yet feature complete, and may be subject to changes. Having said that, we would love to get your feedback on the new version:

-   For any issues you find, please [raise an issue][GitHub Issues] on GitHub.
-   For any feedback you have, please join the discussion either on [GitHub Discussions] or in the [`#pact-python`](https://pact-foundation.slack.com/archives/C9VECUP6E) channel on the [Pact Foundation Slack].

## Installation

The latest version of Pact Python can be installed from PyPi:

```sh
pip install pact-python
# 🚀 now write some tests!
```

### Requirements

Pact Python tries to support all versions of Python that are still supported by the Python Software Foundation. Older version of Python may work, but are not officially supported.

In order to support the broadest range of use cases, Pact Python tries to impose the least restrictions on the versions of libraries that it uses.

### Do Not Track

In order to get better statistics as to who is using Pact, we have an anonymous tracking event that triggers when Pact installs for the first time. The only things we [track](https://docs.pact.io/metrics) are your type of OS, and the version information for the package being installed. No personally identifiable information is sent as part of this request. You can disable tracking by setting the environment variable `PACT_DO_NOT_TRACK=1`:

## Contributing

We welcome contributions to the Pact Python library in many forms. There are many ways to help, from writing code, to providing new examples, to writing documentation, to testing the library and providing feedback. For more information, see the [contributing guide](CONTRIBUTING.md).

[![Table of contributors](https://contrib.rocks/image?repo=pact-foundation/pact-python)](https://github.com/pact-foundation/pact-python/graphs/contributors)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pact-python",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Joshua Ellis <josh@jpellis.me>",
    "keywords": "contract-testing, pact, testing",
    "author": null,
    "author_email": "Matthew Balvanz <matthew.balvanz@workiva.com>, Joshua Ellis <josh@jpellis.me>",
    "download_url": "https://files.pythonhosted.org/packages/53/13/987fead397c3be65938033b77bd68f9b9fbfe5d06bb1fa59f83be704e840/pact_python-2.2.1.tar.gz",
    "platform": null,
    "description": "# Pact Python\n\n<!-- markdownlint-disable no-inline-html -->\n<div align=\"center\">\n    <b>Fast, easy and reliable testing for your APIs and microservices.</b>\n</div>\n\n<div align=\"center\"><table>\n    <tr>\n        <td>Package</td>\n        <td>\n            <a href=\"https://pypi.python.org/pypi/pact-python\"><img src=\"https://img.shields.io/pypi/v/pact-python.svg\" alt=\"Version\"></a>\n            <a href=\"https://pypi.python.org/pypi/pact-python\"><img src=\"https://img.shields.io/pypi/pyversions/pact-python.svg\" alt=\"Python Versions\"></a>\n            <a href=\"https://pypi.python.org/pypi/pact-python\"><img src=\"https://img.shields.io/pypi/dm/pact-python.svg\" alt=\"Downloads\"></a>\n        </td>\n    </tr>\n    <tr>\n        <td>CI/CD</td>\n        <td>\n            <a\n                href=\"https://github.com/pact-foundation/pact-python/actions/workflows/test.yml\"><img\n                src=\"https://img.shields.io/github/actions/workflow/status/pact-foundation/pact-python/test.yml?branch=master&label=test\"\n                alt=\"Test Status\"></a>\n            <a\n                href=\"https://github.com/pact-foundation/pact-python/actions/workflows/build.yml\"><img\n                src=\"https://img.shields.io/github/actions/workflow/status/pact-foundation/pact-python/build.yml?branch=master&label=build\"\n                alt=\"Build Status\"></a>\n            <a\n                href=\"https://github.com/pact-foundation/pact-python/actions/workflows/docs.yml\"><img\n                src=\"https://img.shields.io/github/actions/workflow/status/pact-foundation/pact-python/docs.yml?branch=master&label=docs\"\n                alt=\"Build Status\"></a>\n        </td>\n    </tr>\n    <tr>\n        <td>Meta</td>\n        <td>\n            <a\n                href=\"https://github.com/pypa/hatch\"><img\n                src=\"https://img.shields.io/badge/%F0%9F%A5%9A-Hatch-4051b5.svg\"\n                alt=\"Hatch project\"></a>\n            <a href=\"https://github.com/astral-sh/ruff\"><img\n                src=\"https://img.shields.io/badge/ruff-ruff?label=linting&color=%23261230\"\n                alt=\"linting - Ruff\"></a>\n            <a href=\"https://github.com/astral-sh/ruff\"><img\n                src=\"https://img.shields.io/badge/ruff-ruff?label=style&color=%23261230\"\n                alt=\"style - Ruff\"></a>\n            <a\n                href=\"https://github.com/python/mypy\"><img\n                src=\"https://img.shields.io/badge/types-Mypy-blue.svg\"\n                alt=\"types - Mypy\"></a>\n            <a\n                href=\"https://pypi.python.org/pypi/ruff\"><img\n                src=\"https://img.shields.io/pypi/l/pact-python.svg\"\n                alt=\"License\"></a>\n        </td>\n    </tr>\n    <tr>\n        <td>Community</td>\n        <td>\n            <a\n                href=\"http://slack.pact.io\"><img\n                src=\"https://slack.pact.io/badge.svg\"\n                alt=\"Slack\"></a>\n            <a\n                href=\"https://stackoverflow.com/questions/tagged/pact\"><img\n                src=\"https://img.shields.io/badge/stackoverflow-pact-orange.svg\"\n                alt=\"Stack Overflow\"></a>\n            <a\n                href=\"https://twitter.com/pact_up\"><img\n                src=\"https://img.shields.io/twitter/follow/pact_up?style=social\"\n                alt=\"Twitter\"></a>\n        </td>\n    </tr>\n</table></div>\n\n<div align=\"center\"><table><tr><td>\n<b>Pact</b> is the de-facto API contract testing tool. Replace expensive and brittle end-to-end integration tests with fast, reliable and easy to debug unit tests.\n\n<ul style=\"list-style-type: none\">\n    <li>\u26a1 Lightning fast</li>\n    <li>\ud83c\udf88 Effortless full-stack integration testing - from the front-end to the back-end</li>\n    <li>\ud83d\udd0c Supports HTTP/REST and event-driven systems</li>\n    <li>\ud83d\udee0\ufe0f Configurable mock server</li>\n    <li>\ud83d\ude0c Powerful matching rules prevents brittle tests</li>\n    <li>\ud83e\udd1d Integrates with Pact Broker / PactFlow for powerful CI/CD workflows</li>\n    <li>\ud83d\udd21 Supports 12+ languages</li>\n</ul>\n\n<b>Why use Pact?</b> Contract testing with Pact lets you:\n\n<ul style=\"list-style-type: none\">\n    <li>\u26a1 Test locally</li>\n    <li>\ud83d\ude80 Deploy faster</li>\n    <li>\u2b07\ufe0f Reduce the lead time for change</li>\n    <li>\ud83d\udcb0 Reduce the cost of API integration testing</li>\n    <li>\ud83d\udca5 Prevent breaking changes</li>\n    <li>\ud83d\udd0e Understand your system usage</li>\n    <li>\ud83d\udcc3 Document your APIs for free</li>\n    <li>\ud83d\uddc4 Remove the need for complex data fixtures</li>\n    <li>\ud83e\udd37\u200d\u2642\ufe0f Reduce the reliance on complex test environments</li>\n</ul>\n\nWatch our <a href=\"https://www.youtube.com/playlist?list=PLwy9Bnco-IpfZ72VQ7hce8GicVZs7nm0i\">series</a> on the problems with end-to-end integrated tests, and how contract testing can help.\n\n</td></tr></table></div>\n\n<!-- markdownlint-enable no-inline-html -->\n\n## Documentation\n\nThis readme provides a high-level overview of the Pact Python library. For detailed documentation, please refer to the [full Pact Python documentation](https://pact-foundation.github.io/pact-python). For a more general overview of Pact and the rest of the ecosystem, please refer to the [Pact documentation](https://docs.pact.io).\n\n-   [Installation](#installation)\n-   [Consumer testing](docs/consumer.md)\n-   [Provider testing](docs/provider.md)\n-   [Examples](examples/README.md)\n\nDocumentation for the API is generated from the docstrings in the code which you can view [here](https://pact-foundation.github.io/pact-python/pact). Please be aware that only the [`pact.v3` module][pact.v3] is thoroughly documented at this time.\n\n### Need Help\n\n-   [Join](https://slack.pact.io) our community [slack workspace][Pact Foundation Slack].\n-   [Stack Overflow](https://stackoverflow.com/questions/tagged/pact) is a great place to ask questions.\n-   Say \ud83d\udc4b on Twitter: [@pact_up](https://twitter.com/pact_up)\n-   Join a discussion \ud83d\udcac on [GitHub Discussions]\n-   [Raise an issue][GitHub Issues] on GitHub\n\n[Pact Foundation Slack]: https://pact-foundation.slack.com/\n[GitHub Discussions]: https://github.com/pact-foundation/pact-python/discussions\n[GitHub Issues]: https://github.com/pact-foundation/pact-python/issues\n\n## V3 Preview\n\nPact Python is currently undergoing a major rewrite which will be released with the `3.0.0` version. This rewrite will replace the existing Ruby backend with a Rust backend which will provide a significant performance improvement and will allow us to support more features in the future. You can find more information about this rewrite in [this tracking issue on GitHub](https://github.com/pact-foundation/pact-python/issues/396).\n\nYou can preview the new version by using the [`pact.v3` module][pact.v3]. The new version is not yet feature complete, and may be subject to changes. Having said that, we would love to get your feedback on the new version:\n\n-   For any issues you find, please [raise an issue][GitHub Issues] on GitHub.\n-   For any feedback you have, please join the discussion either on [GitHub Discussions] or in the [`#pact-python`](https://pact-foundation.slack.com/archives/C9VECUP6E) channel on the [Pact Foundation Slack].\n\n## Installation\n\nThe latest version of Pact Python can be installed from PyPi:\n\n```sh\npip install pact-python\n# \ud83d\ude80 now write some tests!\n```\n\n### Requirements\n\nPact Python tries to support all versions of Python that are still supported by the Python Software Foundation. Older version of Python may work, but are not officially supported.\n\nIn order to support the broadest range of use cases, Pact Python tries to impose the least restrictions on the versions of libraries that it uses.\n\n### Do Not Track\n\nIn order to get better statistics as to who is using Pact, we have an anonymous tracking event that triggers when Pact installs for the first time. The only things we [track](https://docs.pact.io/metrics) are your type of OS, and the version information for the package being installed. No personally identifiable information is sent as part of this request. You can disable tracking by setting the environment variable `PACT_DO_NOT_TRACK=1`:\n\n## Contributing\n\nWe welcome contributions to the Pact Python library in many forms. There are many ways to help, from writing code, to providing new examples, to writing documentation, to testing the library and providing feedback. For more information, see the [contributing guide](CONTRIBUTING.md).\n\n[![Table of contributors](https://contrib.rocks/image?repo=pact-foundation/pact-python)](https://github.com/pact-foundation/pact-python/graphs/contributors)\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2017 Pact Foundation  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Tool for creating and verifying consumer-driven contracts using the Pact framework.",
    "version": "2.2.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/pact-foundation/pact-python/issues",
        "Changelog": "https://github.com/pact-foundation/pact-python/blob/master/CHANGELOG.md",
        "Documentation": "https://docs.pact.io",
        "Homepage": "https://pact.io",
        "Repository": "https://github.com/pact-foundation/pact-python"
    },
    "split_keywords": [
        "contract-testing",
        " pact",
        " testing"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bdc2108e4fb44a9338386e6f956df518a3393906d990d0a072d495c5486a678",
                "md5": "4100acf85bb9e5eecadfee67d3018a50",
                "sha256": "35e50958c6ba3de6ae1452606f6b4bae42ba42ccf57a90a4a3370201e80e6482"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4100acf85bb9e5eecadfee67d3018a50",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 30466117,
            "upload_time": "2024-07-22T05:09:07",
            "upload_time_iso_8601": "2024-07-22T05:09:07.670409Z",
            "url": "https://files.pythonhosted.org/packages/4b/dc/2108e4fb44a9338386e6f956df518a3393906d990d0a072d495c5486a678/pact_python-2.2.1-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a2d27ad451a495cfe472cf3d998cde082a04209deca6fbe447d20426a28e765",
                "md5": "29de157ae1c5c9b79557a048a845b523",
                "sha256": "04c36e4d1571e8cbe4df7ea4058c2b63ddde8b38a6ae5d180f8960061c9313d2"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "29de157ae1c5c9b79557a048a845b523",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 31449357,
            "upload_time": "2024-07-22T05:09:12",
            "upload_time_iso_8601": "2024-07-22T05:09:12.047611Z",
            "url": "https://files.pythonhosted.org/packages/1a/2d/27ad451a495cfe472cf3d998cde082a04209deca6fbe447d20426a28e765/pact_python-2.2.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bf5c3f493b03d0b5a6214253bac3e0d21ecee4634eedc4de5123a5d2d5fa069",
                "md5": "c85df9c85a2b0032151258c4c8233ea1",
                "sha256": "344cea6552bdb4dce9374a98ebb82fb24815297b28a1e59d010e469ff1a39a6d"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c85df9c85a2b0032151258c4c8233ea1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 33915582,
            "upload_time": "2024-07-22T05:09:16",
            "upload_time_iso_8601": "2024-07-22T05:09:16.189201Z",
            "url": "https://files.pythonhosted.org/packages/0b/f5/c3f493b03d0b5a6214253bac3e0d21ecee4634eedc4de5123a5d2d5fa069/pact_python-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9e4b2dcb3113f53349ff2474cf73cf18ebf6ed48e4eb677fbda0d155aa44a71",
                "md5": "149e2f5b8e5007564cc38b03ac2a6fba",
                "sha256": "a49fe6d445306d1d57e7f71b4640ff17f356a2d9c7b9a177f2742b359b295198"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "149e2f5b8e5007564cc38b03ac2a6fba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 32775022,
            "upload_time": "2024-07-22T05:09:20",
            "upload_time_iso_8601": "2024-07-22T05:09:20.233203Z",
            "url": "https://files.pythonhosted.org/packages/f9/e4/b2dcb3113f53349ff2474cf73cf18ebf6ed48e4eb677fbda0d155aa44a71/pact_python-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f44c203fd56bfb7c4b9cde3cafc129d18ad0458af3d32785d780be9871550ca1",
                "md5": "06a1c3721a00dd3dd4379e1eccd2ec47",
                "sha256": "f031c95f90fe55854c0bd44bc0cdbfc9f4868e6d24e9afe757c4e191ba0bf188"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "06a1c3721a00dd3dd4379e1eccd2ec47",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 15218800,
            "upload_time": "2024-07-22T05:09:23",
            "upload_time_iso_8601": "2024-07-22T05:09:23.778654Z",
            "url": "https://files.pythonhosted.org/packages/f4/4c/203fd56bfb7c4b9cde3cafc129d18ad0458af3d32785d780be9871550ca1/pact_python-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6ed67a2e06f07cbe295c7d73233c7f9a02373a682d8694cd016cc7b3c7dc9934",
                "md5": "e8542149bafe1911b502f97829f3bac1",
                "sha256": "fe9662d9428b4ba2951acf4d2e849d62bf5d0eb90062555d1116bbc799198b97"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e8542149bafe1911b502f97829f3bac1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 14195681,
            "upload_time": "2024-07-22T05:09:26",
            "upload_time_iso_8601": "2024-07-22T05:09:26.815784Z",
            "url": "https://files.pythonhosted.org/packages/6e/d6/7a2e06f07cbe295c7d73233c7f9a02373a682d8694cd016cc7b3c7dc9934/pact_python-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a184c79e33600b73305a92d30c4e09d61da1b71832608661bfaac978d569498f",
                "md5": "4e0bb0d87800ad6ff5a9373fcf1e104b",
                "sha256": "b7c61a8b857205b251d6b7bce24712c9bb50ea4a8ccd6016a84f1f04c453ddb2"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4e0bb0d87800ad6ff5a9373fcf1e104b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 22425774,
            "upload_time": "2024-07-22T05:09:30",
            "upload_time_iso_8601": "2024-07-22T05:09:30.168302Z",
            "url": "https://files.pythonhosted.org/packages/a1/84/c79e33600b73305a92d30c4e09d61da1b71832608661bfaac978d569498f/pact_python-2.2.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21e5693b37ef98895e43a8628c545369a18193f73db402b81982f8b493530524",
                "md5": "3801a5a2c85cc56e52a0033a92d933c8",
                "sha256": "df0a9e73baa1c9cb7d1446e88aa8e10e0b2ddcf925f468dc0da92c9a8d77534c"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3801a5a2c85cc56e52a0033a92d933c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 30466117,
            "upload_time": "2024-07-22T05:09:33",
            "upload_time_iso_8601": "2024-07-22T05:09:33.576476Z",
            "url": "https://files.pythonhosted.org/packages/21/e5/693b37ef98895e43a8628c545369a18193f73db402b81982f8b493530524/pact_python-2.2.1-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f4692012f58e1a1b395586b41de225f74b40637fd2e3e71a115f7ffe3f9655a",
                "md5": "08107cf4aa9ff25700dd7a9ac53fbd77",
                "sha256": "60dbe2d58aff5de5d251c23af8e9654708f0dae073c4e5e59fc26c0c962f216a"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "08107cf4aa9ff25700dd7a9ac53fbd77",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 31449356,
            "upload_time": "2024-07-22T05:09:37",
            "upload_time_iso_8601": "2024-07-22T05:09:37.858976Z",
            "url": "https://files.pythonhosted.org/packages/7f/46/92012f58e1a1b395586b41de225f74b40637fd2e3e71a115f7ffe3f9655a/pact_python-2.2.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3d587fd42747a70d3adf88d23a49ae7c0218b5b8fd25fa8a44ac805401ee620f",
                "md5": "7538a55ac5fdc4a5c108b1fcc77e3cf6",
                "sha256": "c16973257883886199f21b1c16226b654ceacf5a6b86331b539fde941e817e2d"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7538a55ac5fdc4a5c108b1fcc77e3cf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 33915595,
            "upload_time": "2024-07-22T05:09:42",
            "upload_time_iso_8601": "2024-07-22T05:09:42.364944Z",
            "url": "https://files.pythonhosted.org/packages/3d/58/7fd42747a70d3adf88d23a49ae7c0218b5b8fd25fa8a44ac805401ee620f/pact_python-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c1f2d64014c41714aaacff64066fc53742d96e7d51d6c6af504287423edf5bf1",
                "md5": "8a7691f96e679665ef9fb8d4356096c5",
                "sha256": "d19ed7c15673ffdb0e4f519e1b8a784919ef558736bc693f8f0384a30b3e8188"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8a7691f96e679665ef9fb8d4356096c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 32775026,
            "upload_time": "2024-07-22T05:09:46",
            "upload_time_iso_8601": "2024-07-22T05:09:46.639072Z",
            "url": "https://files.pythonhosted.org/packages/c1/f2/d64014c41714aaacff64066fc53742d96e7d51d6c6af504287423edf5bf1/pact_python-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe204c5e53e4ef1a4d2a4ac34bec420b5d886461d72e06ea332f2d02f70f4a16",
                "md5": "4402020a89e7b7d332ecdb4bd8dc5097",
                "sha256": "7154677c77b93b75a2fb933e15bfc0986bce1f05e1b396232b48cefd8cb7ee00"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4402020a89e7b7d332ecdb4bd8dc5097",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 15218712,
            "upload_time": "2024-07-22T05:09:51",
            "upload_time_iso_8601": "2024-07-22T05:09:51.289883Z",
            "url": "https://files.pythonhosted.org/packages/fe/20/4c5e53e4ef1a4d2a4ac34bec420b5d886461d72e06ea332f2d02f70f4a16/pact_python-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "390d2c5d608fff07f2bcd1c5eb61c929d57984789e406b5cff86fd42906b2a13",
                "md5": "95fc92af22869b4eeade67beb4fe0975",
                "sha256": "7a5a73ec22a0e018e19d67416aefd117ccd1ad3aaeb178286867a11f3b029644"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95fc92af22869b4eeade67beb4fe0975",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 14195650,
            "upload_time": "2024-07-22T05:09:54",
            "upload_time_iso_8601": "2024-07-22T05:09:54.332900Z",
            "url": "https://files.pythonhosted.org/packages/39/0d/2c5d608fff07f2bcd1c5eb61c929d57984789e406b5cff86fd42906b2a13/pact_python-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff82e6b53ee3ba53ed089c1cda4bee384810896462d925f1ec828cf59b03ca77",
                "md5": "426a36858d741135a4a084b39d52cdac",
                "sha256": "6c02ef8811d69d9dc5af95970d08e0113b4c6246a6a30db54cc7ccf1573e047d"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "426a36858d741135a4a084b39d52cdac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 22425778,
            "upload_time": "2024-07-22T05:09:57",
            "upload_time_iso_8601": "2024-07-22T05:09:57.911533Z",
            "url": "https://files.pythonhosted.org/packages/ff/82/e6b53ee3ba53ed089c1cda4bee384810896462d925f1ec828cf59b03ca77/pact_python-2.2.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56e5de25319512aab67a4812791a6bfbaeecd571eac0b252ba231678b9ccc25e",
                "md5": "a81977f9588946255d856daec4509f8c",
                "sha256": "992e970d918111edd86bdeb41d3a31fb75d6cef97032957b3361bc166b37ffc0"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a81977f9588946255d856daec4509f8c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 30466470,
            "upload_time": "2024-07-22T05:10:02",
            "upload_time_iso_8601": "2024-07-22T05:10:02.072496Z",
            "url": "https://files.pythonhosted.org/packages/56/e5/de25319512aab67a4812791a6bfbaeecd571eac0b252ba231678b9ccc25e/pact_python-2.2.1-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0fd89ed17cafcc1db3144fad4d32752831852b453f893fe5c0640217ea9b755f",
                "md5": "ad2f1001ac6e3505fcfaf105a38ac0c2",
                "sha256": "641a92d305d198a5b6725cf0ff0a8afd1793910691a651bb0cf3b74d7be55ad2"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ad2f1001ac6e3505fcfaf105a38ac0c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 31449551,
            "upload_time": "2024-07-22T05:10:05",
            "upload_time_iso_8601": "2024-07-22T05:10:05.493422Z",
            "url": "https://files.pythonhosted.org/packages/0f/d8/9ed17cafcc1db3144fad4d32752831852b453f893fe5c0640217ea9b755f/pact_python-2.2.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31b6edb27dcbfdd86e453005b488f8535bc6387c793138f60994c185b288ebba",
                "md5": "df9ce4545b2ec47acc0d5f9a25c5f622",
                "sha256": "8e61c40b1132f882bd71f07c52e31152b448c3f7c6dcc1f756749df2432c16c4"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "df9ce4545b2ec47acc0d5f9a25c5f622",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 33918016,
            "upload_time": "2024-07-22T05:10:09",
            "upload_time_iso_8601": "2024-07-22T05:10:09.410705Z",
            "url": "https://files.pythonhosted.org/packages/31/b6/edb27dcbfdd86e453005b488f8535bc6387c793138f60994c185b288ebba/pact_python-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea03ecadcbb51008c43de63fd47bdea33255b4a740d7311a056bedd170994cd6",
                "md5": "2b65baf6d0a6c03fad7e7873e13284a7",
                "sha256": "95780e8acf69012ec7b94cba3372e4f8615f75762627cc981bae2c872853f4ec"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2b65baf6d0a6c03fad7e7873e13284a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 32777956,
            "upload_time": "2024-07-22T05:10:13",
            "upload_time_iso_8601": "2024-07-22T05:10:13.530085Z",
            "url": "https://files.pythonhosted.org/packages/ea/03/ecadcbb51008c43de63fd47bdea33255b4a740d7311a056bedd170994cd6/pact_python-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42f43eb0125e5a2cb3f0254825e0b6685756ebef9825d52f2e34c825885b6438",
                "md5": "2de57c697fbad21572b0dc7f3a1a3dcc",
                "sha256": "b87633f57c1c9220bbd28cbb100173cef6f9155f00380933509ded5809ea7cad"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2de57c697fbad21572b0dc7f3a1a3dcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 15221032,
            "upload_time": "2024-07-22T05:10:17",
            "upload_time_iso_8601": "2024-07-22T05:10:17.261883Z",
            "url": "https://files.pythonhosted.org/packages/42/f4/3eb0125e5a2cb3f0254825e0b6685756ebef9825d52f2e34c825885b6438/pact_python-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "43dd69706a7653fe7a030d785e936a638e9c2ba97b316d36ea012a2d1f6fa849",
                "md5": "30759f420fd009347935d4f053300513",
                "sha256": "4186b2622595b85b6e609134db8531a159cee6caf6f89287ef550745cb8c4ba1"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30759f420fd009347935d4f053300513",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 14197390,
            "upload_time": "2024-07-22T05:10:20",
            "upload_time_iso_8601": "2024-07-22T05:10:20.272869Z",
            "url": "https://files.pythonhosted.org/packages/43/dd/69706a7653fe7a030d785e936a638e9c2ba97b316d36ea012a2d1f6fa849/pact_python-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45812a97af91e56e09b391c5516695859ecde25a7c791f0b0c44745a615181ba",
                "md5": "f56b7f6e5ec782660ec2986f120cb710",
                "sha256": "e647920d39f279e3641a29f903d0cf7cf69e0c021ac10b64eec0d03922395bed"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f56b7f6e5ec782660ec2986f120cb710",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 22425869,
            "upload_time": "2024-07-22T05:10:23",
            "upload_time_iso_8601": "2024-07-22T05:10:23.705950Z",
            "url": "https://files.pythonhosted.org/packages/45/81/2a97af91e56e09b391c5516695859ecde25a7c791f0b0c44745a615181ba/pact_python-2.2.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b6e4f46b01e573bac4d7d55f325d3f316eb7d33c35421c72da627ac0333cb79",
                "md5": "41fa1bc1e35f6ea695646a5bf09b5fab",
                "sha256": "69664b11f8c0a480e21e5a29df7b17005bd442530526f459d02ac5878209db4d"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "41fa1bc1e35f6ea695646a5bf09b5fab",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 30466110,
            "upload_time": "2024-07-22T05:10:27",
            "upload_time_iso_8601": "2024-07-22T05:10:27.291857Z",
            "url": "https://files.pythonhosted.org/packages/9b/6e/4f46b01e573bac4d7d55f325d3f316eb7d33c35421c72da627ac0333cb79/pact_python-2.2.1-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29cac6b44c8194f7f84c17eec6c55d089f8e5a3f32eb4e7e6c2ef352999a3f85",
                "md5": "82da9ca81113c6eacdb749b9cf9a4eb5",
                "sha256": "28766746915fa0f7845cd8684fba8f6b33181fb48f859a89d1250c124b46ecef"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "82da9ca81113c6eacdb749b9cf9a4eb5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 20038849,
            "upload_time": "2024-07-22T05:10:30",
            "upload_time_iso_8601": "2024-07-22T05:10:30.913484Z",
            "url": "https://files.pythonhosted.org/packages/29/ca/c6b44c8194f7f84c17eec6c55d089f8e5a3f32eb4e7e6c2ef352999a3f85/pact_python-2.2.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4350511962c5652aa12de96d54da8133adefab692396e0234666ab68f612119",
                "md5": "3282eeab3cc17a57b1ae0fe1391dde1f",
                "sha256": "c44d77d871d1695b906bfef72a1d26066ae689e935c334cbfe4775603dda8f3b"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3282eeab3cc17a57b1ae0fe1391dde1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 33915759,
            "upload_time": "2024-07-22T05:10:35",
            "upload_time_iso_8601": "2024-07-22T05:10:35.313668Z",
            "url": "https://files.pythonhosted.org/packages/e4/35/0511962c5652aa12de96d54da8133adefab692396e0234666ab68f612119/pact_python-2.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb3d6d5311a5cf346a4c9e5bda127009d2b0c30f7f79c3612d2b4b18489d644b",
                "md5": "8207d81f2309a5172dce84d054d526e3",
                "sha256": "2734dbdb3e6c9717978724231d4067b5decf0e1c0b827a914804e259ee5b4766"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8207d81f2309a5172dce84d054d526e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 32775299,
            "upload_time": "2024-07-22T05:10:40",
            "upload_time_iso_8601": "2024-07-22T05:10:40.688017Z",
            "url": "https://files.pythonhosted.org/packages/bb/3d/6d5311a5cf346a4c9e5bda127009d2b0c30f7f79c3612d2b4b18489d644b/pact_python-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "633d92b8d75c095463b5a601c1e78fa18dff4edbbb5c27b8425c1f8640cde639",
                "md5": "14c762c83a5c77b6370c2c88dcc318a8",
                "sha256": "5ada4b115c3bbd6705b7c17357a2440f273da3fd8bf69dfdeb40b33869f30095"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "14c762c83a5c77b6370c2c88dcc318a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 15218783,
            "upload_time": "2024-07-22T05:10:44",
            "upload_time_iso_8601": "2024-07-22T05:10:44.015438Z",
            "url": "https://files.pythonhosted.org/packages/63/3d/92b8d75c095463b5a601c1e78fa18dff4edbbb5c27b8425c1f8640cde639/pact_python-2.2.1-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bc68ca2fb8422cc9cf32978e9578d7c6eba539376bdf00b65d5b6b6ddd22bb9f",
                "md5": "079d50a91ae37b582286399f485eb9d2",
                "sha256": "1047284367d2980d3dc0b013072e908bb893282025d30a764f15128a6ec64da4"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "079d50a91ae37b582286399f485eb9d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 14195692,
            "upload_time": "2024-07-22T05:10:47",
            "upload_time_iso_8601": "2024-07-22T05:10:47.275762Z",
            "url": "https://files.pythonhosted.org/packages/bc/68/ca2fb8422cc9cf32978e9578d7c6eba539376bdf00b65d5b6b6ddd22bb9f/pact_python-2.2.1-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "468f6ca1f9b6f73f38e2f311dff9834bd45af10e03418d5fe274ce3bb67e0515",
                "md5": "fdc6f9ba510b867ebb13fc82dfffd9d0",
                "sha256": "19f37e227ff649e3b2fc1beb276b4f7bfbf827c0aa80375c8ad676fa70c6f6b6"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fdc6f9ba510b867ebb13fc82dfffd9d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 22425764,
            "upload_time": "2024-07-22T05:10:50",
            "upload_time_iso_8601": "2024-07-22T05:10:50.456442Z",
            "url": "https://files.pythonhosted.org/packages/46/8f/6ca1f9b6f73f38e2f311dff9834bd45af10e03418d5fe274ce3bb67e0515/pact_python-2.2.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "996627a6005e2681435849ff84430cec4aae3e823213ab3f301413746a8b5fef",
                "md5": "55f7df33391ab506c119faa0d87dc350",
                "sha256": "60bdffaa7231e814aa36c6993ecfa88f9c85dd3d42fb5e62e90304d75e35d9b8"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55f7df33391ab506c119faa0d87dc350",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 30466108,
            "upload_time": "2024-07-22T05:10:54",
            "upload_time_iso_8601": "2024-07-22T05:10:54.076434Z",
            "url": "https://files.pythonhosted.org/packages/99/66/27a6005e2681435849ff84430cec4aae3e823213ab3f301413746a8b5fef/pact_python-2.2.1-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79c0daee62591f958986d5b1e62e1dd3b9c6e18653fb7ae0800c2edd2380984d",
                "md5": "438c278404a42d9a7602fcdb93cc6879",
                "sha256": "48d933f26f8a0fd5c94b4fd1cf1d8697e5492f457810a306f8bc4eed900a6a84"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "438c278404a42d9a7602fcdb93cc6879",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 31449356,
            "upload_time": "2024-07-22T05:10:58",
            "upload_time_iso_8601": "2024-07-22T05:10:58.025268Z",
            "url": "https://files.pythonhosted.org/packages/79/c0/daee62591f958986d5b1e62e1dd3b9c6e18653fb7ae0800c2edd2380984d/pact_python-2.2.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53931934650b8779d6ee7d279eeac050cca9ff49cfe725834f21db54580118cb",
                "md5": "215b9b2d9587bd2f61ec96d24de6aad5",
                "sha256": "3532372e2ab35c914b7ed2dafca9861124b4440919e3ba24b96cc4965d4c1bae"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "215b9b2d9587bd2f61ec96d24de6aad5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 33915540,
            "upload_time": "2024-07-22T05:11:02",
            "upload_time_iso_8601": "2024-07-22T05:11:02.442248Z",
            "url": "https://files.pythonhosted.org/packages/53/93/1934650b8779d6ee7d279eeac050cca9ff49cfe725834f21db54580118cb/pact_python-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ace6ac2797e4c49405b4c5c8047c00d97a111f8a98512967121317205d4fde6",
                "md5": "7e28230da43afea8a41556ee5773d4ab",
                "sha256": "5ff677cc8f27a3567c9308bb1a0e7e0707984db3af6f62fa13b7ddae14f3df64"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e28230da43afea8a41556ee5773d4ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 32775000,
            "upload_time": "2024-07-22T05:11:06",
            "upload_time_iso_8601": "2024-07-22T05:11:06.674073Z",
            "url": "https://files.pythonhosted.org/packages/8a/ce/6ac2797e4c49405b4c5c8047c00d97a111f8a98512967121317205d4fde6/pact_python-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9e73a5b1ab5b6e3eadf6bf3a0b5694bd2a6333b743c23065d8b1beb98b50e60",
                "md5": "83e163ced46572e0fbf2cb64e3e8e7d6",
                "sha256": "46d9fbc0d1be3c34e01a1b5f4467a975473e3f35b939254448e98bb6c86b9791"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "83e163ced46572e0fbf2cb64e3e8e7d6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 15218799,
            "upload_time": "2024-07-22T05:11:10",
            "upload_time_iso_8601": "2024-07-22T05:11:10.799742Z",
            "url": "https://files.pythonhosted.org/packages/c9/e7/3a5b1ab5b6e3eadf6bf3a0b5694bd2a6333b743c23065d8b1beb98b50e60/pact_python-2.2.1-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3512aac941c87a06985680a10b4909d1dec85874b3341fe1263014d784a35bc5",
                "md5": "aacec1fffb01522b67f2cd956680bd5e",
                "sha256": "90174d5407c2b8c90ff5fcbcaaf706f06ab6392f81d619fac48a2a6b234086ad"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aacec1fffb01522b67f2cd956680bd5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 14195662,
            "upload_time": "2024-07-22T05:11:14",
            "upload_time_iso_8601": "2024-07-22T05:11:14.213168Z",
            "url": "https://files.pythonhosted.org/packages/35/12/aac941c87a06985680a10b4909d1dec85874b3341fe1263014d784a35bc5/pact_python-2.2.1-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07c2025917fe07255505c9fca5ef6f3538dd0f3bac66a8e8bbf668dfda93844b",
                "md5": "dff31068acf9b1248e0a6050694fc73c",
                "sha256": "7c87204065573476fb51ba0ccc7a31f4edc8c616a60dcd0e2958993d6bdb9917"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dff31068acf9b1248e0a6050694fc73c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 22425765,
            "upload_time": "2024-07-22T05:11:17",
            "upload_time_iso_8601": "2024-07-22T05:11:17.643361Z",
            "url": "https://files.pythonhosted.org/packages/07/c2/025917fe07255505c9fca5ef6f3538dd0f3bac66a8e8bbf668dfda93844b/pact_python-2.2.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19793225b8c007d4f556b9134bb16dea5e674b1837aa4ac6849a4ad983b7552f",
                "md5": "1fd369c81e2ba2273a0657bed7e84ca6",
                "sha256": "f9d982ddf926893a6b3413c14481bef4b6f5f0ead803439a549bec3331cee55f"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1fd369c81e2ba2273a0657bed7e84ca6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 30421314,
            "upload_time": "2024-07-22T05:11:21",
            "upload_time_iso_8601": "2024-07-22T05:11:21.562343Z",
            "url": "https://files.pythonhosted.org/packages/19/79/3225b8c007d4f556b9134bb16dea5e674b1837aa4ac6849a4ad983b7552f/pact_python-2.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ec63b9850d49313518a4147b70a02756b793c2b1e3c7dd5e4b0f50f9c09b4e1",
                "md5": "c6b9436ca601fd82cece7ccb3e463f26",
                "sha256": "ea26bce55b45a2187b9f67930cafd8f865e59be2ba3b4cc9bb7fd7e74dd604d2"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c6b9436ca601fd82cece7ccb3e463f26",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 31409198,
            "upload_time": "2024-07-22T05:11:25",
            "upload_time_iso_8601": "2024-07-22T05:11:25.577454Z",
            "url": "https://files.pythonhosted.org/packages/9e/c6/3b9850d49313518a4147b70a02756b793c2b1e3c7dd5e4b0f50f9c09b4e1/pact_python-2.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9a15db379216d9c664004bfa50499716111a2d3dbdb191bf1dd549547acc2bd",
                "md5": "8639670486009750379d7571a0e86e70",
                "sha256": "38c7db2c8f9df3e20a453d1668606ebbd580c60914313c6bdbe5e8e3d5f32605"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8639670486009750379d7571a0e86e70",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 33466533,
            "upload_time": "2024-07-22T05:11:29",
            "upload_time_iso_8601": "2024-07-22T05:11:29.807236Z",
            "url": "https://files.pythonhosted.org/packages/f9/a1/5db379216d9c664004bfa50499716111a2d3dbdb191bf1dd549547acc2bd/pact_python-2.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc849d6d25fbb3b1c1830e3442a1955161c0a0ddc364c77734a73f9b8390092d",
                "md5": "6969025fde912c3b1e4f6cef07fe6410",
                "sha256": "416e3cab299d6398b868ae37b621e1bfa6303ebec0353c7f0b7c2b5fef2151ae"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6969025fde912c3b1e4f6cef07fe6410",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 32644674,
            "upload_time": "2024-07-22T05:11:34",
            "upload_time_iso_8601": "2024-07-22T05:11:34.444978Z",
            "url": "https://files.pythonhosted.org/packages/fc/84/9d6d25fbb3b1c1830e3442a1955161c0a0ddc364c77734a73f9b8390092d/pact_python-2.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53d986c47b968f18997cb5caf25773577300536ddad7626e0d38361fcc930a97",
                "md5": "fc8b7cef3d286d8e94e457828d1eaff4",
                "sha256": "d15971ed1268215a440db40ea6e504278929764ad7bac46a5257a39e45050e2f"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fc8b7cef3d286d8e94e457828d1eaff4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 22389431,
            "upload_time": "2024-07-22T05:11:39",
            "upload_time_iso_8601": "2024-07-22T05:11:39.216734Z",
            "url": "https://files.pythonhosted.org/packages/53/d9/86c47b968f18997cb5caf25773577300536ddad7626e0d38361fcc930a97/pact_python-2.2.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a6e61c6a27a151575e9ab8d649855e67bf8efcec0fc844ee92e7c269ac7e2f55",
                "md5": "7a927f5435573206ca7c58650a24263a",
                "sha256": "84778e38e46fe17d7a84e562dfe1ab9c874292952a68a25c3ecfc8e6254f5be0"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a927f5435573206ca7c58650a24263a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 30421307,
            "upload_time": "2024-07-22T05:11:43",
            "upload_time_iso_8601": "2024-07-22T05:11:43.591513Z",
            "url": "https://files.pythonhosted.org/packages/a6/e6/1c6a27a151575e9ab8d649855e67bf8efcec0fc844ee92e7c269ac7e2f55/pact_python-2.2.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "071dbff53385f9823d6f547004ef9d32de38ac1392289843cf968dc0f2e3582b",
                "md5": "606042fc9948481b421ab31d1634bdc9",
                "sha256": "2b670b9d9543fcba1bd5f3ca1a179d2cc2ff42fc3b6e523a0c68b259d165cac1"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "606042fc9948481b421ab31d1634bdc9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 31409196,
            "upload_time": "2024-07-22T05:11:48",
            "upload_time_iso_8601": "2024-07-22T05:11:48.451332Z",
            "url": "https://files.pythonhosted.org/packages/07/1d/bff53385f9823d6f547004ef9d32de38ac1392289843cf968dc0f2e3582b/pact_python-2.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f9a651ba1f20b65fd1bb78deaa5baf972aa8835f8e68a09db43018e58f68f4b5",
                "md5": "525d77497c3e0e1ffe362131fbc5871c",
                "sha256": "d3a32a57b4e945078f6530bb96a0279ddc2ec54be7081ee812aa7e8c65052d33"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "525d77497c3e0e1ffe362131fbc5871c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 33466524,
            "upload_time": "2024-07-22T05:11:53",
            "upload_time_iso_8601": "2024-07-22T05:11:53.424999Z",
            "url": "https://files.pythonhosted.org/packages/f9/a6/51ba1f20b65fd1bb78deaa5baf972aa8835f8e68a09db43018e58f68f4b5/pact_python-2.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b5e87248b2e97320c83b5bcbd937d502143d0d240a2230966240b318ea973a5",
                "md5": "3d626cd495065ecb82eab83ddce79548",
                "sha256": "ad34713267b4feeb699de1830d7ac00427de2d44f7cd1a54fcca131c5cd551b8"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d626cd495065ecb82eab83ddce79548",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 32644673,
            "upload_time": "2024-07-22T05:11:58",
            "upload_time_iso_8601": "2024-07-22T05:11:58.643105Z",
            "url": "https://files.pythonhosted.org/packages/6b/5e/87248b2e97320c83b5bcbd937d502143d0d240a2230966240b318ea973a5/pact_python-2.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee0b66ea26bc2c9da3815048baf3faf5ee9e4fe4016ee02679c0c9aa073bf7bb",
                "md5": "4953caee124cf70c651341a0c5921f41",
                "sha256": "e4d17d81e8c93da34d7700c561e0f05684c0894d9b4ebaa8068c25d55e430c21"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4953caee124cf70c651341a0c5921f41",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 22389427,
            "upload_time": "2024-07-22T05:12:02",
            "upload_time_iso_8601": "2024-07-22T05:12:02.492511Z",
            "url": "https://files.pythonhosted.org/packages/ee/0b/66ea26bc2c9da3815048baf3faf5ee9e4fe4016ee02679c0c9aa073bf7bb/pact_python-2.2.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5313987fead397c3be65938033b77bd68f9b9fbfe5d06bb1fa59f83be704e840",
                "md5": "80ccc843d7c1d5ea98bdf19d6839f222",
                "sha256": "f27b804efb7d9c964caefc33b5f5f4a3c41aaf38787a03233b27b438adc8fb2f"
            },
            "downloads": -1,
            "filename": "pact_python-2.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "80ccc843d7c1d5ea98bdf19d6839f222",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 130609,
            "upload_time": "2024-07-22T05:12:04",
            "upload_time_iso_8601": "2024-07-22T05:12:04.924985Z",
            "url": "https://files.pythonhosted.org/packages/53/13/987fead397c3be65938033b77bd68f9b9fbfe5d06bb1fa59f83be704e840/pact_python-2.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-22 05:12:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pact-foundation",
    "github_project": "pact-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pact-python"
}
        
Elapsed time: 3.78533s