psqlpy


Namepsqlpy JSON
Version 0.9.3 PyPI version JSON
download
home_pageNone
SummaryAsync PostgreSQL driver for Python written in Rust
upload_time2025-02-22 18:00:12
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/badge/PYTHON-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue?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,
    )

    async with db_pool.acquire() as conn:
        res: QueryResult = await conn.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/df/39/bfa6bec547d9b197b72e547aee1440c300911895798fce00b0439ac8978b/psqlpy-0.9.3.tar.gz",
    "platform": null,
    "description": "[![PyPI - Python Version](https://img.shields.io/badge/PYTHON-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12%20%7C%203.13-blue?style=for-the-badge\n)](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    async with db_pool.acquire() as conn:\n        res: QueryResult = await conn.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.9.3",
    "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": "1fca85ed2d5a927b1c0336e1c5ffc22ec576a9e9edc35a09895d9aa01f165c9b",
                "md5": "30f012328417f8029034d6647d610fe1",
                "sha256": "3c36efab33733d6fb9064a0c9fb59de4a529376837b080277e6825437bb1efa9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30f012328417f8029034d6647d610fe1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4240144,
            "upload_time": "2025-02-22T17:57:24",
            "upload_time_iso_8601": "2025-02-22T17:57:24.357659Z",
            "url": "https://files.pythonhosted.org/packages/1f/ca/85ed2d5a927b1c0336e1c5ffc22ec576a9e9edc35a09895d9aa01f165c9b/psqlpy-0.9.3-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "937245efb35a79ce717e282917610b3ff93fddd869d3e7702dfac8852c49b80f",
                "md5": "42d6ac32c5ab67d896697b1e7345e19b",
                "sha256": "57d9b5054494daaa60a7337351c3f9fc36354bac5764dd868134f9e91cd11245"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "42d6ac32c5ab67d896697b1e7345e19b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4476802,
            "upload_time": "2025-02-22T17:57:27",
            "upload_time_iso_8601": "2025-02-22T17:57:27.872626Z",
            "url": "https://files.pythonhosted.org/packages/93/72/45efb35a79ce717e282917610b3ff93fddd869d3e7702dfac8852c49b80f/psqlpy-0.9.3-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "832b2b25af4cc385bede8e1ba29a0e17ec0e72e8c6318c1c551af536f5216c54",
                "md5": "186cd8f10c89948cd80f6cf6d5795cbd",
                "sha256": "6a32b7f7b700180058ac7b5e7a02bac4c91de1ac94404e2a2a4eb67c91d2369a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "186cd8f10c89948cd80f6cf6d5795cbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4936843,
            "upload_time": "2025-02-22T17:57:30",
            "upload_time_iso_8601": "2025-02-22T17:57:30.235506Z",
            "url": "https://files.pythonhosted.org/packages/83/2b/2b25af4cc385bede8e1ba29a0e17ec0e72e8c6318c1c551af536f5216c54/psqlpy-0.9.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2804bff643f7bd711b41ccc15f7cadc041291350a3a5d989b07bc42b9515da20",
                "md5": "9b1210d9fbd56afc06118394ae2b22db",
                "sha256": "40ce3f9b67c7cea8bff8ce7b2f435191f1f064168134c17ba457695278145cd1"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9b1210d9fbd56afc06118394ae2b22db",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4207043,
            "upload_time": "2025-02-22T17:57:31",
            "upload_time_iso_8601": "2025-02-22T17:57:31.668206Z",
            "url": "https://files.pythonhosted.org/packages/28/04/bff643f7bd711b41ccc15f7cadc041291350a3a5d989b07bc42b9515da20/psqlpy-0.9.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "04ba0e5822e81a7205a4d9cd558f4b0b7d2fae3b2c5ad64b66e08c8ee6fb2404",
                "md5": "ddac79367593b120a2f82bce552659f2",
                "sha256": "6e6704cd34d1ed0f0873c448eb206565fdcd3eb0fc435428860aa529ce203bec"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ddac79367593b120a2f82bce552659f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4806688,
            "upload_time": "2025-02-22T17:57:34",
            "upload_time_iso_8601": "2025-02-22T17:57:34.063293Z",
            "url": "https://files.pythonhosted.org/packages/04/ba/0e5822e81a7205a4d9cd558f4b0b7d2fae3b2c5ad64b66e08c8ee6fb2404/psqlpy-0.9.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c87ae803e1c33ceb0c219c49db4767f1888294e08ddbf58e62bad81189e8f575",
                "md5": "2580f1bf2fb638b9c77139680af88ef0",
                "sha256": "d3215cac58e8a6fb867a4cafaac3303d03ace5a623cb2ed7858ee797ab6b2bcd"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2580f1bf2fb638b9c77139680af88ef0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4651636,
            "upload_time": "2025-02-22T17:57:37",
            "upload_time_iso_8601": "2025-02-22T17:57:37.354072Z",
            "url": "https://files.pythonhosted.org/packages/c8/7a/e803e1c33ceb0c219c49db4767f1888294e08ddbf58e62bad81189e8f575/psqlpy-0.9.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "50a5b69d8da7aee1c6c5c40396d832e0d970a3c4fbbe3974296010d7397c207b",
                "md5": "4e744490b74afc1e5f473d9bf8696273",
                "sha256": "d6a741e1694325c737f1917fa80ffcda27a3a533c03d033a059b39e5fb85eca6"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4e744490b74afc1e5f473d9bf8696273",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4775602,
            "upload_time": "2025-02-22T17:57:39",
            "upload_time_iso_8601": "2025-02-22T17:57:39.796998Z",
            "url": "https://files.pythonhosted.org/packages/50/a5/b69d8da7aee1c6c5c40396d832e0d970a3c4fbbe3974296010d7397c207b/psqlpy-0.9.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "645f27d3215bab4246d1978eecc74e649e4a12b7fbe895a24cc8ed1f0c6c5d09",
                "md5": "4c37d875bde0b1d2b893c78404facd4b",
                "sha256": "bc9013962aac0ca16d59e8b7a20856c0838fb09ddbf9a3e5bb2cde2add3c5a89"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c37d875bde0b1d2b893c78404facd4b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4825250,
            "upload_time": "2025-02-22T17:57:43",
            "upload_time_iso_8601": "2025-02-22T17:57:43.495748Z",
            "url": "https://files.pythonhosted.org/packages/64/5f/27d3215bab4246d1978eecc74e649e4a12b7fbe895a24cc8ed1f0c6c5d09/psqlpy-0.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "319cbeb520f93f8f5fccb8d09bf9afb5b99b844e89e154de733eb3f54dbcdc82",
                "md5": "73fbd84c4b0dfe1e7aabe1996a9ebc57",
                "sha256": "2bdf0afa1cae9e79553665a906315d7c6421ed587b012ec9c4397e91c200fd7b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "73fbd84c4b0dfe1e7aabe1996a9ebc57",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4857456,
            "upload_time": "2025-02-22T17:57:45",
            "upload_time_iso_8601": "2025-02-22T17:57:45.861310Z",
            "url": "https://files.pythonhosted.org/packages/31/9c/beb520f93f8f5fccb8d09bf9afb5b99b844e89e154de733eb3f54dbcdc82/psqlpy-0.9.3-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "89c45344648456b9184ef142baafd216396f2566e7025177070e26afbd52442c",
                "md5": "8d56fc2938fc3d05232b2585daf384df",
                "sha256": "bd2c3c3a5b0305d42430cc8af1d5c4130008b9a80cf5bb3fedfd414cd9b95181"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d56fc2938fc3d05232b2585daf384df",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 4977942,
            "upload_time": "2025-02-22T17:57:47",
            "upload_time_iso_8601": "2025-02-22T17:57:47.462722Z",
            "url": "https://files.pythonhosted.org/packages/89/c4/5344648456b9184ef142baafd216396f2566e7025177070e26afbd52442c/psqlpy-0.9.3-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a52b376c046d4f4da66d22aa6db62a33fca8ccecc41538beb6640cef0c081b3",
                "md5": "20060d8a69cc13ac68b0a887ef6ad45f",
                "sha256": "79a0ec837dd314df5af74577f8b5b2fb752e74641a5cb66d58d779d88648d191"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "20060d8a69cc13ac68b0a887ef6ad45f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3308783,
            "upload_time": "2025-02-22T17:57:49",
            "upload_time_iso_8601": "2025-02-22T17:57:49.924572Z",
            "url": "https://files.pythonhosted.org/packages/5a/52/b376c046d4f4da66d22aa6db62a33fca8ccecc41538beb6640cef0c081b3/psqlpy-0.9.3-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0824f6552cdaf3e062966e6beac948c4f8daa28d32de9aae68011ebbeadd590b",
                "md5": "6ee4afe64a15e095de3645ec32857daa",
                "sha256": "ee0d53b33f7b841cd606a8dbbf8b36e809dddee526dc7e226a7d1b1fdb0e3e3b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6ee4afe64a15e095de3645ec32857daa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3721262,
            "upload_time": "2025-02-22T17:57:52",
            "upload_time_iso_8601": "2025-02-22T17:57:52.295154Z",
            "url": "https://files.pythonhosted.org/packages/08/24/f6552cdaf3e062966e6beac948c4f8daa28d32de9aae68011ebbeadd590b/psqlpy-0.9.3-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5e1a48bdacd23b7d2e2dd2c74bef7591e35a40795e9071faf672828f947bc9b5",
                "md5": "a37f3c4810a94e84a3ab36b068bd222f",
                "sha256": "66830960242bdec926ebb697284731f643176f4694419ecc4e48d064545c6e40"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a37f3c4810a94e84a3ab36b068bd222f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4240197,
            "upload_time": "2025-02-22T17:57:54",
            "upload_time_iso_8601": "2025-02-22T17:57:54.795013Z",
            "url": "https://files.pythonhosted.org/packages/5e/1a/48bdacd23b7d2e2dd2c74bef7591e35a40795e9071faf672828f947bc9b5/psqlpy-0.9.3-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4b48299439ba665aeafbd053150d77c451254a7ef797c143e9760cfbcfe240c2",
                "md5": "3194b77e92d09f41c7e25bd422cd1919",
                "sha256": "45a12aead3ca4d2b18b114b541289bcb5894bd5746670ee9fe5d783f55a565d4"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "3194b77e92d09f41c7e25bd422cd1919",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4477221,
            "upload_time": "2025-02-22T17:57:56",
            "upload_time_iso_8601": "2025-02-22T17:57:56.293646Z",
            "url": "https://files.pythonhosted.org/packages/4b/48/299439ba665aeafbd053150d77c451254a7ef797c143e9760cfbcfe240c2/psqlpy-0.9.3-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09cbfbddd6c99f770a0fece65a3470d98dc0873a16a6c4e1adda246e5a5e6551",
                "md5": "c9e2e1d0d1f1519a818de5deb33bc279",
                "sha256": "e3fec5e579f519b98f5feb9e2148549c48391811e3153156deee7d2bc129f605"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c9e2e1d0d1f1519a818de5deb33bc279",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4937618,
            "upload_time": "2025-02-22T17:57:58",
            "upload_time_iso_8601": "2025-02-22T17:57:58.362016Z",
            "url": "https://files.pythonhosted.org/packages/09/cb/fbddd6c99f770a0fece65a3470d98dc0873a16a6c4e1adda246e5a5e6551/psqlpy-0.9.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6cc04ace3aacbe3a7b9e87a282c3ca2313e25ef7970739e1f8392fa6da5781e7",
                "md5": "6d1b3f526140f33ecfa65ffe9e43316f",
                "sha256": "11a2b3574e9cf37f49dd5a8376823bb1c416222c133b59873ad2fdb91b0ba25f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6d1b3f526140f33ecfa65ffe9e43316f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4206271,
            "upload_time": "2025-02-22T17:58:00",
            "upload_time_iso_8601": "2025-02-22T17:58:00.753232Z",
            "url": "https://files.pythonhosted.org/packages/6c/c0/4ace3aacbe3a7b9e87a282c3ca2313e25ef7970739e1f8392fa6da5781e7/psqlpy-0.9.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eb1b194462eddc3373af65c04ed2d6d710f57812937f5361fb8492659e43987f",
                "md5": "ab749d0f8723e05d06ad1b77ec006975",
                "sha256": "92afd8603006a18461d91167eff7ac100029b47034bbdd477f5e3805f9d23ff8"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ab749d0f8723e05d06ad1b77ec006975",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4805586,
            "upload_time": "2025-02-22T17:58:02",
            "upload_time_iso_8601": "2025-02-22T17:58:02.524071Z",
            "url": "https://files.pythonhosted.org/packages/eb/1b/194462eddc3373af65c04ed2d6d710f57812937f5361fb8492659e43987f/psqlpy-0.9.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b91ffcdb60dda446b392f27243f9e5f633d4f8a95ab3e222c120d26b6b6ebf47",
                "md5": "c072da7ea5c0c1228e7d7c53584d9b01",
                "sha256": "71a912328513d6c89a8c3d1be615916ab360075c810ff0445e7c53030ff03186"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "c072da7ea5c0c1228e7d7c53584d9b01",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4653073,
            "upload_time": "2025-02-22T17:58:05",
            "upload_time_iso_8601": "2025-02-22T17:58:05.133259Z",
            "url": "https://files.pythonhosted.org/packages/b9/1f/fcdb60dda446b392f27243f9e5f633d4f8a95ab3e222c120d26b6b6ebf47/psqlpy-0.9.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c9a7b82afd9f9950304468cecc9b027fc8248d846764f9f9a0251b3c77c9c0f4",
                "md5": "2fb14ec13819e77e36f5161ef3335e91",
                "sha256": "4861bb23574f2275bbd4f695bd4b2393fe6a5442f0a1bb603ebb6061f9926f9e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2fb14ec13819e77e36f5161ef3335e91",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4786884,
            "upload_time": "2025-02-22T17:58:07",
            "upload_time_iso_8601": "2025-02-22T17:58:07.561380Z",
            "url": "https://files.pythonhosted.org/packages/c9/a7/b82afd9f9950304468cecc9b027fc8248d846764f9f9a0251b3c77c9c0f4/psqlpy-0.9.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "294911b42d762702be8624f6e1824a8743eb496951204389f1faaef1b31c60b7",
                "md5": "f7918dbe3a3333b28b22e316cb29466b",
                "sha256": "cf151599e516d7b0bbe0f8e2c10d45b7a48a72be2716c9fe7a77ecf41b17e3b9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f7918dbe3a3333b28b22e316cb29466b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4823808,
            "upload_time": "2025-02-22T17:58:09",
            "upload_time_iso_8601": "2025-02-22T17:58:09.179887Z",
            "url": "https://files.pythonhosted.org/packages/29/49/11b42d762702be8624f6e1824a8743eb496951204389f1faaef1b31c60b7/psqlpy-0.9.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f539300dfdfa8780e7a1cf0dc5569a489a87f0061a264ce87ffd762351f53d7f",
                "md5": "1b86a8f5f0502cc21dd72e10831882e2",
                "sha256": "b3fece2b78d568d74435b5ff0f05406bb3a43b1c571a66b7c1909efd52c31508"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "1b86a8f5f0502cc21dd72e10831882e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4857527,
            "upload_time": "2025-02-22T17:58:11",
            "upload_time_iso_8601": "2025-02-22T17:58:11.896815Z",
            "url": "https://files.pythonhosted.org/packages/f5/39/300dfdfa8780e7a1cf0dc5569a489a87f0061a264ce87ffd762351f53d7f/psqlpy-0.9.3-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1ec178c575c45ad4884151d5f741e87ffe00712d491ad8c70413f2a4e95e173",
                "md5": "cf5ad29269215566e89853e732ad890d",
                "sha256": "3c49ea203ef3007b8dbd12a453dd6d45aa9ffd3e395181e837138d172e30c293"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cf5ad29269215566e89853e732ad890d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 4979751,
            "upload_time": "2025-02-22T17:58:13",
            "upload_time_iso_8601": "2025-02-22T17:58:13.697282Z",
            "url": "https://files.pythonhosted.org/packages/c1/ec/178c575c45ad4884151d5f741e87ffe00712d491ad8c70413f2a4e95e173/psqlpy-0.9.3-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a0ce5ebe4c100ac134ef16ad95469cd38e9654ceca017561789680020149765",
                "md5": "76a107789ad90e20af7eca547bed256e",
                "sha256": "60833a0187dfdd859248bc424326d34b96b74c627e057a286632adbe4fb185a1"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "76a107789ad90e20af7eca547bed256e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3308639,
            "upload_time": "2025-02-22T17:58:15",
            "upload_time_iso_8601": "2025-02-22T17:58:15.259596Z",
            "url": "https://files.pythonhosted.org/packages/8a/0c/e5ebe4c100ac134ef16ad95469cd38e9654ceca017561789680020149765/psqlpy-0.9.3-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90e8a0e1b19d7035e5b849ca57b1c201d0243268bd6a215781ebd197ccfdca81",
                "md5": "354c429295f38f66327f753f792b88eb",
                "sha256": "185d508f9165ae51ed8e659ce8356986523ac14021233162e7b565a1b50e0486"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "354c429295f38f66327f753f792b88eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3721553,
            "upload_time": "2025-02-22T17:58:16",
            "upload_time_iso_8601": "2025-02-22T17:58:16.927377Z",
            "url": "https://files.pythonhosted.org/packages/90/e8/a0e1b19d7035e5b849ca57b1c201d0243268bd6a215781ebd197ccfdca81/psqlpy-0.9.3-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6b73f65c655c2c3d89f36a6eb160db86e8aecbe7a0258368d05111b08456a3d6",
                "md5": "d1f9f3fc1e41ee20088bba58c56a64e0",
                "sha256": "6502545e46f9453a6103152e223f43461ca90e4d6d353b8567b40b45a01d43f8"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1f9f3fc1e41ee20088bba58c56a64e0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4226965,
            "upload_time": "2025-02-22T17:58:18",
            "upload_time_iso_8601": "2025-02-22T17:58:18.397682Z",
            "url": "https://files.pythonhosted.org/packages/6b/73/f65c655c2c3d89f36a6eb160db86e8aecbe7a0258368d05111b08456a3d6/psqlpy-0.9.3-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "329be17f40ecf4c518d83ff4cd742869d769f2a26224531a6fe1dfee88bba210",
                "md5": "ab31d924beea01d412af37b3e258284d",
                "sha256": "f447410df05b0b927a8cc995fa011477b291d57f1b8f8ca52ee4a3799b698c8b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ab31d924beea01d412af37b3e258284d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4440561,
            "upload_time": "2025-02-22T17:58:20",
            "upload_time_iso_8601": "2025-02-22T17:58:20.166746Z",
            "url": "https://files.pythonhosted.org/packages/32/9b/e17f40ecf4c518d83ff4cd742869d769f2a26224531a6fe1dfee88bba210/psqlpy-0.9.3-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c626f9e6b409c6af33792386ba0e7a2beece6cf96fdffa8739144dfc1c897f4",
                "md5": "66967b5694464b849d27109ad60c7734",
                "sha256": "b825a3534d6a2810aed9c53873b8a58562bd28afc95506643ec4cc095bdda1a0"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "66967b5694464b849d27109ad60c7734",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4936741,
            "upload_time": "2025-02-22T17:58:21",
            "upload_time_iso_8601": "2025-02-22T17:58:21.768145Z",
            "url": "https://files.pythonhosted.org/packages/6c/62/6f9e6b409c6af33792386ba0e7a2beece6cf96fdffa8739144dfc1c897f4/psqlpy-0.9.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aed39f5ed5a8703dd3b1349f4ff53b03eb4b2589cb0034186cdf8a562a97653c",
                "md5": "7263457d6bc4112dfe3a6cf1f11c73ca",
                "sha256": "842a06192c4d6748aa63df3966b8685630ce1d2f1cdfbe54f95177c2db7436ad"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7263457d6bc4112dfe3a6cf1f11c73ca",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4219026,
            "upload_time": "2025-02-22T17:58:23",
            "upload_time_iso_8601": "2025-02-22T17:58:23.999064Z",
            "url": "https://files.pythonhosted.org/packages/ae/d3/9f5ed5a8703dd3b1349f4ff53b03eb4b2589cb0034186cdf8a562a97653c/psqlpy-0.9.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7bca9788d4ad663f6841825f89013414ac28a483bb031417ccf6e5f087065139",
                "md5": "ba96b9ab1ddd45137694223db8c24286",
                "sha256": "7ece78105348c482bbcc1c7504c2067e8baf8ec64600aea40c293880995fb39c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ba96b9ab1ddd45137694223db8c24286",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4805613,
            "upload_time": "2025-02-22T17:58:25",
            "upload_time_iso_8601": "2025-02-22T17:58:25.732662Z",
            "url": "https://files.pythonhosted.org/packages/7b/ca/9788d4ad663f6841825f89013414ac28a483bb031417ccf6e5f087065139/psqlpy-0.9.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8a32702d69e47ef26a75c1f8fbf2cfe9e280da45945501998082644f98f1411",
                "md5": "1ead31ecb4d5d6a3ad866176955d2427",
                "sha256": "c099c16aa3d224d3b0c6950eabbbf58154f04612522511c3d83a0e97cd689eed"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1ead31ecb4d5d6a3ad866176955d2427",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4645177,
            "upload_time": "2025-02-22T17:58:27",
            "upload_time_iso_8601": "2025-02-22T17:58:27.448897Z",
            "url": "https://files.pythonhosted.org/packages/f8/a3/2702d69e47ef26a75c1f8fbf2cfe9e280da45945501998082644f98f1411/psqlpy-0.9.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa8ac452f47cc9cabdcd694681ca2c8326ea3887cbf481678266e67de334d984",
                "md5": "a3a11401b72adb43ed68e74e5e67a00b",
                "sha256": "bb9746cdb5c8ddbbcf952bad67e07f4c46722de072cf6cfd69d8fb67d296156c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a3a11401b72adb43ed68e74e5e67a00b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4775536,
            "upload_time": "2025-02-22T17:58:29",
            "upload_time_iso_8601": "2025-02-22T17:58:29.366083Z",
            "url": "https://files.pythonhosted.org/packages/aa/8a/c452f47cc9cabdcd694681ca2c8326ea3887cbf481678266e67de334d984/psqlpy-0.9.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c61dfa6f86bf856019b0f48cdc92497afe632e1176d1d12773d5a77971de0096",
                "md5": "71abc92c56e7a92e8e259a6200a366a6",
                "sha256": "4beb0fc66c7924edcf6f842682554910d93376e31d527fa3d055ee24326bd84f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71abc92c56e7a92e8e259a6200a366a6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4826617,
            "upload_time": "2025-02-22T17:58:31",
            "upload_time_iso_8601": "2025-02-22T17:58:31.099905Z",
            "url": "https://files.pythonhosted.org/packages/c6/1d/fa6f86bf856019b0f48cdc92497afe632e1176d1d12773d5a77971de0096/psqlpy-0.9.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6e5c8d85a5295ea236d85213aced33560ff93f8224dd7830d80e6bb37b5488d9",
                "md5": "20a4c8bf74b76e0d2d14f0450d0a132a",
                "sha256": "40e530d71441af61b791723bbf4a198b0da4e95f59d261e67074790564b629e5"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "20a4c8bf74b76e0d2d14f0450d0a132a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4826660,
            "upload_time": "2025-02-22T17:58:32",
            "upload_time_iso_8601": "2025-02-22T17:58:32.861386Z",
            "url": "https://files.pythonhosted.org/packages/6e/5c/8d85a5295ea236d85213aced33560ff93f8224dd7830d80e6bb37b5488d9/psqlpy-0.9.3-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3ddd6181320adb9271bb8559c1588cf6c956592dd19876bf09937f8b647e5c6",
                "md5": "eebba094ae600426304c32c301c529ba",
                "sha256": "a74926fa272acc2889f510317894307c2dda7702feb8195a159b564603d0c74c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eebba094ae600426304c32c301c529ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 4946588,
            "upload_time": "2025-02-22T17:58:34",
            "upload_time_iso_8601": "2025-02-22T17:58:34.363214Z",
            "url": "https://files.pythonhosted.org/packages/d3/dd/d6181320adb9271bb8559c1588cf6c956592dd19876bf09937f8b647e5c6/psqlpy-0.9.3-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e00c9fa61aec2daf03e257fe314a2db0671828e1b397b028473b190fac921067",
                "md5": "05d90ed7ac52b26705123d8034db1ea3",
                "sha256": "2b125d06a0c2718b5cf3b9c866ea9bf19764f51c2aa054919534e4767f43b1f8"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "05d90ed7ac52b26705123d8034db1ea3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3293165,
            "upload_time": "2025-02-22T17:58:36",
            "upload_time_iso_8601": "2025-02-22T17:58:36.726749Z",
            "url": "https://files.pythonhosted.org/packages/e0/0c/9fa61aec2daf03e257fe314a2db0671828e1b397b028473b190fac921067/psqlpy-0.9.3-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a7c49717e45df23318bf1ebc6775ad4755e5b2ca7d920aaaeed514900a9fe65",
                "md5": "0614ae1f9dfcee142b91cad00d7a2587",
                "sha256": "613facca51bbf0682d863989e7368222e8040b3ce5f5b0ae3ce30d9df4e44d60"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0614ae1f9dfcee142b91cad00d7a2587",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3700904,
            "upload_time": "2025-02-22T17:58:39",
            "upload_time_iso_8601": "2025-02-22T17:58:39.067029Z",
            "url": "https://files.pythonhosted.org/packages/0a/7c/49717e45df23318bf1ebc6775ad4755e5b2ca7d920aaaeed514900a9fe65/psqlpy-0.9.3-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4d70491f46e652492b22a8038082eae8821c3f74febba3d89eb72efbaa50e41c",
                "md5": "196010a73c5fa38d54481ff1f28d2762",
                "sha256": "9c7b371f5bc3e4e60e7f0b34db5c8ec82c6aee3e967f6916251895fc0123015b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "196010a73c5fa38d54481ff1f28d2762",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4225496,
            "upload_time": "2025-02-22T17:58:40",
            "upload_time_iso_8601": "2025-02-22T17:58:40.629288Z",
            "url": "https://files.pythonhosted.org/packages/4d/70/491f46e652492b22a8038082eae8821c3f74febba3d89eb72efbaa50e41c/psqlpy-0.9.3-cp313-cp313-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ae283d29c062876383ad016897ecec2d8b67ca36fe3d37f5c25367e83c9a9db",
                "md5": "8f76e39e62309b446e90fbacbeb23a1f",
                "sha256": "8546854232368d26eb2c7eba64df2765a4b4698d1465a9c20e6af0b61f495558"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "8f76e39e62309b446e90fbacbeb23a1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4438780,
            "upload_time": "2025-02-22T17:58:42",
            "upload_time_iso_8601": "2025-02-22T17:58:42.356434Z",
            "url": "https://files.pythonhosted.org/packages/2a/e2/83d29c062876383ad016897ecec2d8b67ca36fe3d37f5c25367e83c9a9db/psqlpy-0.9.3-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "196a4f520027cf6474f20e45a9292c9e80e297763c82ffb47cc4f9176d286865",
                "md5": "ca19992b9a5bde54e018420a25a7d444",
                "sha256": "d5e83ede139b7c650b5be3019de769db5bab44e72c3365604719222ca9c0825d"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ca19992b9a5bde54e018420a25a7d444",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4935733,
            "upload_time": "2025-02-22T17:58:43",
            "upload_time_iso_8601": "2025-02-22T17:58:43.861488Z",
            "url": "https://files.pythonhosted.org/packages/19/6a/4f520027cf6474f20e45a9292c9e80e297763c82ffb47cc4f9176d286865/psqlpy-0.9.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "844d44165581b4bc0eb7cda0b35da1a72681c38cb67506e18b244e5bd8373d9f",
                "md5": "83d76e9f6d420ff6b9ebd014c888b71e",
                "sha256": "5441f83b707f698c23b9c498845caabf523248adda1276be4efc58474991ba88"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "83d76e9f6d420ff6b9ebd014c888b71e",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4217304,
            "upload_time": "2025-02-22T17:58:47",
            "upload_time_iso_8601": "2025-02-22T17:58:47.466154Z",
            "url": "https://files.pythonhosted.org/packages/84/4d/44165581b4bc0eb7cda0b35da1a72681c38cb67506e18b244e5bd8373d9f/psqlpy-0.9.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "510b357b9f0e303f6378cb5a03b58c5d0be31d219b013f5a670c5fec82ca3fc5",
                "md5": "61c79b4465cc056bc2797c983efeb1b6",
                "sha256": "c9070b7a767aa3ad6d16a6b4008b3590e576296d1ef810f11fbf7ad317ca902e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "61c79b4465cc056bc2797c983efeb1b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4804254,
            "upload_time": "2025-02-22T17:58:52",
            "upload_time_iso_8601": "2025-02-22T17:58:52.052318Z",
            "url": "https://files.pythonhosted.org/packages/51/0b/357b9f0e303f6378cb5a03b58c5d0be31d219b013f5a670c5fec82ca3fc5/psqlpy-0.9.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7da3721d5457d64584d521219328210a216790b7a911710864a9260bd2760c2",
                "md5": "dd78832b2934575fcd5471d93edc6748",
                "sha256": "2452e0c1b5fa1f4d4b0c73daf277de0785e2a4aaa7d75282b100b2d1758a7677"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "dd78832b2934575fcd5471d93edc6748",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4644033,
            "upload_time": "2025-02-22T17:58:54",
            "upload_time_iso_8601": "2025-02-22T17:58:54.563503Z",
            "url": "https://files.pythonhosted.org/packages/e7/da/3721d5457d64584d521219328210a216790b7a911710864a9260bd2760c2/psqlpy-0.9.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "44fc1170684ea74be268d2b27ae7e69517c29f6bd5bafb192bb7f76615d3fa79",
                "md5": "4749b092ca2bac49db0c6025218a5eb4",
                "sha256": "231f57d6129358bdd828f1a24667c727ac9cd07ae374b76ab9d860bc9778be36"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "4749b092ca2bac49db0c6025218a5eb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4774739,
            "upload_time": "2025-02-22T17:58:56",
            "upload_time_iso_8601": "2025-02-22T17:58:56.761625Z",
            "url": "https://files.pythonhosted.org/packages/44/fc/1170684ea74be268d2b27ae7e69517c29f6bd5bafb192bb7f76615d3fa79/psqlpy-0.9.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4dbbcd369c0d7b9a022b07740167f1d7eae33ccac1a239e10b21306ca6ebc99e",
                "md5": "b045cf3f8eb2445447dd250e552c2457",
                "sha256": "b9d258b4af8593fafd02ec00dd594f0de7cb9c5a6d59bb30c0883bb314046bf4"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b045cf3f8eb2445447dd250e552c2457",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4826125,
            "upload_time": "2025-02-22T17:58:58",
            "upload_time_iso_8601": "2025-02-22T17:58:58.824249Z",
            "url": "https://files.pythonhosted.org/packages/4d/bb/cd369c0d7b9a022b07740167f1d7eae33ccac1a239e10b21306ca6ebc99e/psqlpy-0.9.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cff6bba939bab5e6b7b42aa2b3f8eedb46f7c9d5e5c21e008c856986d594255",
                "md5": "050fe40eb1d3084ef1555ccd69b24346",
                "sha256": "5a45f42936faa2839b72d8ba6f31c7f22490cf5211a5acfe507655b22110df6e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "050fe40eb1d3084ef1555ccd69b24346",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4826300,
            "upload_time": "2025-02-22T17:59:01",
            "upload_time_iso_8601": "2025-02-22T17:59:01.393434Z",
            "url": "https://files.pythonhosted.org/packages/2c/ff/6bba939bab5e6b7b42aa2b3f8eedb46f7c9d5e5c21e008c856986d594255/psqlpy-0.9.3-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "942f2702b621b8d68683b14d954f5ff2a7a65904a9ae8ea1b62278a1d81cdd84",
                "md5": "83f625c58c082bfef0c7b8ed0d0e0548",
                "sha256": "81f2c9f7f94388d5977e28ab00522ddccd1b880e9f382e350207a80a6c2b790f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "83f625c58c082bfef0c7b8ed0d0e0548",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 4944879,
            "upload_time": "2025-02-22T17:59:02",
            "upload_time_iso_8601": "2025-02-22T17:59:02.903253Z",
            "url": "https://files.pythonhosted.org/packages/94/2f/2702b621b8d68683b14d954f5ff2a7a65904a9ae8ea1b62278a1d81cdd84/psqlpy-0.9.3-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4697b6dacbe274cbf95419af1c8c6c5f06a0290a22a66b4202cbc493db97d127",
                "md5": "90597c383b045c6cb438bbbe5d01736d",
                "sha256": "9126f5e942c2a8ed1aefa8a662a2865f7aaf293a7610911fd4a07200c133a27a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "90597c383b045c6cb438bbbe5d01736d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3292642,
            "upload_time": "2025-02-22T17:59:04",
            "upload_time_iso_8601": "2025-02-22T17:59:04.528984Z",
            "url": "https://files.pythonhosted.org/packages/46/97/b6dacbe274cbf95419af1c8c6c5f06a0290a22a66b4202cbc493db97d127/psqlpy-0.9.3-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ea55aaadda7cbdfdbef9f880b57fb25d3cb641e01a71fbd20d76f59a5eddab78",
                "md5": "b78317089b527644b298cc4435fc8b81",
                "sha256": "e438732440dbba845b1f2fcec426cc8a70461d31e81b330efe5ab4e5a83ead52"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b78317089b527644b298cc4435fc8b81",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.8",
            "size": 3700554,
            "upload_time": "2025-02-22T17:59:06",
            "upload_time_iso_8601": "2025-02-22T17:59:06.160696Z",
            "url": "https://files.pythonhosted.org/packages/ea/55/aaadda7cbdfdbef9f880b57fb25d3cb641e01a71fbd20d76f59a5eddab78/psqlpy-0.9.3-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae4d3395a1a83e4501f9928c83fbfdc88f643158a3224d76d06f6eca837c61a7",
                "md5": "c1978653f1014192925333b2498bdfd2",
                "sha256": "583f93e6dcdc5f0c6a9259ed7da686c5a888f10ac8546cdd7e4cacfac5826700"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c1978653f1014192925333b2498bdfd2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4240939,
            "upload_time": "2025-02-22T17:59:07",
            "upload_time_iso_8601": "2025-02-22T17:59:07.697747Z",
            "url": "https://files.pythonhosted.org/packages/ae/4d/3395a1a83e4501f9928c83fbfdc88f643158a3224d76d06f6eca837c61a7/psqlpy-0.9.3-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d446610c514db36e83e1f5f9e3f309d30795eff8ef7cba45bc223bea98811fa4",
                "md5": "06d42f3d9b33a86cb6dc4da5f125e78b",
                "sha256": "8fc690c4b56b5aa3242518309167c78820621fd6b3284951c65d7426218be3f6"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "06d42f3d9b33a86cb6dc4da5f125e78b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4479396,
            "upload_time": "2025-02-22T17:59:10",
            "upload_time_iso_8601": "2025-02-22T17:59:10.265012Z",
            "url": "https://files.pythonhosted.org/packages/d4/46/610c514db36e83e1f5f9e3f309d30795eff8ef7cba45bc223bea98811fa4/psqlpy-0.9.3-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d36fe06b173bee1bc09aac918c4759071773d433c04c943a7d161de1c93c87f",
                "md5": "506fd8f11c072aa3cbe2cc4299177c04",
                "sha256": "1395fcfdb294d75ee9044b1da60fcaaca3d01c62cfa338f3c18ecd097e0bd738"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "506fd8f11c072aa3cbe2cc4299177c04",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4937303,
            "upload_time": "2025-02-22T17:59:11",
            "upload_time_iso_8601": "2025-02-22T17:59:11.964041Z",
            "url": "https://files.pythonhosted.org/packages/0d/36/fe06b173bee1bc09aac918c4759071773d433c04c943a7d161de1c93c87f/psqlpy-0.9.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c891a2187176a1799c2b5d409f6d4fc39c40c2abfd3dfb2d08435c2956a86539",
                "md5": "4059ae4dbce9b9e6b05aef0b2af24b09",
                "sha256": "033e41fecdfe3b4dee6050d4002c5d619b9325bef4167cc497d644c093ee87f4"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "4059ae4dbce9b9e6b05aef0b2af24b09",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4210807,
            "upload_time": "2025-02-22T17:59:13",
            "upload_time_iso_8601": "2025-02-22T17:59:13.691237Z",
            "url": "https://files.pythonhosted.org/packages/c8/91/a2187176a1799c2b5d409f6d4fc39c40c2abfd3dfb2d08435c2956a86539/psqlpy-0.9.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b7d7313638aee4d3f73c4c07bf37a232d83348c37c251f609881796ee6324267",
                "md5": "ed1454dc66625d1564e91614859cd3f4",
                "sha256": "7fadb57a391db8ac1b172a2f3882796e8f77ef2e01795db9fe96870b3d434116"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ed1454dc66625d1564e91614859cd3f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4807024,
            "upload_time": "2025-02-22T17:59:15",
            "upload_time_iso_8601": "2025-02-22T17:59:15.269250Z",
            "url": "https://files.pythonhosted.org/packages/b7/d7/313638aee4d3f73c4c07bf37a232d83348c37c251f609881796ee6324267/psqlpy-0.9.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "010964469aa84e596d8c08210ff6e86d7aafb75eedb7ffae12daa75519eb9f97",
                "md5": "bee890dc92d9cef61da4f99c788e1592",
                "sha256": "d7cb7714554cf08e4eaea8fd547dddb65a32927db4c37afd0fbe9a941d839743"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bee890dc92d9cef61da4f99c788e1592",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4653704,
            "upload_time": "2025-02-22T17:59:17",
            "upload_time_iso_8601": "2025-02-22T17:59:17.655530Z",
            "url": "https://files.pythonhosted.org/packages/01/09/64469aa84e596d8c08210ff6e86d7aafb75eedb7ffae12daa75519eb9f97/psqlpy-0.9.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e64728eb3014eff4642be833abe1c5c745cd31efd63ef5706528901e9efad820",
                "md5": "1b18a4df6d5df1f1007597b1f72eae3c",
                "sha256": "ddbcd8438cc439862e05e03f4cf364f76dc51d918fe405878c1acfab1848112c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "1b18a4df6d5df1f1007597b1f72eae3c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4789815,
            "upload_time": "2025-02-22T17:59:19",
            "upload_time_iso_8601": "2025-02-22T17:59:19.301292Z",
            "url": "https://files.pythonhosted.org/packages/e6/47/28eb3014eff4642be833abe1c5c745cd31efd63ef5706528901e9efad820/psqlpy-0.9.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "177c509f51dfae6b4fd4282d2589199ab9a895bb3984bf27244231566d5f8cad",
                "md5": "4dd226538d7aa75ef2b0467f234f4f29",
                "sha256": "5fd086508cf11e3c390f5d6ed638a39e3d2b4186e53e33ffe6af9b37981ef615"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4dd226538d7aa75ef2b0467f234f4f29",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4826656,
            "upload_time": "2025-02-22T17:59:20",
            "upload_time_iso_8601": "2025-02-22T17:59:20.865209Z",
            "url": "https://files.pythonhosted.org/packages/17/7c/509f51dfae6b4fd4282d2589199ab9a895bb3984bf27244231566d5f8cad/psqlpy-0.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b579bb9725575368f46570b646b45da22ef943e97b32e336a485ac169906c1d1",
                "md5": "ae3c133d4f33536c290cd390a313fbdf",
                "sha256": "35aa277d6585ed14936e6c1e4de677564959e379485272906c88090cc5e635dd"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "ae3c133d4f33536c290cd390a313fbdf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4860622,
            "upload_time": "2025-02-22T17:59:22",
            "upload_time_iso_8601": "2025-02-22T17:59:22.595767Z",
            "url": "https://files.pythonhosted.org/packages/b5/79/bb9725575368f46570b646b45da22ef943e97b32e336a485ac169906c1d1/psqlpy-0.9.3-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d3693d80d7286b116734fa8c256b711a0a9554d31df82f7f33cd52e7772ba77b",
                "md5": "06b1df6d0999a6e387fe2d5d9d2c8c90",
                "sha256": "81a25ef924322a15a53ee6c36dd38c3d609d05c96f3cf500af33cd929cbe30a1"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "06b1df6d0999a6e387fe2d5d9d2c8c90",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 4980015,
            "upload_time": "2025-02-22T17:59:25",
            "upload_time_iso_8601": "2025-02-22T17:59:25.203858Z",
            "url": "https://files.pythonhosted.org/packages/d3/69/3d80d7286b116734fa8c256b711a0a9554d31df82f7f33cd52e7772ba77b/psqlpy-0.9.3-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6c09b9c0f007c6686193a8f6362980c20c1b33e35cf7bac061071a2a84370e7c",
                "md5": "7901b9a8ee66b5ba43f51aa394256889",
                "sha256": "fa1cbd09536576b22e7aa5e312cf802d4e7da2438c48064bf6886028e8977bec"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "7901b9a8ee66b5ba43f51aa394256889",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3311353,
            "upload_time": "2025-02-22T17:59:26",
            "upload_time_iso_8601": "2025-02-22T17:59:26.953286Z",
            "url": "https://files.pythonhosted.org/packages/6c/09/b9c0f007c6686193a8f6362980c20c1b33e35cf7bac061071a2a84370e7c/psqlpy-0.9.3-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2a78181d4f7fbb9f77dce11513b50406ae65484fb5e933143a8c038d73f0a549",
                "md5": "68ffd94bf7a995546f732a438fd1710c",
                "sha256": "ca15a64cbd4de84c7b9a34f388c70dded46316fac8af851c2f1ba51a755f378f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "68ffd94bf7a995546f732a438fd1710c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3722931,
            "upload_time": "2025-02-22T17:59:28",
            "upload_time_iso_8601": "2025-02-22T17:59:28.527588Z",
            "url": "https://files.pythonhosted.org/packages/2a/78/181d4f7fbb9f77dce11513b50406ae65484fb5e933143a8c038d73f0a549/psqlpy-0.9.3-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2bb0e5e9c3006523bf9a32d1b3506bb2dfc109101d1d8e9d28badba64af9ff38",
                "md5": "f48427ac88bed1928846c0d783a34140",
                "sha256": "8c4a6035ebfba0744b15a5c9a3668b2166393619bfb882a189468966ec45f7f0"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f48427ac88bed1928846c0d783a34140",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4236200,
            "upload_time": "2025-02-22T17:59:30",
            "upload_time_iso_8601": "2025-02-22T17:59:30.257185Z",
            "url": "https://files.pythonhosted.org/packages/2b/b0/e5e9c3006523bf9a32d1b3506bb2dfc109101d1d8e9d28badba64af9ff38/psqlpy-0.9.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9723af1bbbe53c04c029a45dd4c65bb19434c152f4c314d2362f5913ecf09c4d",
                "md5": "4ce4af0483da046f94b3db2bf0719552",
                "sha256": "681dee1d030873f08e55b154c8907a2062f0f6e4b10646411f5ce94028eb0642"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4ce4af0483da046f94b3db2bf0719552",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4474528,
            "upload_time": "2025-02-22T17:59:31",
            "upload_time_iso_8601": "2025-02-22T17:59:31.858712Z",
            "url": "https://files.pythonhosted.org/packages/97/23/af1bbbe53c04c029a45dd4c65bb19434c152f4c314d2362f5913ecf09c4d/psqlpy-0.9.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a32a60cad4acd6be95d0df233f13ac810fb357347f2d224eb2d70471df6c7353",
                "md5": "7fffbadb7136ec5b98120a8d8f27f7bb",
                "sha256": "e26ed13c864b21542eab15f1dfccf02e40fae046076d9c48b3ff062f8406053b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7fffbadb7136ec5b98120a8d8f27f7bb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4937463,
            "upload_time": "2025-02-22T17:59:34",
            "upload_time_iso_8601": "2025-02-22T17:59:34.338437Z",
            "url": "https://files.pythonhosted.org/packages/a3/2a/60cad4acd6be95d0df233f13ac810fb357347f2d224eb2d70471df6c7353/psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fa45ba6e10effa92090ed508988dad48d776f466aa2cbc94c7a16b5f14d75e1e",
                "md5": "6842a53bb371be78b1f14378fdadd696",
                "sha256": "1baa0200bcdacc9f61efbd273074395bfc7f32b7f7a30fcebb260ae175545914"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "6842a53bb371be78b1f14378fdadd696",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4210011,
            "upload_time": "2025-02-22T17:59:36",
            "upload_time_iso_8601": "2025-02-22T17:59:36.162139Z",
            "url": "https://files.pythonhosted.org/packages/fa/45/ba6e10effa92090ed508988dad48d776f466aa2cbc94c7a16b5f14d75e1e/psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bcfecd176b3a342b45d2f10ad24b109db7a069b437f411302b27eaea77cf0b28",
                "md5": "6410c8d978ab573d29bf9c09089bee12",
                "sha256": "925677b1c2ea70addbcb28b86ddc826b77a8107ec489e2d191fb74074ea423b2"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6410c8d978ab573d29bf9c09089bee12",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4806658,
            "upload_time": "2025-02-22T17:59:37",
            "upload_time_iso_8601": "2025-02-22T17:59:37.796893Z",
            "url": "https://files.pythonhosted.org/packages/bc/fe/cd176b3a342b45d2f10ad24b109db7a069b437f411302b27eaea77cf0b28/psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "598f1898a03913f9b697d1b8ae02b3d435a5f05f60e81be5a91934e51044e310",
                "md5": "5d9b7589e83af129564a44198e9828a5",
                "sha256": "d2c01d44e04f2e9fc7de1c3a8692f38fa22d0a354ce51888b91d8653cae4e0a3"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "5d9b7589e83af129564a44198e9828a5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4656552,
            "upload_time": "2025-02-22T17:59:39",
            "upload_time_iso_8601": "2025-02-22T17:59:39.666028Z",
            "url": "https://files.pythonhosted.org/packages/59/8f/1898a03913f9b697d1b8ae02b3d435a5f05f60e81be5a91934e51044e310/psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "604db67e4b9ffd963850107befa435e8b38b8e7d4f393ee15964c73706c67b13",
                "md5": "7acec7b5fa3172ab1159f20e9ec4f076",
                "sha256": "b89fb5906bffa757f76c1ef46ec48e3ec3488d484d95d9bc57503b30107e3041"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "7acec7b5fa3172ab1159f20e9ec4f076",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4788063,
            "upload_time": "2025-02-22T17:59:41",
            "upload_time_iso_8601": "2025-02-22T17:59:41.458730Z",
            "url": "https://files.pythonhosted.org/packages/60/4d/b67e4b9ffd963850107befa435e8b38b8e7d4f393ee15964c73706c67b13/psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2536ea1a770563db9105624d0ce73d1b16a80d82d9d278383f9b4633b97ea9ec",
                "md5": "189429c44643c1c8a56dbab19e3b6169",
                "sha256": "3c193eeca5dbceb770332197cc77a6e5e6ead210c34c4fff1d8cb8675e42e1f6"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "189429c44643c1c8a56dbab19e3b6169",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4827112,
            "upload_time": "2025-02-22T17:59:43",
            "upload_time_iso_8601": "2025-02-22T17:59:43.265106Z",
            "url": "https://files.pythonhosted.org/packages/25/36/ea1a770563db9105624d0ce73d1b16a80d82d9d278383f9b4633b97ea9ec/psqlpy-0.9.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94fe248438003e8fcd3ba261da0de09b19a679f34c1b0d633222eef4c826729b",
                "md5": "2dea1418bb4497f5eb64e0124bc93903",
                "sha256": "eab75d64e3b27a52bcbee690e8651a3b0dbaeef3028a19afad3a848ccb1b2951"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "2dea1418bb4497f5eb64e0124bc93903",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4860284,
            "upload_time": "2025-02-22T17:59:45",
            "upload_time_iso_8601": "2025-02-22T17:59:45.795855Z",
            "url": "https://files.pythonhosted.org/packages/94/fe/248438003e8fcd3ba261da0de09b19a679f34c1b0d633222eef4c826729b/psqlpy-0.9.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7f4370111a42df62bf3d1b4053192cd0a3e55f18c2297f8c2732b6baae4b9703",
                "md5": "d75e4c24c5357832793a340b15fad36d",
                "sha256": "a4f77af73b77bd73285efc0576a3ac087ee0aca39821371ea16d8e2bf9a16c90"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d75e4c24c5357832793a340b15fad36d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 4980559,
            "upload_time": "2025-02-22T17:59:48",
            "upload_time_iso_8601": "2025-02-22T17:59:48.600875Z",
            "url": "https://files.pythonhosted.org/packages/7f/43/70111a42df62bf3d1b4053192cd0a3e55f18c2297f8c2732b6baae4b9703/psqlpy-0.9.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c7957089fd34c80e948d7f544c73f2ff1a0c20938024f61323e31a71bd85fe21",
                "md5": "8c9e20a630da483a18e2699dae26a096",
                "sha256": "d7d4c6fcc343e0c0238e767caccb534d08b42d234d96e35aa5ce55d195f81281"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8c9e20a630da483a18e2699dae26a096",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4237481,
            "upload_time": "2025-02-22T17:59:51",
            "upload_time_iso_8601": "2025-02-22T17:59:51.062124Z",
            "url": "https://files.pythonhosted.org/packages/c7/95/7089fd34c80e948d7f544c73f2ff1a0c20938024f61323e31a71bd85fe21/psqlpy-0.9.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5ace5819a1f1e8f69639789b523d227ce07b989b1fc565fed2e3efb3efc67dc2",
                "md5": "629b708fe8294b11bc5d744c006faed8",
                "sha256": "7d0220fa8127db04433c2be2a55da1042e4581531a36692c45668c3484bda437"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "629b708fe8294b11bc5d744c006faed8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4474728,
            "upload_time": "2025-02-22T17:59:52",
            "upload_time_iso_8601": "2025-02-22T17:59:52.753917Z",
            "url": "https://files.pythonhosted.org/packages/5a/ce/5819a1f1e8f69639789b523d227ce07b989b1fc565fed2e3efb3efc67dc2/psqlpy-0.9.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2c55daeab10685010204bfb18246fbdab892eeb0a0db94de5bfb3cabd524344b",
                "md5": "39d44a541b094f3508449c823b3e080b",
                "sha256": "bbdd68fa7f61e00d7f14f010cd4a7f242935cb9df560181bb947fde75c8c1af5"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "39d44a541b094f3508449c823b3e080b",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4938916,
            "upload_time": "2025-02-22T17:59:54",
            "upload_time_iso_8601": "2025-02-22T17:59:54.796326Z",
            "url": "https://files.pythonhosted.org/packages/2c/55/daeab10685010204bfb18246fbdab892eeb0a0db94de5bfb3cabd524344b/psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1d352feb538ee0fa6d3e248727501b911dd99f20c58e65fd03c22d0d047bf7a5",
                "md5": "1e63c0d02098adc048331911348c31ab",
                "sha256": "1c1e3c82aeec4c58328c723ef0755c2f02e2d30874ce850e0d7505db8bd90397"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "1e63c0d02098adc048331911348c31ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4211573,
            "upload_time": "2025-02-22T17:59:56",
            "upload_time_iso_8601": "2025-02-22T17:59:56.568599Z",
            "url": "https://files.pythonhosted.org/packages/1d/35/2feb538ee0fa6d3e248727501b911dd99f20c58e65fd03c22d0d047bf7a5/psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd4e588b6c548363dab19bb58d808760f785058cef0af7649c16c80ddaad2eea",
                "md5": "98ca98736a4412800d2a7c3c8dca9f45",
                "sha256": "c936f35fa793b421b116aa37040291ff5a33fc54e7f636e7ae946ec987070a94"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "98ca98736a4412800d2a7c3c8dca9f45",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4809847,
            "upload_time": "2025-02-22T17:59:58",
            "upload_time_iso_8601": "2025-02-22T17:59:58.865049Z",
            "url": "https://files.pythonhosted.org/packages/dd/4e/588b6c548363dab19bb58d808760f785058cef0af7649c16c80ddaad2eea/psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d6cc2aef99aef78b0df24e43790786c0507bb63f4e6fa3e338fbdccb4e1b70e7",
                "md5": "9a54d391b0f3ec069ebe66672c10d80c",
                "sha256": "28ee25f791ccbad04269e22a21a79d52609d65298fe9b5300b8fe00fef42bab6"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9a54d391b0f3ec069ebe66672c10d80c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4658403,
            "upload_time": "2025-02-22T18:00:01",
            "upload_time_iso_8601": "2025-02-22T18:00:01.167093Z",
            "url": "https://files.pythonhosted.org/packages/d6/cc/2aef99aef78b0df24e43790786c0507bb63f4e6fa3e338fbdccb4e1b70e7/psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "67339d5094a57caddd9ffe2eb176e3e30a367312929323daa333bbc4dd11e3a4",
                "md5": "58ce79d78d787026d3b2f4c34ce76d60",
                "sha256": "b3a1d90bb1da48649852e636612bb12fa0e3ec07f230446836195054598f0de4"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "58ce79d78d787026d3b2f4c34ce76d60",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4789341,
            "upload_time": "2025-02-22T18:00:05",
            "upload_time_iso_8601": "2025-02-22T18:00:05.161067Z",
            "url": "https://files.pythonhosted.org/packages/67/33/9d5094a57caddd9ffe2eb176e3e30a367312929323daa333bbc4dd11e3a4/psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "525a3506b0b6731b7e3f6a818fb3dcef7b2f8685254790a7a4bb0a1c9c2ac3cc",
                "md5": "94a25674364e3ce984b03c8a19888fc6",
                "sha256": "a764bf80ce4e9d284bc11e255aff836894ee55e540c1be20120e67f855d8b07c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "94a25674364e3ce984b03c8a19888fc6",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4829845,
            "upload_time": "2025-02-22T18:00:06",
            "upload_time_iso_8601": "2025-02-22T18:00:06.958524Z",
            "url": "https://files.pythonhosted.org/packages/52/5a/3506b0b6731b7e3f6a818fb3dcef7b2f8685254790a7a4bb0a1c9c2ac3cc/psqlpy-0.9.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6bfdcd5e2929cfe3e357694118638fa227cd9dc6b4717b39590e731d0e3bd2ee",
                "md5": "216c950b1419b3048e9e738e9d443ca2",
                "sha256": "7939bfa80b649e650b9b4efe9064936837b14082851f1ad95c24548a105277cd"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "216c950b1419b3048e9e738e9d443ca2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4862164,
            "upload_time": "2025-02-22T18:00:08",
            "upload_time_iso_8601": "2025-02-22T18:00:08.833549Z",
            "url": "https://files.pythonhosted.org/packages/6b/fd/cd5e2929cfe3e357694118638fa227cd9dc6b4717b39590e731d0e3bd2ee/psqlpy-0.9.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b2afe4ca9ccaed96d27c1c753b6d4f16264f0f7a2c752249ea25074f636a6734",
                "md5": "35018bb1f5bc1ec762d10a83e6e4f6de",
                "sha256": "23496ed36433c88308f7e85f36091b203bb6c8c655ded639ce1626a1c8319afe"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35018bb1f5bc1ec762d10a83e6e4f6de",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 4981643,
            "upload_time": "2025-02-22T18:00:10",
            "upload_time_iso_8601": "2025-02-22T18:00:10.595851Z",
            "url": "https://files.pythonhosted.org/packages/b2/af/e4ca9ccaed96d27c1c753b6d4f16264f0f7a2c752249ea25074f636a6734/psqlpy-0.9.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df39bfa6bec547d9b197b72e547aee1440c300911895798fce00b0439ac8978b",
                "md5": "6307bfefc9c9213b7d68c7f51bf34722",
                "sha256": "f369528a4a1f5c8dea6efe0d469a07a735ab4d07e680faff4508699b183bcc37"
            },
            "downloads": -1,
            "filename": "psqlpy-0.9.3.tar.gz",
            "has_sig": false,
            "md5_digest": "6307bfefc9c9213b7d68c7f51bf34722",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 269627,
            "upload_time": "2025-02-22T18:00:12",
            "upload_time_iso_8601": "2025-02-22T18:00:12.113770Z",
            "url": "https://files.pythonhosted.org/packages/df/39/bfa6bec547d9b197b72e547aee1440c300911895798fce00b0439ac8978b/psqlpy-0.9.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-22 18:00:12",
    "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.16484s