psqlpy


Namepsqlpy JSON
Version 0.8.6 PyPI version JSON
download
home_pageNone
SummaryAsync PostgreSQL driver for Python written in Rust
upload_time2024-12-10 18:11:05
maintainerNone
docs_urlNone
authorKiselev Aleksandr
requires_python>=3.8
licenseNone
keywords postgresql psql async-driver psql-driver postgresql-driver python-driver
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/psqlpy?style=for-the-badge)](https://pypi.org/project/psqlpy/)
[![PyPI](https://img.shields.io/pypi/v/psqlpy?style=for-the-badge)](https://pypi.org/project/psqlpy/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/psqlpy?style=for-the-badge)](https://pypistats.org/packages/psqlpy)

# PSQLPy - Async PostgreSQL driver for Python written in Rust.

Driver for PostgreSQL written fully in Rust and exposed to Python.
Main goals of the library is speed and type safety.

## Documentation
You can find full documentation here - [PSQLPy documentation](https://psqlpy-python.github.io/)

## Installation

You can install package with `pip` or `poetry`.

poetry:

```bash
> poetry add psqlpy
```

pip:

```bash
> pip install psqlpy
```

Or you can build it by yourself. To do it, install stable rust and [maturin](https://github.com/PyO3/maturin).

```
> maturin develop --release
```

## Usage

Usage is as easy as possible.
Create new instance of ConnectionPool and start querying.
You don't need to startup connection pool, the connection pool will create connections as needed.

```python
from typing import Any

from psqlpy import ConnectionPool, QueryResult


async def main() -> None:
    db_pool = ConnectionPool(
        username="postgres",
        password="pg_password",
        host="localhost",
        port=5432,
        db_name="postgres",
        max_db_pool_size=2,
    )

    res: QueryResult = await db_pool.execute(
        "SELECT * FROM users",
    )

    print(res.result())
    db_pool.close()

```

## Benchmarks

You can find benchmarks with visualization on our [docs](https://psqlpy-python.github.io/benchmarks.html)

## Community
Let's make `PSQLPy` better together!
Join our community in [Telegram](https://t.me/+f3Y8mYKgXxhmYThi)


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "psqlpy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Kiselev Aleksandr <askiselev00@gmail.com>",
    "keywords": "postgresql, psql, async-driver, psql-driver, postgresql-driver, python-driver",
    "author": "Kiselev Aleksandr",
    "author_email": "askiselev00@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/68/e4/15cb57c699148a6a01680f95c150019bf2d2b7bd5c6184d63d3005b99fe3/psqlpy-0.8.6.tar.gz",
    "platform": null,
    "description": "[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/psqlpy?style=for-the-badge)](https://pypi.org/project/psqlpy/)\n[![PyPI](https://img.shields.io/pypi/v/psqlpy?style=for-the-badge)](https://pypi.org/project/psqlpy/)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/psqlpy?style=for-the-badge)](https://pypistats.org/packages/psqlpy)\n\n# PSQLPy - Async PostgreSQL driver for Python written in Rust.\n\nDriver for PostgreSQL written fully in Rust and exposed to Python.\nMain goals of the library is speed and type safety.\n\n## Documentation\nYou can find full documentation here - [PSQLPy documentation](https://psqlpy-python.github.io/)\n\n## Installation\n\nYou can install package with `pip` or `poetry`.\n\npoetry:\n\n```bash\n> poetry add psqlpy\n```\n\npip:\n\n```bash\n> pip install psqlpy\n```\n\nOr you can build it by yourself. To do it, install stable rust and [maturin](https://github.com/PyO3/maturin).\n\n```\n> maturin develop --release\n```\n\n## Usage\n\nUsage is as easy as possible.\nCreate new instance of ConnectionPool and start querying.\nYou don't need to startup connection pool, the connection pool will create connections as needed.\n\n```python\nfrom typing import Any\n\nfrom psqlpy import ConnectionPool, QueryResult\n\n\nasync def main() -> None:\n    db_pool = ConnectionPool(\n        username=\"postgres\",\n        password=\"pg_password\",\n        host=\"localhost\",\n        port=5432,\n        db_name=\"postgres\",\n        max_db_pool_size=2,\n    )\n\n    res: QueryResult = await db_pool.execute(\n        \"SELECT * FROM users\",\n    )\n\n    print(res.result())\n    db_pool.close()\n\n```\n\n## Benchmarks\n\nYou can find benchmarks with visualization on our [docs](https://psqlpy-python.github.io/benchmarks.html)\n\n## Community\nLet's make `PSQLPy` better together!\nJoin our community in [Telegram](https://t.me/+f3Y8mYKgXxhmYThi)\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Async PostgreSQL driver for Python written in Rust",
    "version": "0.8.6",
    "project_urls": {
        "documentation": "https://psqlpy-python.github.io/",
        "homepage": "https://github.com/psqlpy-python/psqlpy",
        "repository": "https://github.com/psqlpy-python/psqlpy"
    },
    "split_keywords": [
        "postgresql",
        " psql",
        " async-driver",
        " psql-driver",
        " postgresql-driver",
        " python-driver"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b14314a60bdc49b52dafed075b2ce884d2b79e49cf153ddedcfaa83c876fe0a",
                "md5": "c80f0c9c2439c06eb4c493566c8c817d",
                "sha256": "e32b94ba9c96003b3df2d141d4fe5f133ab6eca887d51633dd8d672de694d27b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c80f0c9c2439c06eb4c493566c8c817d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3359905,
            "upload_time": "2024-12-10T18:04:04",
            "upload_time_iso_8601": "2024-12-10T18:04:04.734322Z",
            "url": "https://files.pythonhosted.org/packages/6b/14/314a60bdc49b52dafed075b2ce884d2b79e49cf153ddedcfaa83c876fe0a/psqlpy-0.8.6-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "661eea4ed0689ec482412c7d1dc09722c8e5c3807aeb293ebf77c14ba51c2f93",
                "md5": "227f8e116c8dfb489db2fbfa017b84a4",
                "sha256": "0b42eb7d0069f7c09384e0b8cdfa31ae5a8c628afc05a8ed17151888aa921b59"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "227f8e116c8dfb489db2fbfa017b84a4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3652193,
            "upload_time": "2024-12-10T18:04:09",
            "upload_time_iso_8601": "2024-12-10T18:04:09.117901Z",
            "url": "https://files.pythonhosted.org/packages/66/1e/ea4ed0689ec482412c7d1dc09722c8e5c3807aeb293ebf77c14ba51c2f93/psqlpy-0.8.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "491e6f98675befd631db4ff64e67c89059043251272c5171d837dc70a970afd6",
                "md5": "d77ff381eedd6ba74447b0002fb32deb",
                "sha256": "26b3ca01baf550460bde6f76a02ebf726f309e12a4ff1950eb8b124b3ebfca42"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d77ff381eedd6ba74447b0002fb32deb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4097965,
            "upload_time": "2024-12-10T18:04:12",
            "upload_time_iso_8601": "2024-12-10T18:04:12.602643Z",
            "url": "https://files.pythonhosted.org/packages/49/1e/6f98675befd631db4ff64e67c89059043251272c5171d837dc70a970afd6/psqlpy-0.8.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b74d49ef8f4cbc5916fe931381256cccfd62afaacd831ce60bf29421cbe90cef",
                "md5": "233a21209acd5371babeb88f212a264c",
                "sha256": "0bccddfacc3928f51f7ec9a282ecfedfdcbcff160e3024cf8fb45306c38df3d4"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "233a21209acd5371babeb88f212a264c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3422717,
            "upload_time": "2024-12-10T18:04:15",
            "upload_time_iso_8601": "2024-12-10T18:04:15.013946Z",
            "url": "https://files.pythonhosted.org/packages/b7/4d/49ef8f4cbc5916fe931381256cccfd62afaacd831ce60bf29421cbe90cef/psqlpy-0.8.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cef923a3b4b77188e4697ed5d3bd2ebb2fc3720a7fd29236d58678585977735c",
                "md5": "16628248fe3f020be2f65ae850a5d4d3",
                "sha256": "5e6c5d48f065bc049c744614dc366ce56342de1751fa3e22e2464bb398f88f7f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "16628248fe3f020be2f65ae850a5d4d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3920508,
            "upload_time": "2024-12-10T18:04:17",
            "upload_time_iso_8601": "2024-12-10T18:04:17.037577Z",
            "url": "https://files.pythonhosted.org/packages/ce/f9/23a3b4b77188e4697ed5d3bd2ebb2fc3720a7fd29236d58678585977735c/psqlpy-0.8.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "afa8d09466d6c3a010532d939147e3685d8843d41400d980f0671ade061b0ec4",
                "md5": "d48503a5c7f9609c1caccde12a5f8a9a",
                "sha256": "6c26020f18cfc38bf0fa9b9ef422bd56d7992ad4d56c228410cc12059bbffe24"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "d48503a5c7f9609c1caccde12a5f8a9a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3774533,
            "upload_time": "2024-12-10T18:04:20",
            "upload_time_iso_8601": "2024-12-10T18:04:20.443459Z",
            "url": "https://files.pythonhosted.org/packages/af/a8/d09466d6c3a010532d939147e3685d8843d41400d980f0671ade061b0ec4/psqlpy-0.8.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f31539507534b145a6b122d19cfaca7afb5ad49df458ba3e5f219957bfb2bd8",
                "md5": "ce30413cd6176ce45c98dd67a4eb6c77",
                "sha256": "0be59df1bf4ae4dcfc9786561c21e4e1d078ad4fa525547718d2fc3ad8b47523"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ce30413cd6176ce45c98dd67a4eb6c77",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3875949,
            "upload_time": "2024-12-10T18:04:26",
            "upload_time_iso_8601": "2024-12-10T18:04:26.286710Z",
            "url": "https://files.pythonhosted.org/packages/7f/31/539507534b145a6b122d19cfaca7afb5ad49df458ba3e5f219957bfb2bd8/psqlpy-0.8.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "30ddda7c6f9e5a54ea9d0f7d801390f86be0f3c18ee77f2850e5b35780ed4d5d",
                "md5": "2cf490b5c1464cef7a2a15f50cc5b9b1",
                "sha256": "49c45d0760d6e6cde8b0c68e7338ea9dcab230ec445b3b7c3cc667de3a57ac00"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2cf490b5c1464cef7a2a15f50cc5b9b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3933743,
            "upload_time": "2024-12-10T18:04:28",
            "upload_time_iso_8601": "2024-12-10T18:04:28.778784Z",
            "url": "https://files.pythonhosted.org/packages/30/dd/da7c6f9e5a54ea9d0f7d801390f86be0f3c18ee77f2850e5b35780ed4d5d/psqlpy-0.8.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a8a9950abd20404689f36780c75ac9c0100de85e73e75b380852662ae9051930",
                "md5": "0e091751ffe6ea5a857c52de4c7af307",
                "sha256": "469aa263baad18c128200c7412ade0cd6e84b52f669c1386a19fb5ef69a0ba8e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "0e091751ffe6ea5a857c52de4c7af307",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4005261,
            "upload_time": "2024-12-10T18:04:30",
            "upload_time_iso_8601": "2024-12-10T18:04:30.923602Z",
            "url": "https://files.pythonhosted.org/packages/a8/a9/950abd20404689f36780c75ac9c0100de85e73e75b380852662ae9051930/psqlpy-0.8.6-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec262a8451247a202406a6bd2e533e9a10991cd2eb90f87b7380050ae0ca0e03",
                "md5": "6459ff306c6dc3b0b5d557df2f92ab83",
                "sha256": "c172ca50d510a8934a24cfccca5c47bc247efc8a45cdc5cee1e86645a22a2a7e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6459ff306c6dc3b0b5d557df2f92ab83",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4071878,
            "upload_time": "2024-12-10T18:04:32",
            "upload_time_iso_8601": "2024-12-10T18:04:32.981577Z",
            "url": "https://files.pythonhosted.org/packages/ec/26/2a8451247a202406a6bd2e533e9a10991cd2eb90f87b7380050ae0ca0e03/psqlpy-0.8.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee9dad90e3f60a52989e33ed4262173687673f010f0556fdf6ed4faad00273d4",
                "md5": "3b4a37299166262a81760387e437df03",
                "sha256": "0641a2a2caeb57e6f8a20e7b53a2bedf7f1c2b1bd45f8dab6bf813b5a5e55d98"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "3b4a37299166262a81760387e437df03",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2613415,
            "upload_time": "2024-12-10T18:04:35",
            "upload_time_iso_8601": "2024-12-10T18:04:35.167961Z",
            "url": "https://files.pythonhosted.org/packages/ee/9d/ad90e3f60a52989e33ed4262173687673f010f0556fdf6ed4faad00273d4/psqlpy-0.8.6-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b1b434d91f18da61db4d0dd4c109f8e905cd52e912b4f4ede6b35c207c38a5f",
                "md5": "600f4baf3cbc29d0c7b626177456cbf2",
                "sha256": "45a781990d682dfc2bef11666faaeabf4017ffde24832908363be9202755cde3"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "600f4baf3cbc29d0c7b626177456cbf2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2947514,
            "upload_time": "2024-12-10T18:04:38",
            "upload_time_iso_8601": "2024-12-10T18:04:38.690109Z",
            "url": "https://files.pythonhosted.org/packages/6b/1b/434d91f18da61db4d0dd4c109f8e905cd52e912b4f4ede6b35c207c38a5f/psqlpy-0.8.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "448be61840ab373c820c126c61039726643cc65b4d454e79ce6165a0285c4881",
                "md5": "764dfebb8ed2453c5ece56e7aa60c87a",
                "sha256": "45f3956604e7e4019e70bcd9b076f80805603dd17dd9e526ee0bcb85266aea96"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "764dfebb8ed2453c5ece56e7aa60c87a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3362166,
            "upload_time": "2024-12-10T18:04:40",
            "upload_time_iso_8601": "2024-12-10T18:04:40.980127Z",
            "url": "https://files.pythonhosted.org/packages/44/8b/e61840ab373c820c126c61039726643cc65b4d454e79ce6165a0285c4881/psqlpy-0.8.6-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54c13239e0319c187527048f1a57e781d30d6feb38dc9e7551991885a8810f95",
                "md5": "e3853c3ae321f92b86980521fe7450e2",
                "sha256": "54b170d050339765d5759ce5fa5a67ac28702f2261197ae36b0a5f134de93a04"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e3853c3ae321f92b86980521fe7450e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3652427,
            "upload_time": "2024-12-10T18:07:11",
            "upload_time_iso_8601": "2024-12-10T18:07:11.293154Z",
            "url": "https://files.pythonhosted.org/packages/54/c1/3239e0319c187527048f1a57e781d30d6feb38dc9e7551991885a8810f95/psqlpy-0.8.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a7832003dfd3aa61e5946ab8220007de804553e3b98d911973b586d9d878256",
                "md5": "83edc826dea022b218e7d800044752cd",
                "sha256": "e81f4deef132550a87d49bfe50221d9631fcbdd6a68942fc637ad4dca3e863ab"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "83edc826dea022b218e7d800044752cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4098771,
            "upload_time": "2024-12-10T18:07:14",
            "upload_time_iso_8601": "2024-12-10T18:07:14.370506Z",
            "url": "https://files.pythonhosted.org/packages/8a/78/32003dfd3aa61e5946ab8220007de804553e3b98d911973b586d9d878256/psqlpy-0.8.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b6f7617451c7a71cf79019fb45011275dc27c6ee63c788e882ebfe1c17181d6a",
                "md5": "3e61e0ce2e0e8d6e38cdf5a4e0987895",
                "sha256": "66e30974f12c5307e1f2629d108585d63ec2983a5e175e20dcd64434a80cce6f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3e61e0ce2e0e8d6e38cdf5a4e0987895",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3422240,
            "upload_time": "2024-12-10T18:07:16",
            "upload_time_iso_8601": "2024-12-10T18:07:16.227947Z",
            "url": "https://files.pythonhosted.org/packages/b6/f7/617451c7a71cf79019fb45011275dc27c6ee63c788e882ebfe1c17181d6a/psqlpy-0.8.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9496ded76d76efb5525f2fd6f94aa57ea4c67755597b1dc0a50238ccad3c0e1d",
                "md5": "c4944b7c6ae2ee334150e0fff5263934",
                "sha256": "c7f4a9aa50f925367ae07b8f520bc0040319286a351e9a96ce7be77aa59ffd37"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c4944b7c6ae2ee334150e0fff5263934",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3920768,
            "upload_time": "2024-12-10T18:07:19",
            "upload_time_iso_8601": "2024-12-10T18:07:19.137352Z",
            "url": "https://files.pythonhosted.org/packages/94/96/ded76d76efb5525f2fd6f94aa57ea4c67755597b1dc0a50238ccad3c0e1d/psqlpy-0.8.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "692436c3395296ea8ce0e6433a9179dc91958d3c17bc406bcfcfe82077aba14f",
                "md5": "19331c7cec608a65d5b515b7de847220",
                "sha256": "630ef8720ba0be9b01fc3f080ac33e71d78e41d7efad3b67a87336032ed09394"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "19331c7cec608a65d5b515b7de847220",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3776462,
            "upload_time": "2024-12-10T18:07:22",
            "upload_time_iso_8601": "2024-12-10T18:07:22.456706Z",
            "url": "https://files.pythonhosted.org/packages/69/24/36c3395296ea8ce0e6433a9179dc91958d3c17bc406bcfcfe82077aba14f/psqlpy-0.8.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "84b9a3e75fa9aec04c3cb2972057ea28524084914151a54835278bfd696ed4fb",
                "md5": "90856a41510ac4aa4951dbe556ff9f93",
                "sha256": "07b3747c34e3ba15a4a4d80cae4d32719a537be0226de76af192838b96453e3d"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "90856a41510ac4aa4951dbe556ff9f93",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3875569,
            "upload_time": "2024-12-10T18:07:27",
            "upload_time_iso_8601": "2024-12-10T18:07:27.618514Z",
            "url": "https://files.pythonhosted.org/packages/84/b9/a3e75fa9aec04c3cb2972057ea28524084914151a54835278bfd696ed4fb/psqlpy-0.8.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a0115fe33cf9e9dcd592d4746f41452c27328abce52eb0570a1b9dc70f381be0",
                "md5": "804195dafd7a32406dd63f2a5adccf2b",
                "sha256": "f65db10cb4db26c7f214bbe4cb573e2e12c7e322f9e9e89c9213d822b48c9a40"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "804195dafd7a32406dd63f2a5adccf2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3934451,
            "upload_time": "2024-12-10T18:07:31",
            "upload_time_iso_8601": "2024-12-10T18:07:31.519804Z",
            "url": "https://files.pythonhosted.org/packages/a0/11/5fe33cf9e9dcd592d4746f41452c27328abce52eb0570a1b9dc70f381be0/psqlpy-0.8.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ecfc04c0adca136c2bec347593f2b286fd6eb91b03622cd1c3d455ff4af6773",
                "md5": "53dadddbd56bee505cd85a62285d8a58",
                "sha256": "af910e7e764767109a55746032f4d4f6a9490762aee41ca87b5e639bfdb092ed"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "53dadddbd56bee505cd85a62285d8a58",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4004551,
            "upload_time": "2024-12-10T18:07:33",
            "upload_time_iso_8601": "2024-12-10T18:07:33.335786Z",
            "url": "https://files.pythonhosted.org/packages/2e/cf/c04c0adca136c2bec347593f2b286fd6eb91b03622cd1c3d455ff4af6773/psqlpy-0.8.6-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f289d48073ec786b0c503cebdeb2cca3ae617663a81dfbe37f5f72fc3a7b2ed",
                "md5": "b56b04c67edb1a68e34a005852ec9927",
                "sha256": "973c0cb6545c430d6e593ac0d4e2843883ce65a79dd1a4e48c409a89564e8165"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b56b04c67edb1a68e34a005852ec9927",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4072770,
            "upload_time": "2024-12-10T18:07:36",
            "upload_time_iso_8601": "2024-12-10T18:07:36.033608Z",
            "url": "https://files.pythonhosted.org/packages/1f/28/9d48073ec786b0c503cebdeb2cca3ae617663a81dfbe37f5f72fc3a7b2ed/psqlpy-0.8.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "88cf99ae1b589319b4e64ddb7abf14bacf0cf9e3fa4d6e1815e368d0b6b9a3f8",
                "md5": "c708f7046dec9b6444cf80129c3c657f",
                "sha256": "ecf9169952a06b51d33473f1c2fb6db075979fb508ef070ca3f269215926b5a3"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "c708f7046dec9b6444cf80129c3c657f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2614508,
            "upload_time": "2024-12-10T18:07:38",
            "upload_time_iso_8601": "2024-12-10T18:07:38.369582Z",
            "url": "https://files.pythonhosted.org/packages/88/cf/99ae1b589319b4e64ddb7abf14bacf0cf9e3fa4d6e1815e368d0b6b9a3f8/psqlpy-0.8.6-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c80df171beb7639b6a442bd336b15964f2390de3285d2b4bafe9db823e13e29f",
                "md5": "09879381f415c725f0a9c0039d98d53c",
                "sha256": "00a57bc81aec13944a34c7277984d5ac8e548fd530791a06a6721c450de127c0"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "09879381f415c725f0a9c0039d98d53c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2946583,
            "upload_time": "2024-12-10T18:07:41",
            "upload_time_iso_8601": "2024-12-10T18:07:41.069243Z",
            "url": "https://files.pythonhosted.org/packages/c8/0d/f171beb7639b6a442bd336b15964f2390de3285d2b4bafe9db823e13e29f/psqlpy-0.8.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a2e6c6fb4df2eb92b7ab3298c62b7f3edf8fe1af240c64566a4d26c79f735122",
                "md5": "2584b168bd3a489f53c7b6c5c951d770",
                "sha256": "2c56635a547c2b26311894ec0214c31f63152df84a7c15a548149cc4da36aac6"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2584b168bd3a489f53c7b6c5c951d770",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3360268,
            "upload_time": "2024-12-10T18:07:43",
            "upload_time_iso_8601": "2024-12-10T18:07:43.254044Z",
            "url": "https://files.pythonhosted.org/packages/a2/e6/c6fb4df2eb92b7ab3298c62b7f3edf8fe1af240c64566a4d26c79f735122/psqlpy-0.8.6-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54774860c64c83f7e4af1d228c62546dd63f48008eca8ddf4d30c4fabc1375b9",
                "md5": "dc3670f8b13cdf05119fc1fbba0d2f7e",
                "sha256": "392c7267627af4a766a84f115fe7bcf827de6a51d702172618f32831df1c3897"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "dc3670f8b13cdf05119fc1fbba0d2f7e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3649740,
            "upload_time": "2024-12-10T18:07:47",
            "upload_time_iso_8601": "2024-12-10T18:07:47.572653Z",
            "url": "https://files.pythonhosted.org/packages/54/77/4860c64c83f7e4af1d228c62546dd63f48008eca8ddf4d30c4fabc1375b9/psqlpy-0.8.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7ba8c7d75c55da10e87e52970862209d5bfddf63a419a8225b20c44805fc952",
                "md5": "afb8bc44c967e0a6c9368adb0311324d",
                "sha256": "b70238fa894b2fb0352afc9aaaac3ce20714a7875080baab26efd0a815c8c7b2"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "afb8bc44c967e0a6c9368adb0311324d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4104932,
            "upload_time": "2024-12-10T18:07:50",
            "upload_time_iso_8601": "2024-12-10T18:07:50.484987Z",
            "url": "https://files.pythonhosted.org/packages/a7/ba/8c7d75c55da10e87e52970862209d5bfddf63a419a8225b20c44805fc952/psqlpy-0.8.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "54e53929aaee9594aa8aa4ef0a96157d8881d63658777e20e41d4ee118b361d0",
                "md5": "d9c1b0834a2270e27c1f4256a9596ecd",
                "sha256": "6f1060467dce98965d36546e7c2583ffd780c4a65f48888c6c45caa5a2fb57c5"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "d9c1b0834a2270e27c1f4256a9596ecd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3428848,
            "upload_time": "2024-12-10T18:07:53",
            "upload_time_iso_8601": "2024-12-10T18:07:53.726647Z",
            "url": "https://files.pythonhosted.org/packages/54/e5/3929aaee9594aa8aa4ef0a96157d8881d63658777e20e41d4ee118b361d0/psqlpy-0.8.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "057bdb5a8b6873f5275b238eba93a0e0e423eac1c5a894f4e5e3c980630a0200",
                "md5": "a178bd6d3fe61dbf5f21ac8152539bd0",
                "sha256": "2b19c79fa184f52a8930e83b3fd17868ed51de405f423e3e2b92114ee54ba075"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a178bd6d3fe61dbf5f21ac8152539bd0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3928426,
            "upload_time": "2024-12-10T18:07:55",
            "upload_time_iso_8601": "2024-12-10T18:07:55.320607Z",
            "url": "https://files.pythonhosted.org/packages/05/7b/db5a8b6873f5275b238eba93a0e0e423eac1c5a894f4e5e3c980630a0200/psqlpy-0.8.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60c2f57380655fbe8658933a14f3c88b0bb231178647d70464469f61f53de2d8",
                "md5": "b2c2a92fee8cfcc17faf578c12d9c708",
                "sha256": "e979742489b3acc83813c0ddfb0e43e456a8e4abc2e9cc290a574f8ce23c3741"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b2c2a92fee8cfcc17faf578c12d9c708",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3786337,
            "upload_time": "2024-12-10T18:07:58",
            "upload_time_iso_8601": "2024-12-10T18:07:58.348997Z",
            "url": "https://files.pythonhosted.org/packages/60/c2/f57380655fbe8658933a14f3c88b0bb231178647d70464469f61f53de2d8/psqlpy-0.8.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7af4f85394f44d33ad6934ed6d8dd31bfab887ed6d29d1efd6aacea3903dbb33",
                "md5": "b16f9415b297f54d84475d25680f53dc",
                "sha256": "6eea59714708eea4d6a55d117c8d0c286143c5ff5603557e4359a485b9793954"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b16f9415b297f54d84475d25680f53dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3876876,
            "upload_time": "2024-12-10T18:08:00",
            "upload_time_iso_8601": "2024-12-10T18:08:00.177940Z",
            "url": "https://files.pythonhosted.org/packages/7a/f4/f85394f44d33ad6934ed6d8dd31bfab887ed6d29d1efd6aacea3903dbb33/psqlpy-0.8.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "814ea669e26eeba518fbcc00393efdd60c37fbc7a6fea74785564663290b02c0",
                "md5": "44ee4a61fb854217fe6f02480a0d3d30",
                "sha256": "f12bb1ed9931cb4378420439aaf09cab60a09462f165ee6ebe2b82b4293fcb0f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44ee4a61fb854217fe6f02480a0d3d30",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3939651,
            "upload_time": "2024-12-10T18:08:02",
            "upload_time_iso_8601": "2024-12-10T18:08:02.134466Z",
            "url": "https://files.pythonhosted.org/packages/81/4e/a669e26eeba518fbcc00393efdd60c37fbc7a6fea74785564663290b02c0/psqlpy-0.8.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2042600ce0a8b56261649b6a95d440cf482808fb21eaf10d664bed7b44fc057d",
                "md5": "73970688e5dfc3f870ac1db098542996",
                "sha256": "5a668c9d6a44bd5e8e88b645b07b8c578dcff8c219cf8c0ef6f6be5625a13f97"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "73970688e5dfc3f870ac1db098542996",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4011652,
            "upload_time": "2024-12-10T18:08:04",
            "upload_time_iso_8601": "2024-12-10T18:08:04.814038Z",
            "url": "https://files.pythonhosted.org/packages/20/42/600ce0a8b56261649b6a95d440cf482808fb21eaf10d664bed7b44fc057d/psqlpy-0.8.6-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb52436df7a49dee98c9b429f0314492be42f2bbc6794bf72e813c0a22f2b68a",
                "md5": "7a9200058ef2fbf7020f8f5f633f9af1",
                "sha256": "bef7bccd7d1da74fa8300598b3c0f4342b98275d7d6549a689db5d9c6af4bb58"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7a9200058ef2fbf7020f8f5f633f9af1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4075697,
            "upload_time": "2024-12-10T18:08:06",
            "upload_time_iso_8601": "2024-12-10T18:08:06.845971Z",
            "url": "https://files.pythonhosted.org/packages/bb/52/436df7a49dee98c9b429f0314492be42f2bbc6794bf72e813c0a22f2b68a/psqlpy-0.8.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a71fd60d967b626506743e9f59d4d418488502113c1f36a7e61e98babcec82ff",
                "md5": "1621b6304f3167f4e62727feeb644951",
                "sha256": "65774d483ea534eb6004d1b7d9028a22045768f426c0a022574515edda24910b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "1621b6304f3167f4e62727feeb644951",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2608156,
            "upload_time": "2024-12-10T18:08:08",
            "upload_time_iso_8601": "2024-12-10T18:08:08.581124Z",
            "url": "https://files.pythonhosted.org/packages/a7/1f/d60d967b626506743e9f59d4d418488502113c1f36a7e61e98babcec82ff/psqlpy-0.8.6-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "22edd0a3e4f554f24311328c51ce552d5ba3ea1744f008bce28b0d0082f33aee",
                "md5": "9e17fdde9eccb4b28303ec316cf5195d",
                "sha256": "2a5fdff5a58e0a28162e5be9f689a75f9da8d141ae4688209ffd0d4c2c9f910b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9e17fdde9eccb4b28303ec316cf5195d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2949519,
            "upload_time": "2024-12-10T18:08:10",
            "upload_time_iso_8601": "2024-12-10T18:08:10.312075Z",
            "url": "https://files.pythonhosted.org/packages/22/ed/d0a3e4f554f24311328c51ce552d5ba3ea1744f008bce28b0d0082f33aee/psqlpy-0.8.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f21d7b9f6d477f6346ccbb8ac46080f6ad70d6c7d1d42b0e3e007ccac857e646",
                "md5": "8df90d601be3afddf9d75be970abb397",
                "sha256": "af34d5ee336b53bec7f7e40455aa51abf44088f99dd8e0ecb502e0bf4062a43c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8df90d601be3afddf9d75be970abb397",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3359587,
            "upload_time": "2024-12-10T18:08:12",
            "upload_time_iso_8601": "2024-12-10T18:08:12.283612Z",
            "url": "https://files.pythonhosted.org/packages/f2/1d/7b9f6d477f6346ccbb8ac46080f6ad70d6c7d1d42b0e3e007ccac857e646/psqlpy-0.8.6-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "163a705e58eef1a735737209493f06b29e5ee4c9ed0b431c62be7270110dc57c",
                "md5": "1f48d10e5fe77d276296e7e05b8b4b79",
                "sha256": "6cfb397183bdbae0c1829ea5baf0e91d35e36311d365afbcb40ccce2db2c61ff"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1f48d10e5fe77d276296e7e05b8b4b79",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3649801,
            "upload_time": "2024-12-10T18:08:14",
            "upload_time_iso_8601": "2024-12-10T18:08:14.268568Z",
            "url": "https://files.pythonhosted.org/packages/16/3a/705e58eef1a735737209493f06b29e5ee4c9ed0b431c62be7270110dc57c/psqlpy-0.8.6-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72250c241780cc737f3900488f2e0abf9881386492d1b82d3666be6c52f5b6cc",
                "md5": "3e4ed80d14e5e00f8dcef4e3d425cea7",
                "sha256": "167974628a1989bfbf522bd66626985525deea057ea7ba02c39f78cc54cc9150"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3e4ed80d14e5e00f8dcef4e3d425cea7",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4104682,
            "upload_time": "2024-12-10T18:08:16",
            "upload_time_iso_8601": "2024-12-10T18:08:16.445531Z",
            "url": "https://files.pythonhosted.org/packages/72/25/0c241780cc737f3900488f2e0abf9881386492d1b82d3666be6c52f5b6cc/psqlpy-0.8.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c8ad704d75fd20428667fb342d292a4ab5733925218116bfa12e2eb493927813",
                "md5": "bf5ade23305f079ef5c4756a89b8c94d",
                "sha256": "291c86c8a3586e0efe262f50c106da45a1150dfb6a3ff21928745a22bfd7242e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "bf5ade23305f079ef5c4756a89b8c94d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3428842,
            "upload_time": "2024-12-10T18:08:18",
            "upload_time_iso_8601": "2024-12-10T18:08:18.368455Z",
            "url": "https://files.pythonhosted.org/packages/c8/ad/704d75fd20428667fb342d292a4ab5733925218116bfa12e2eb493927813/psqlpy-0.8.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cc1b54d447502ddc507e3b5c3f88f73b553d310808d43254cc492b5686798790",
                "md5": "d371af924f0d842985ecdbd157b28192",
                "sha256": "26beb5cf138b92ba46e68a61eee554f8a27ee9c44da3d3ba43c8971b28fea2a5"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d371af924f0d842985ecdbd157b28192",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3926332,
            "upload_time": "2024-12-10T18:08:22",
            "upload_time_iso_8601": "2024-12-10T18:08:22.069614Z",
            "url": "https://files.pythonhosted.org/packages/cc/1b/54d447502ddc507e3b5c3f88f73b553d310808d43254cc492b5686798790/psqlpy-0.8.6-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "75d82c3bdb92af3b3780de03f7abb67e791bd17eab82af83842d4c098b37b43a",
                "md5": "18a566671bc4829079a9433a2d73a50a",
                "sha256": "e928fc26285f41e0b7afacfc8b7fd31a3585e518a4e7f87f5a6cae98953dab8a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "18a566671bc4829079a9433a2d73a50a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3784391,
            "upload_time": "2024-12-10T18:08:23",
            "upload_time_iso_8601": "2024-12-10T18:08:23.834556Z",
            "url": "https://files.pythonhosted.org/packages/75/d8/2c3bdb92af3b3780de03f7abb67e791bd17eab82af83842d4c098b37b43a/psqlpy-0.8.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f178f6dbbb8563d08a65859e6fb7bc4efd02477b6dd645558a86635b5edfc7e9",
                "md5": "9f62991e77ec6557e7362123e39c4d36",
                "sha256": "71559786788218fc606e55067307fbd2726cf8d29ff62757f7fb145bcdd58223"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "9f62991e77ec6557e7362123e39c4d36",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3876920,
            "upload_time": "2024-12-10T18:08:26",
            "upload_time_iso_8601": "2024-12-10T18:08:26.887390Z",
            "url": "https://files.pythonhosted.org/packages/f1/78/f6dbbb8563d08a65859e6fb7bc4efd02477b6dd645558a86635b5edfc7e9/psqlpy-0.8.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "899a86308f7a06edd5999fd95c9314f8a9f7f189e4974d410b343978047ef11e",
                "md5": "34ccb7ee29bd919877ca30c109839b06",
                "sha256": "dd6bc9f4a6343eaf622812a034bb2816347c8e83a9078b86cd70ff5e2cc11ba3"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "34ccb7ee29bd919877ca30c109839b06",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3939048,
            "upload_time": "2024-12-10T18:08:28",
            "upload_time_iso_8601": "2024-12-10T18:08:28.670827Z",
            "url": "https://files.pythonhosted.org/packages/89/9a/86308f7a06edd5999fd95c9314f8a9f7f189e4974d410b343978047ef11e/psqlpy-0.8.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b8fa28ddbfaa829159cca43c5be4b5312122f0dc83adc86353f4f293625af38",
                "md5": "9b3239cfa127827880282a7579e382a8",
                "sha256": "025f92ce7ad1b8b6505ec292e87a0dc1838c7528bdd26b92629c4c4fc231f061"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9b3239cfa127827880282a7579e382a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4009914,
            "upload_time": "2024-12-10T18:08:30",
            "upload_time_iso_8601": "2024-12-10T18:08:30.693563Z",
            "url": "https://files.pythonhosted.org/packages/5b/8f/a28ddbfaa829159cca43c5be4b5312122f0dc83adc86353f4f293625af38/psqlpy-0.8.6-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5714d46f90b0d5b1189c0716ba0253d9f898ce43e033a16f0c98d06264cc9b2e",
                "md5": "6a240c760147ff3da1bf193220443b8a",
                "sha256": "fb81b5d3e419a1f62fe2ffc4471d759735ef97b863d3bddbfafb7dd8e267aaab"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a240c760147ff3da1bf193220443b8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4074510,
            "upload_time": "2024-12-10T18:08:33",
            "upload_time_iso_8601": "2024-12-10T18:08:33.636761Z",
            "url": "https://files.pythonhosted.org/packages/57/14/d46f90b0d5b1189c0716ba0253d9f898ce43e033a16f0c98d06264cc9b2e/psqlpy-0.8.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bc6e5bd735d7f119196d09c6055ecc160bd07fc1bdfa2ad476a8282ed60b86b2",
                "md5": "8709ca7ed42fa1b4fa03e979cfcc2200",
                "sha256": "85d150565645a8e9f90eef1fbe2fef04054464d91928b2a1ecb0029f7a1cff1b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "8709ca7ed42fa1b4fa03e979cfcc2200",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2607202,
            "upload_time": "2024-12-10T18:08:35",
            "upload_time_iso_8601": "2024-12-10T18:08:35.577461Z",
            "url": "https://files.pythonhosted.org/packages/bc/6e/5bd735d7f119196d09c6055ecc160bd07fc1bdfa2ad476a8282ed60b86b2/psqlpy-0.8.6-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9c592263562787d387c433bb7442f37d5ecf42f44ac2ad3fcf5ebbe48e2ff73",
                "md5": "71c3e22d6e0916ba3a865390f9294b26",
                "sha256": "69865fd9aa742395a95e68ff3bd56429b74e9cf6463557e4b9f55f5766f3b94f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "71c3e22d6e0916ba3a865390f9294b26",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 2948992,
            "upload_time": "2024-12-10T18:08:37",
            "upload_time_iso_8601": "2024-12-10T18:08:37.325345Z",
            "url": "https://files.pythonhosted.org/packages/c9/c5/92263562787d387c433bb7442f37d5ecf42f44ac2ad3fcf5ebbe48e2ff73/psqlpy-0.8.6-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "529463b1be558d0ebddf91c4e09e1a4d816509ac91e05ec869515ba54d070101",
                "md5": "f7e60ddc7d0322814b1f1aa78154e466",
                "sha256": "c358c7569246dc99fb178044e28b80967952d3df5dc141d9eef65b1590c49e1e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7e60ddc7d0322814b1f1aa78154e466",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3357176,
            "upload_time": "2024-12-10T18:08:39",
            "upload_time_iso_8601": "2024-12-10T18:08:39.117613Z",
            "url": "https://files.pythonhosted.org/packages/52/94/63b1be558d0ebddf91c4e09e1a4d816509ac91e05ec869515ba54d070101/psqlpy-0.8.6-cp38-cp38-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74726ba7c555e4ec92fabf4e6ec7e008cb25945e655cbac878f24c70e4936693",
                "md5": "ad2a296b901e6136a6c1b1fc441f27e0",
                "sha256": "57b75fce1b4f5ba4b5a1d71d90646f6a8db883b2c9dbf011f1e9584b7073007b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ad2a296b901e6136a6c1b1fc441f27e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3652613,
            "upload_time": "2024-12-10T18:08:41",
            "upload_time_iso_8601": "2024-12-10T18:08:41.070900Z",
            "url": "https://files.pythonhosted.org/packages/74/72/6ba7c555e4ec92fabf4e6ec7e008cb25945e655cbac878f24c70e4936693/psqlpy-0.8.6-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bf6a842cadedc1b21e92bfdfbcab0c5d3bc535a1b195058b3691b1d27bf4d73",
                "md5": "29e7811d4fdae78ecc7d76b3d4f24cd4",
                "sha256": "36806114e493f0fb11c151b7fad87f5a4ede859e71aad0972798e979678a79da"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "29e7811d4fdae78ecc7d76b3d4f24cd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4099909,
            "upload_time": "2024-12-10T18:08:42",
            "upload_time_iso_8601": "2024-12-10T18:08:42.932646Z",
            "url": "https://files.pythonhosted.org/packages/6b/f6/a842cadedc1b21e92bfdfbcab0c5d3bc535a1b195058b3691b1d27bf4d73/psqlpy-0.8.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2659dc5ab27935ca910fa9f7fdd84ac57577d36a4b6687fbf649012cbee4dfb0",
                "md5": "7160e7f51ea30086c37646348ab12d6b",
                "sha256": "cbec19bffb083956e8046f9a3446796f54a0ad7ecb174fb7468d3f45497168ca"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7160e7f51ea30086c37646348ab12d6b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3423296,
            "upload_time": "2024-12-10T18:08:46",
            "upload_time_iso_8601": "2024-12-10T18:08:46.679923Z",
            "url": "https://files.pythonhosted.org/packages/26/59/dc5ab27935ca910fa9f7fdd84ac57577d36a4b6687fbf649012cbee4dfb0/psqlpy-0.8.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "824c0dfa44740a19f5b0e112650d5262b8d65909886881befd555effd542eb0e",
                "md5": "b47b965f0e623207fc9237b3ad5d82c5",
                "sha256": "0481f84c83b1bfae348a859b12264af7df1d7fb16668befd3ace6c8a41bfc8a9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b47b965f0e623207fc9237b3ad5d82c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3921128,
            "upload_time": "2024-12-10T18:08:48",
            "upload_time_iso_8601": "2024-12-10T18:08:48.534462Z",
            "url": "https://files.pythonhosted.org/packages/82/4c/0dfa44740a19f5b0e112650d5262b8d65909886881befd555effd542eb0e/psqlpy-0.8.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ee6104e734fc927b87985eb256e766a14cdfd86b4e369e6f987cfea1e82d9d4f",
                "md5": "1b879ed533f6acdaba87edfa4ee13e9f",
                "sha256": "d9896a996270c27df5043bae9816c5fdeb3ab3f578cf2cd6afc285f0af025f30"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1b879ed533f6acdaba87edfa4ee13e9f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3775956,
            "upload_time": "2024-12-10T18:08:50",
            "upload_time_iso_8601": "2024-12-10T18:08:50.472709Z",
            "url": "https://files.pythonhosted.org/packages/ee/61/04e734fc927b87985eb256e766a14cdfd86b4e369e6f987cfea1e82d9d4f/psqlpy-0.8.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c56512bb08ee1b19174571e808c71896933c45fff56f76158b2ca7bac9d1980b",
                "md5": "5687b55c1e2af1bbaf2f9b838f642abe",
                "sha256": "109272a6c1b2bd7a2e7aa236ab152e735e0a66d774233d102b933a9c4429dd8a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5687b55c1e2af1bbaf2f9b838f642abe",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3860094,
            "upload_time": "2024-12-10T18:08:52",
            "upload_time_iso_8601": "2024-12-10T18:08:52.622525Z",
            "url": "https://files.pythonhosted.org/packages/c5/65/12bb08ee1b19174571e808c71896933c45fff56f76158b2ca7bac9d1980b/psqlpy-0.8.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "694706d59afd55df3273ce05bc7bab86d2adf96de324597198e6a150ef1106cd",
                "md5": "75cb92348d0b4196f18eec0fc34198f8",
                "sha256": "1ef543b0ad675ab09041a44dbb69d98bc4684dd099d65e078aca9ee8b2072136"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "75cb92348d0b4196f18eec0fc34198f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3933778,
            "upload_time": "2024-12-10T18:08:56",
            "upload_time_iso_8601": "2024-12-10T18:08:56.218420Z",
            "url": "https://files.pythonhosted.org/packages/69/47/06d59afd55df3273ce05bc7bab86d2adf96de324597198e6a150ef1106cd/psqlpy-0.8.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec2e7d062756aec5f4c7bb4a9b538f2844aaa9fff0f70637eb59b2de3775c859",
                "md5": "035b176c8874f274774f00cc9c329980",
                "sha256": "f870be674d6afed3a104399e656166184183989c11a2c82cd14159fdf9c6f9ff"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "035b176c8874f274774f00cc9c329980",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4005205,
            "upload_time": "2024-12-10T18:08:58",
            "upload_time_iso_8601": "2024-12-10T18:08:58.149163Z",
            "url": "https://files.pythonhosted.org/packages/ec/2e/7d062756aec5f4c7bb4a9b538f2844aaa9fff0f70637eb59b2de3775c859/psqlpy-0.8.6-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4e7c15f70a42a225ae4ed52b3e4af80e57dc16527efb173b32d3c632b50546b",
                "md5": "db53631dd09a440ef351c477cf5546a2",
                "sha256": "752550711d1a0ae14ef5c6dd14f6b3b0b0620db1170366e5dddd09e6dac8720c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "db53631dd09a440ef351c477cf5546a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 4071842,
            "upload_time": "2024-12-10T18:09:00",
            "upload_time_iso_8601": "2024-12-10T18:09:00.333077Z",
            "url": "https://files.pythonhosted.org/packages/b4/e7/c15f70a42a225ae4ed52b3e4af80e57dc16527efb173b32d3c632b50546b/psqlpy-0.8.6-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "83f8a2ad1f8c68976bbe342c63b84ec8a51d6339713839b45bbd69ccc5b7d0b0",
                "md5": "949eb0659729c93169efed0c84d9475b",
                "sha256": "e8ab4a4a54ee5a46fd12bd39e555ccc7588d3536dd83ab2782fd3c6eb344d842"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "949eb0659729c93169efed0c84d9475b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2615108,
            "upload_time": "2024-12-10T18:09:02",
            "upload_time_iso_8601": "2024-12-10T18:09:02.212928Z",
            "url": "https://files.pythonhosted.org/packages/83/f8/a2ad1f8c68976bbe342c63b84ec8a51d6339713839b45bbd69ccc5b7d0b0/psqlpy-0.8.6-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c543c5da75e89f2297c5cd59e1c9912c80f86bbbc1ed0525bdd3404c028e4a82",
                "md5": "5ab07b4ca0b0f1b0d9763346a5e7a7e4",
                "sha256": "f7d4516197e32ebbb53bdda32032ba04ac190da3deefb1e28b1c5fae75937bad"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5ab07b4ca0b0f1b0d9763346a5e7a7e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2948267,
            "upload_time": "2024-12-10T18:09:04",
            "upload_time_iso_8601": "2024-12-10T18:09:04.229212Z",
            "url": "https://files.pythonhosted.org/packages/c5/43/c5da75e89f2297c5cd59e1c9912c80f86bbbc1ed0525bdd3404c028e4a82/psqlpy-0.8.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bfd779a7058423b9e99f93397f1481a4955f16cf0aa0c9862d6cdb25b16dc5b4",
                "md5": "5739b0fa8ebe5042b6e3f9cd621e6744",
                "sha256": "cc27b41effda21d9afb05b101ad77e43a0cf984ec5e0ec6603682660f9e28a82"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5739b0fa8ebe5042b6e3f9cd621e6744",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3358042,
            "upload_time": "2024-12-10T18:09:06",
            "upload_time_iso_8601": "2024-12-10T18:09:06.275142Z",
            "url": "https://files.pythonhosted.org/packages/bf/d7/79a7058423b9e99f93397f1481a4955f16cf0aa0c9862d6cdb25b16dc5b4/psqlpy-0.8.6-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1c199a4dc1bc92898c134a27cf7e31c486bbf6522ab58541cc321ef9ab60e79",
                "md5": "f82e889ce03d83d1ed398100d05c79a2",
                "sha256": "593075b56a7832b0ea8d2acdef51bdc51f4197f0b786f9a3a96cd751b33e0f3b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f82e889ce03d83d1ed398100d05c79a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3653205,
            "upload_time": "2024-12-10T18:09:08",
            "upload_time_iso_8601": "2024-12-10T18:09:08.726180Z",
            "url": "https://files.pythonhosted.org/packages/e1/c1/99a4dc1bc92898c134a27cf7e31c486bbf6522ab58541cc321ef9ab60e79/psqlpy-0.8.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c3d1e371c6b1f62a0101332e7043bd1b4416a82a9f8b28a565922d627909c664",
                "md5": "f472d640a160ef877e4958bfdf276e0d",
                "sha256": "d5db24405c6d8a160128030ebc238c9974bffcf71ba1004d3028d6ca349fd4f5"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f472d640a160ef877e4958bfdf276e0d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4100286,
            "upload_time": "2024-12-10T18:09:11",
            "upload_time_iso_8601": "2024-12-10T18:09:11.947040Z",
            "url": "https://files.pythonhosted.org/packages/c3/d1/e371c6b1f62a0101332e7043bd1b4416a82a9f8b28a565922d627909c664/psqlpy-0.8.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fddbe201ad3cb09622e1b8c5a4addf2fb92c3202348f6d7e98bcc108f6eea016",
                "md5": "4e6fd6ea1cd92bf17006154f4e9e4068",
                "sha256": "d521415f23a56bb99a867eba9880ce1f6fb58f3cc4ab13e690b610356431f008"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4e6fd6ea1cd92bf17006154f4e9e4068",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3423937,
            "upload_time": "2024-12-10T18:09:13",
            "upload_time_iso_8601": "2024-12-10T18:09:13.783737Z",
            "url": "https://files.pythonhosted.org/packages/fd/db/e201ad3cb09622e1b8c5a4addf2fb92c3202348f6d7e98bcc108f6eea016/psqlpy-0.8.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb5d888664a482a7e18080253df6dc37bac355a9c4c9fe76b8104ca4d9494bc7",
                "md5": "12ccb6590c7dd249204adf1d2f1251b9",
                "sha256": "6db9fd27b5b6d67c73e87b676327d8d07bbe6127c41b3ef4ec52e540ea4b6954"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "12ccb6590c7dd249204adf1d2f1251b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3921823,
            "upload_time": "2024-12-10T18:09:15",
            "upload_time_iso_8601": "2024-12-10T18:09:15.844184Z",
            "url": "https://files.pythonhosted.org/packages/fb/5d/888664a482a7e18080253df6dc37bac355a9c4c9fe76b8104ca4d9494bc7/psqlpy-0.8.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3651896dfe8a9003a3f00ab827b2a25fc858cb1c2a0c83f3ed7dabb4cab96fc8",
                "md5": "347d2566f28812f23230b5a190cb5e8f",
                "sha256": "29dadd128fc004e167437dbd75ad801d739b1648a209ec3344bbcebbe1aeaac9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "347d2566f28812f23230b5a190cb5e8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3776646,
            "upload_time": "2024-12-10T18:09:17",
            "upload_time_iso_8601": "2024-12-10T18:09:17.841391Z",
            "url": "https://files.pythonhosted.org/packages/36/51/896dfe8a9003a3f00ab827b2a25fc858cb1c2a0c83f3ed7dabb4cab96fc8/psqlpy-0.8.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4a5a03f184625a26cdfe019b22abb120dccd0562917fe56fca79c43490fa1acf",
                "md5": "af7eb45e5c51edb6aa62fe6e4d9dafcd",
                "sha256": "6fef9775944f9a37644651125daa98a8c9a4c816795c6c0e00d4ca84b0742251"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "af7eb45e5c51edb6aa62fe6e4d9dafcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3877380,
            "upload_time": "2024-12-10T18:09:20",
            "upload_time_iso_8601": "2024-12-10T18:09:20.815687Z",
            "url": "https://files.pythonhosted.org/packages/4a/5a/03f184625a26cdfe019b22abb120dccd0562917fe56fca79c43490fa1acf/psqlpy-0.8.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45d698e81ac7f0d12912eca65aa5453013e00e14247961192c1a492044e9deae",
                "md5": "14106d00c210b6ed5d4fd45dd730aec7",
                "sha256": "e123564b35a581c557c4e1278b76222c2e3b368197cc27cba3a4954c60af4668"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14106d00c210b6ed5d4fd45dd730aec7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3934921,
            "upload_time": "2024-12-10T18:09:23",
            "upload_time_iso_8601": "2024-12-10T18:09:23.421106Z",
            "url": "https://files.pythonhosted.org/packages/45/d6/98e81ac7f0d12912eca65aa5453013e00e14247961192c1a492044e9deae/psqlpy-0.8.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4f014b60db2c443591fea328ed7e4aad80d981f8c68f04b3ef56758148f3ab7c",
                "md5": "b4916521acd8efce3f9a7299c04e33e3",
                "sha256": "22e9273e1d1f912126ba62cec0556304affb73bb7253b99e52a471c5cbdcf954"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "b4916521acd8efce3f9a7299c04e33e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4005899,
            "upload_time": "2024-12-10T18:09:26",
            "upload_time_iso_8601": "2024-12-10T18:09:26.719340Z",
            "url": "https://files.pythonhosted.org/packages/4f/01/4b60db2c443591fea328ed7e4aad80d981f8c68f04b3ef56758148f3ab7c/psqlpy-0.8.6-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5089c5b321abc1bdfe60d3bfd8e3baf99007dc68b94ebc940537d3ddfbce7a11",
                "md5": "8efd8f1ffe1bd297007b905f91f7e92d",
                "sha256": "a1bfd776979f675933fdaebe85dfff93bcbdf257c3297c66018b8acffd9fb492"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8efd8f1ffe1bd297007b905f91f7e92d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4072443,
            "upload_time": "2024-12-10T18:09:29",
            "upload_time_iso_8601": "2024-12-10T18:09:29.974850Z",
            "url": "https://files.pythonhosted.org/packages/50/89/c5b321abc1bdfe60d3bfd8e3baf99007dc68b94ebc940537d3ddfbce7a11/psqlpy-0.8.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b70d738c6f49c8919442cd84dde475bf318cdd2fdc320f7c1233d677ff78235",
                "md5": "4ed15bf2ac06b3cc00aee50a9c260c75",
                "sha256": "78a85f8dcb3936266a66fdbfa2c64bf3708f2cb5636d0c56249bafa7725a5a3c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "4ed15bf2ac06b3cc00aee50a9c260c75",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2614694,
            "upload_time": "2024-12-10T18:09:32",
            "upload_time_iso_8601": "2024-12-10T18:09:32.039724Z",
            "url": "https://files.pythonhosted.org/packages/4b/70/d738c6f49c8919442cd84dde475bf318cdd2fdc320f7c1233d677ff78235/psqlpy-0.8.6-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3db649ee60edd4bfb2369db4d515b8e2993d8c595e90433109795b31151fa6cc",
                "md5": "b5957a5cacd717d1787b478fa5a56148",
                "sha256": "73d4d9a56102ad7497f2b32da754c7869e0077167389f62e28126d2a7fa8a746"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b5957a5cacd717d1787b478fa5a56148",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2949306,
            "upload_time": "2024-12-10T18:09:33",
            "upload_time_iso_8601": "2024-12-10T18:09:33.966273Z",
            "url": "https://files.pythonhosted.org/packages/3d/b6/49ee60edd4bfb2369db4d515b8e2993d8c595e90433109795b31151fa6cc/psqlpy-0.8.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a3d455659526c323d97806dc3228b0b1d0c1da312be58c484a47e0363814163d",
                "md5": "bb3a141ea39e4b8f33623f8e39b75a33",
                "sha256": "487a2b4241243b2f0399f53f221b3c186e0e2eb0298739144762fa62f4f26407"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bb3a141ea39e4b8f33623f8e39b75a33",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3363129,
            "upload_time": "2024-12-10T18:09:37",
            "upload_time_iso_8601": "2024-12-10T18:09:37.318097Z",
            "url": "https://files.pythonhosted.org/packages/a3/d4/55659526c323d97806dc3228b0b1d0c1da312be58c484a47e0363814163d/psqlpy-0.8.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "697b49c6001a5c88882c8ba6040cde46d21394c41ee446f80bfda7fd30c36ed3",
                "md5": "2de0f66ba4f9b21d7df44474c82e5b85",
                "sha256": "fc1d9cae853899bbbdb70163768c84d3aaefea033407eadcf76baf7f31ce2fd3"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2de0f66ba4f9b21d7df44474c82e5b85",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3649614,
            "upload_time": "2024-12-10T18:09:39",
            "upload_time_iso_8601": "2024-12-10T18:09:39.215628Z",
            "url": "https://files.pythonhosted.org/packages/69/7b/49c6001a5c88882c8ba6040cde46d21394c41ee446f80bfda7fd30c36ed3/psqlpy-0.8.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5f365f28fb7959cc825aa5c4f4668716230ed59c1aba2a66bd78268dd1e1992e",
                "md5": "2660ad113e545eec4e17d639275c015b",
                "sha256": "9bd48c125e88eb2eeb9e34815a3e578ee1e7d6a55ba4c612ba0925401b72d17f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2660ad113e545eec4e17d639275c015b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4095250,
            "upload_time": "2024-12-10T18:09:41",
            "upload_time_iso_8601": "2024-12-10T18:09:41.221653Z",
            "url": "https://files.pythonhosted.org/packages/5f/36/5f28fb7959cc825aa5c4f4668716230ed59c1aba2a66bd78268dd1e1992e/psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f29a50e83ce6ad588ed2d1bb8d97f614b94aac7b183c654b16de11b1ee69016c",
                "md5": "e2be5969adf93b928f237aa78213493e",
                "sha256": "4644076828205a2497111746444528486edec37370cf0798553fcc79fa769030"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e2be5969adf93b928f237aa78213493e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3422339,
            "upload_time": "2024-12-10T18:09:43",
            "upload_time_iso_8601": "2024-12-10T18:09:43.366245Z",
            "url": "https://files.pythonhosted.org/packages/f2/9a/50e83ce6ad588ed2d1bb8d97f614b94aac7b183c654b16de11b1ee69016c/psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "903c17ae3e1039a8ebd1a195b8bfa3a5b9a49f0b871967c0fb6010668d2324fc",
                "md5": "bb103b098db7d79cf9bf6b3f948664be",
                "sha256": "6d69eb4416b6b3245b632433ca207d9124392ec1a077077a274282cea0068fc9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bb103b098db7d79cf9bf6b3f948664be",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3921540,
            "upload_time": "2024-12-10T18:09:45",
            "upload_time_iso_8601": "2024-12-10T18:09:45.278465Z",
            "url": "https://files.pythonhosted.org/packages/90/3c/17ae3e1039a8ebd1a195b8bfa3a5b9a49f0b871967c0fb6010668d2324fc/psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "96cc2de9390c87ab81a57491e5e7d68c94f9ddd5a4bc88b455d63bf4333d2188",
                "md5": "eb50ebce8331b0a19788f31eb1090bf3",
                "sha256": "58dced6d604dfe65d9a56e54444b15fbd28d34d8e2eb0e2525d0eaeaa5d92cb0"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "eb50ebce8331b0a19788f31eb1090bf3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3782054,
            "upload_time": "2024-12-10T18:09:48",
            "upload_time_iso_8601": "2024-12-10T18:09:48.776530Z",
            "url": "https://files.pythonhosted.org/packages/96/cc/2de9390c87ab81a57491e5e7d68c94f9ddd5a4bc88b455d63bf4333d2188/psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e18a642f3820a24cfd875aad92e75b1831bad922367afea8a5d4bbc2f2ec5e9",
                "md5": "e93a42a2cdba760dafce5759b2e77131",
                "sha256": "75f6280b0d677225c674262b7da05f8f2cb7d9b4bc65e3c682906b5d0130543b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e93a42a2cdba760dafce5759b2e77131",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3861087,
            "upload_time": "2024-12-10T18:09:52",
            "upload_time_iso_8601": "2024-12-10T18:09:52.483778Z",
            "url": "https://files.pythonhosted.org/packages/4e/18/a642f3820a24cfd875aad92e75b1831bad922367afea8a5d4bbc2f2ec5e9/psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eac78d1e5f42d707a7cfe1922c468db7e12979743dbf4c649364174bf2780418",
                "md5": "1d03acb0f1d874da8b40544feaf57ad4",
                "sha256": "b10496f1ca2e0ca28e10fc3e64afeac6983e5a2a0860086d89cb55449ea015da"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1d03acb0f1d874da8b40544feaf57ad4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 3934863,
            "upload_time": "2024-12-10T18:09:54",
            "upload_time_iso_8601": "2024-12-10T18:09:54.786769Z",
            "url": "https://files.pythonhosted.org/packages/ea/c7/8d1e5f42d707a7cfe1922c468db7e12979743dbf4c649364174bf2780418/psqlpy-0.8.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b137be23c7e773d1d9d8a618ecc9cccd869e52b93d74a610bddb14b09827dbd",
                "md5": "7dafd106a09b31509652ebd0ae6f5eaa",
                "sha256": "3328b894579790a20982778969761e11ce7a023ccae701fd7461581a5a2a3dbe"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "7dafd106a09b31509652ebd0ae6f5eaa",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4004673,
            "upload_time": "2024-12-10T18:09:56",
            "upload_time_iso_8601": "2024-12-10T18:09:56.935330Z",
            "url": "https://files.pythonhosted.org/packages/5b/13/7be23c7e773d1d9d8a618ecc9cccd869e52b93d74a610bddb14b09827dbd/psqlpy-0.8.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3e3f4f3d7e81d0548784ef3a3fdc74d8a1f722cd085ce7ef80f00a752470a75",
                "md5": "7e5eac91a6c10ebb5063269590fc1a46",
                "sha256": "015c3c21bb569ee72957f16affe4feac7090ed81f0968923e139a2bed19a4a40"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e5eac91a6c10ebb5063269590fc1a46",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4073105,
            "upload_time": "2024-12-10T18:09:59",
            "upload_time_iso_8601": "2024-12-10T18:09:59.393688Z",
            "url": "https://files.pythonhosted.org/packages/f3/e3/f4f3d7e81d0548784ef3a3fdc74d8a1f722cd085ce7ef80f00a752470a75/psqlpy-0.8.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "691975c818c5bae080e81b0870962caed80b91d19fb3e7a78e2298c0fba66e7a",
                "md5": "bdcc0acec0056d322e4806363cbb9ef2",
                "sha256": "7f2ff58c483c16ab555bb0c5f7cd2c10bee9fd7bd7f84425794cdf501add7e30"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bdcc0acec0056d322e4806363cbb9ef2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3363933,
            "upload_time": "2024-12-10T18:10:02",
            "upload_time_iso_8601": "2024-12-10T18:10:02.061375Z",
            "url": "https://files.pythonhosted.org/packages/69/19/75c818c5bae080e81b0870962caed80b91d19fb3e7a78e2298c0fba66e7a/psqlpy-0.8.6-pp38-pypy38_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "05172964f4060944d36a3395108c0cdf677f3cfa9790868199c2f58adf775986",
                "md5": "a52cb7ba90b3a799476dddd5cbbbcf9f",
                "sha256": "c9c510e2978c763d612306fe2698fde1bb5aa20fd7f640b40098af0aebd8ec36"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a52cb7ba90b3a799476dddd5cbbbcf9f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3649945,
            "upload_time": "2024-12-10T18:10:05",
            "upload_time_iso_8601": "2024-12-10T18:10:05.643404Z",
            "url": "https://files.pythonhosted.org/packages/05/17/2964f4060944d36a3395108c0cdf677f3cfa9790868199c2f58adf775986/psqlpy-0.8.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "82110d76de15051629e7bd2243a85db85c60604814b4abeef83f1b1a20f0399d",
                "md5": "a47766a77ccc99f8f7869b8f63b55bc3",
                "sha256": "4db817cf9ec59575d5b38bec5933500a8c30f777402edbd67223fa12f2f1a7f0"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a47766a77ccc99f8f7869b8f63b55bc3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 4095822,
            "upload_time": "2024-12-10T18:10:08",
            "upload_time_iso_8601": "2024-12-10T18:10:08.133191Z",
            "url": "https://files.pythonhosted.org/packages/82/11/0d76de15051629e7bd2243a85db85c60604814b4abeef83f1b1a20f0399d/psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e84a899f948071317a0331b766ce1199c1c0b4b9b6ff6873168ae2b9a4474098",
                "md5": "8ef0aba9eb6b66f5ebef8c5b9d62a7a8",
                "sha256": "3e47d9e361ec4b8778cc70e6abb9195d36dcf53db1e1d286dd0d750849f33421"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8ef0aba9eb6b66f5ebef8c5b9d62a7a8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3423460,
            "upload_time": "2024-12-10T18:10:11",
            "upload_time_iso_8601": "2024-12-10T18:10:11.627439Z",
            "url": "https://files.pythonhosted.org/packages/e8/4a/899f948071317a0331b766ce1199c1c0b4b9b6ff6873168ae2b9a4474098/psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae26eec5058ef089a9661b140a85a4c6d0e27846ca41bcfd49fc2e756a1c283d",
                "md5": "0c832030e27ad358e12b749bca7aec5e",
                "sha256": "de1ccff6b2a21a7457b562fa0cdcc79f18b46dde5bb26ff1aba11559a1e4e3fa"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0c832030e27ad358e12b749bca7aec5e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3921786,
            "upload_time": "2024-12-10T18:10:13",
            "upload_time_iso_8601": "2024-12-10T18:10:13.921650Z",
            "url": "https://files.pythonhosted.org/packages/ae/26/eec5058ef089a9661b140a85a4c6d0e27846ca41bcfd49fc2e756a1c283d/psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5272024794163986c09dbeb0e5af0729fb42ce5f49a632ed61eac647ba0a535",
                "md5": "b969e78f3779c49bdccac2597331e174",
                "sha256": "5b9db27a9a42769f0e8cec7277bfe20226cd99f8ccc743dc5e8def4a5961cca0"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b969e78f3779c49bdccac2597331e174",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3783336,
            "upload_time": "2024-12-10T18:10:16",
            "upload_time_iso_8601": "2024-12-10T18:10:16.476791Z",
            "url": "https://files.pythonhosted.org/packages/b5/27/2024794163986c09dbeb0e5af0729fb42ce5f49a632ed61eac647ba0a535/psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fce5c03ac51e45615f7ac1dd8264a2b9cc94a4194dcc140e0e1238c5988e11d6",
                "md5": "37dcaa97cbf1cd976b9609d7a3d96594",
                "sha256": "7a1f3e163f15a467d092fd3a649e217ac326c79f8609cc53eac0dac645c6c853"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "37dcaa97cbf1cd976b9609d7a3d96594",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3878728,
            "upload_time": "2024-12-10T18:10:18",
            "upload_time_iso_8601": "2024-12-10T18:10:18.870163Z",
            "url": "https://files.pythonhosted.org/packages/fc/e5/c03ac51e45615f7ac1dd8264a2b9cc94a4194dcc140e0e1238c5988e11d6/psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "25aba23bf9fec0ebadf4e385f5abe672c95e0173f3c90da974f8119eb3990d14",
                "md5": "f9334e8f83a9c1681f36e671670d0543",
                "sha256": "02149fa6b64840be65c81d9b0b4267c7541232a7a8f33de2fc513de2698fb458"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9334e8f83a9c1681f36e671670d0543",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 3934400,
            "upload_time": "2024-12-10T18:10:23",
            "upload_time_iso_8601": "2024-12-10T18:10:23.273627Z",
            "url": "https://files.pythonhosted.org/packages/25/ab/a23bf9fec0ebadf4e385f5abe672c95e0173f3c90da974f8119eb3990d14/psqlpy-0.8.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "331a182f7513ee0db5ccb02a01bb85d9edb8eeba8c134c7fbd5d4fb6fa1d20c8",
                "md5": "3bc5553f5c5de6f0104d1f3897bdf85c",
                "sha256": "b9ee2e4835a2a35a06a752dc6bfb0d2f450137997e2c2c9ed8f2448238e0873c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "3bc5553f5c5de6f0104d1f3897bdf85c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 4005686,
            "upload_time": "2024-12-10T18:10:25",
            "upload_time_iso_8601": "2024-12-10T18:10:25.646480Z",
            "url": "https://files.pythonhosted.org/packages/33/1a/182f7513ee0db5ccb02a01bb85d9edb8eeba8c134c7fbd5d4fb6fa1d20c8/psqlpy-0.8.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9109eab02b5918c1350b11a68906b37bd589859c91be0fbbbe5c3e317d3889f3",
                "md5": "5dae27c1283ee43a85796b4eaabbae0f",
                "sha256": "b3e7e17a09f606024d6d20a7c2e175455aa92f2bde260dc7fe7b1d8fadd92d98"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5dae27c1283ee43a85796b4eaabbae0f",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 4073319,
            "upload_time": "2024-12-10T18:10:28",
            "upload_time_iso_8601": "2024-12-10T18:10:28.292846Z",
            "url": "https://files.pythonhosted.org/packages/91/09/eab02b5918c1350b11a68906b37bd589859c91be0fbbbe5c3e317d3889f3/psqlpy-0.8.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a41fe70d065a62efd185b04f98f0a70ccfb692415f8e68af02f2ac091c7e286a",
                "md5": "65d0861d594acc8d3d16f220e30b479b",
                "sha256": "ee1d2c6f382c313ce4e8307c2694f0358bbda724684de4bd31da5cd051115120"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "65d0861d594acc8d3d16f220e30b479b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3363045,
            "upload_time": "2024-12-10T18:10:30",
            "upload_time_iso_8601": "2024-12-10T18:10:30.683393Z",
            "url": "https://files.pythonhosted.org/packages/a4/1f/e70d065a62efd185b04f98f0a70ccfb692415f8e68af02f2ac091c7e286a/psqlpy-0.8.6-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fedc30abcca24dc30516ec9b6eb69dc4b9c43c37e7415d275df091349f2ca429",
                "md5": "0cc3c4558885d064be7728a0e9d504e5",
                "sha256": "1afa437d25450d34ea8ed53148a84184963cfe1d177f0d92a76e6d6a7a03b822"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0cc3c4558885d064be7728a0e9d504e5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3649631,
            "upload_time": "2024-12-10T18:10:33",
            "upload_time_iso_8601": "2024-12-10T18:10:33.469285Z",
            "url": "https://files.pythonhosted.org/packages/fe/dc/30abcca24dc30516ec9b6eb69dc4b9c43c37e7415d275df091349f2ca429/psqlpy-0.8.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd19dbef39d269b341f18776622bb9ca6e8aab8a7ac6437efdf4be11e2b40920",
                "md5": "25ef91123a026655c0619e9d9e06daa4",
                "sha256": "c8fd1520e578348781d64888954de96224bed2fe355d371f2761d68589ea5c58"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "25ef91123a026655c0619e9d9e06daa4",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4094626,
            "upload_time": "2024-12-10T18:10:40",
            "upload_time_iso_8601": "2024-12-10T18:10:40.450215Z",
            "url": "https://files.pythonhosted.org/packages/fd/19/dbef39d269b341f18776622bb9ca6e8aab8a7ac6437efdf4be11e2b40920/psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c30e5a318a57069210fd63b57055c5306d889ee41bd32f1e564136373d52bfb",
                "md5": "6d11010a206e0d7934b96d3d05d31a93",
                "sha256": "b181e62ac362a4c1819ebd8bb1c02f90adc774a9c18b6605a7353662ceea4785"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6d11010a206e0d7934b96d3d05d31a93",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3423180,
            "upload_time": "2024-12-10T18:10:44",
            "upload_time_iso_8601": "2024-12-10T18:10:44.370508Z",
            "url": "https://files.pythonhosted.org/packages/2c/30/e5a318a57069210fd63b57055c5306d889ee41bd32f1e564136373d52bfb/psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31f5fbdfb341329d03db45fe3e8eb776e3507cca748d9d732c6a54cd17fa0faa",
                "md5": "e5e3bd4f6de16d1cf408c33d72dd9f9e",
                "sha256": "5b4db7722ceaeb39d563a360ae08922349f4395fe08acce3cf525ec2ce6e4535"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e5e3bd4f6de16d1cf408c33d72dd9f9e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3921503,
            "upload_time": "2024-12-10T18:10:47",
            "upload_time_iso_8601": "2024-12-10T18:10:47.274015Z",
            "url": "https://files.pythonhosted.org/packages/31/f5/fbdfb341329d03db45fe3e8eb776e3507cca748d9d732c6a54cd17fa0faa/psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "baf606512e1adeaf5604dc9d63fc31b1c4a1b693e178473d28ff77dbfa655cb0",
                "md5": "30f48d1f7f23b435bb5a74ca5330659b",
                "sha256": "4d9617c8c195b4190eac9f82ca4ae804ac3c962c1eb0f23f0731cd66f970f480"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "30f48d1f7f23b435bb5a74ca5330659b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3783087,
            "upload_time": "2024-12-10T18:10:50",
            "upload_time_iso_8601": "2024-12-10T18:10:50.674027Z",
            "url": "https://files.pythonhosted.org/packages/ba/f6/06512e1adeaf5604dc9d63fc31b1c4a1b693e178473d28ff77dbfa655cb0/psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0602137f65092c12c36d211f0952d6c203bc10a453a2d818dbf8e279da141ed5",
                "md5": "1b4e394cca31db4d10c66c8b4a92caca",
                "sha256": "fb92ffabc0f28e6e0a48c0db4de3a44960c7fdc425240a1f4d1a1c3cc9a00243"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1b4e394cca31db4d10c66c8b4a92caca",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3878235,
            "upload_time": "2024-12-10T18:10:53",
            "upload_time_iso_8601": "2024-12-10T18:10:53.075490Z",
            "url": "https://files.pythonhosted.org/packages/06/02/137f65092c12c36d211f0952d6c203bc10a453a2d818dbf8e279da141ed5/psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3d8bbb90b35b341c6fe6ef0e8f57bbf67c0a49d14260b1630c69d636b65304a9",
                "md5": "de2ae6ea3a1ae14826d0fc41d794ec78",
                "sha256": "49b6eb4022ab92a8d4283e781363b6879da4e7e9163d4082ade8308b77936eb0"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de2ae6ea3a1ae14826d0fc41d794ec78",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 3934531,
            "upload_time": "2024-12-10T18:10:55",
            "upload_time_iso_8601": "2024-12-10T18:10:55.477359Z",
            "url": "https://files.pythonhosted.org/packages/3d/8b/bb90b35b341c6fe6ef0e8f57bbf67c0a49d14260b1630c69d636b65304a9/psqlpy-0.8.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b00544796f8c0ea69e6f9b8994bfda28c5a164fcdfe6f36df062c362c86b76d",
                "md5": "4fd145892c32b7f716bf3b4a8b4e4119",
                "sha256": "aad7622baec4fc4af08dedf74e9c96fb95cf787322dafb7feed1eb9450005d4d"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "4fd145892c32b7f716bf3b4a8b4e4119",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4005505,
            "upload_time": "2024-12-10T18:10:58",
            "upload_time_iso_8601": "2024-12-10T18:10:58.022158Z",
            "url": "https://files.pythonhosted.org/packages/5b/00/544796f8c0ea69e6f9b8994bfda28c5a164fcdfe6f36df062c362c86b76d/psqlpy-0.8.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48fb31cc2ee46e2a744fc69951c9657ceabe6f97d16ef6af8549194742959afb",
                "md5": "31c4b0a8bdceb67e2cf1c12d464c0cd5",
                "sha256": "ba3f817cc186e0ad556a1a900485414d7d99cc8e4237b532d91e883fc14bad31"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "31c4b0a8bdceb67e2cf1c12d464c0cd5",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4073183,
            "upload_time": "2024-12-10T18:11:01",
            "upload_time_iso_8601": "2024-12-10T18:11:01.989654Z",
            "url": "https://files.pythonhosted.org/packages/48/fb/31cc2ee46e2a744fc69951c9657ceabe6f97d16ef6af8549194742959afb/psqlpy-0.8.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "68e415cb57c699148a6a01680f95c150019bf2d2b7bd5c6184d63d3005b99fe3",
                "md5": "9f0b026223459b00afc89a9214813012",
                "sha256": "4fdea182f98184a31061439aec72ede913e692cdcc2b6cc73cdf7780076a9330"
            },
            "downloads": -1,
            "filename": "psqlpy-0.8.6.tar.gz",
            "has_sig": false,
            "md5_digest": "9f0b026223459b00afc89a9214813012",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 259116,
            "upload_time": "2024-12-10T18:11:05",
            "upload_time_iso_8601": "2024-12-10T18:11:05.746684Z",
            "url": "https://files.pythonhosted.org/packages/68/e4/15cb57c699148a6a01680f95c150019bf2d2b7bd5c6184d63d3005b99fe3/psqlpy-0.8.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-10 18:11:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "psqlpy-python",
    "github_project": "psqlpy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "psqlpy"
}
        
Elapsed time: 1.13631s