psqlpy


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

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

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

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

## 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 PSQLPool 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 PSQLPool, QueryResult


db_pool = PSQLPool(
    username="postgres",
    password="pg_password",
    host="localhost",
    port=5432,
    db_name="postgres",
    max_db_pool_size=2,
)

async def main() -> None:
    res: QueryResult = await db_pool.execute(
        "SELECT * FROM users",
    )

    print(res.result())
    # You don't need to close Database Pool by yourself,
    # rust does it instead.

```

## Benchmarks

We have made some benchmark to compare `PSQLPy`, `AsyncPG`, `Psycopg3`.
Main idea is do not compare clear drivers because there are a few situations in which you need to use only driver without any other dependencies.

**So infrastructure consists of:**

1. AioHTTP
2. PostgreSQL driver (`PSQLPy`, `AsyncPG`, `Psycopg3`)
3. PostgreSQL v15. Server is located in other part of the world, because we want to simulate network problems.
4. Grafana (dashboards)
5. InfluxDB
6. JMeter (for load testing)

The results are very promising! `PSQLPy` is faster than `AsyncPG` at best by 2 times, at worst by 45%. `PsycoPG` is 3.5 times slower than `PSQLPy` in the worst case, 60% in the best case.


            

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/53/3b/ba1d3a736167164620250f1b1b23153e31f8367b858f84995377c88212c5/psqlpy-0.5.4.tar.gz",
    "platform": null,
    "description": "[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/psqlpy?style=for-the-badge)](https://pypi.org/project/psqlpy/)\n[![PyPI](https://img.shields.io/pypi/v/psqlpy?style=for-the-badge)](https://pypi.org/project/psqlpy/)\n[![PyPI - Downloads](https://img.shields.io/pypi/dm/psqlpy?style=for-the-badge)](https://pypistats.org/packages/psqlpy)\n\n# PSQLPy - Async PostgreSQL driver for Python written in Rust.\n\nDriver for PostgreSQL written fully in Rust and exposed to Python.\nMain goals of the library is speed and type safety.\n\n## Documentation\nYou can find full documentation here - [PSQLPy documentation](https://qaspen-python.github.io/psqlpy-docs/)\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 PSQLPool 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 PSQLPool, QueryResult\n\n\ndb_pool = PSQLPool(\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\nasync def main() -> None:\n    res: QueryResult = await db_pool.execute(\n        \"SELECT * FROM users\",\n    )\n\n    print(res.result())\n    # You don't need to close Database Pool by yourself,\n    # rust does it instead.\n\n```\n\n## Benchmarks\n\nWe have made some benchmark to compare `PSQLPy`, `AsyncPG`, `Psycopg3`.\nMain idea is do not compare clear drivers because there are a few situations in which you need to use only driver without any other dependencies.\n\n**So infrastructure consists of:**\n\n1. AioHTTP\n2. PostgreSQL driver (`PSQLPy`, `AsyncPG`, `Psycopg3`)\n3. PostgreSQL v15. Server is located in other part of the world, because we want to simulate network problems.\n4. Grafana (dashboards)\n5. InfluxDB\n6. JMeter (for load testing)\n\nThe results are very promising! `PSQLPy` is faster than `AsyncPG` at best by 2 times, at worst by 45%. `PsycoPG` is 3.5 times slower than `PSQLPy` in the worst case, 60% in the best case.\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Async PostgreSQL driver for Python written in Rust",
    "version": "0.5.4",
    "project_urls": {
        "documentation": "https://qaspen-python.github.io/psqlpy-docs/",
        "homepage": "https://github.com/qaspen-python/psqlpy",
        "repository": "https://github.com/qaspen-python/psqlpy"
    },
    "split_keywords": [
        "postgresql",
        " psql",
        " async-driver",
        " psql-driver",
        " postgresql-driver",
        " python-driver"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79c90cab119f3743dd3382a1d59e1687605f65758b870a10283327ef52db6f5e",
                "md5": "2a324121e42a4a030968cdc61ab6743c",
                "sha256": "56f4eea7ee4f92162326d11c6e3ce5b4e8f37faa18e8b4408210745bcc4c3240"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2a324121e42a4a030968cdc61ab6743c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1254995,
            "upload_time": "2024-04-26T17:31:06",
            "upload_time_iso_8601": "2024-04-26T17:31:06.167832Z",
            "url": "https://files.pythonhosted.org/packages/79/c9/0cab119f3743dd3382a1d59e1687605f65758b870a10283327ef52db6f5e/psqlpy-0.5.4-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9e665b3885ee3eb3529bd6872127b84afa0e4ace83b3ba3c3d20ce40b6eb88f0",
                "md5": "f2f50999a6dc6eefc4bf23be3816a517",
                "sha256": "60c7c3f7f254ad3cf88a57635c62e1fd075eb361823fd8b1c3cbff9b6b5e360b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f2f50999a6dc6eefc4bf23be3816a517",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1216620,
            "upload_time": "2024-04-26T17:31:09",
            "upload_time_iso_8601": "2024-04-26T17:31:09.626231Z",
            "url": "https://files.pythonhosted.org/packages/9e/66/5b3885ee3eb3529bd6872127b84afa0e4ace83b3ba3c3d20ce40b6eb88f0/psqlpy-0.5.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "53ea85852a8aec9e81a99589e67fba2715342312650c2a87137bdd67729e09ef",
                "md5": "3df096e865c9b6a005e08acf5dd10df6",
                "sha256": "d086e6d25ef7e542d15c2cb5229a061223b434cf672ab470bc191f6afd4de219"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "3df096e865c9b6a005e08acf5dd10df6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2242820,
            "upload_time": "2024-04-26T17:31:12",
            "upload_time_iso_8601": "2024-04-26T17:31:12.262932Z",
            "url": "https://files.pythonhosted.org/packages/53/ea/85852a8aec9e81a99589e67fba2715342312650c2a87137bdd67729e09ef/psqlpy-0.5.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9fec7ce4161c80912fc3dfd0c4c0feea016235be25dc59379b3e7fa58568ab45",
                "md5": "0a2f440f89c80f86578e6bc9348042cd",
                "sha256": "9915c9162fe69ee54aaf491ee79b029cee9ec4d8048f6585b2bc985e5fd362dd"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0a2f440f89c80f86578e6bc9348042cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2143320,
            "upload_time": "2024-04-26T17:31:14",
            "upload_time_iso_8601": "2024-04-26T17:31:14.627565Z",
            "url": "https://files.pythonhosted.org/packages/9f/ec/7ce4161c80912fc3dfd0c4c0feea016235be25dc59379b3e7fa58568ab45/psqlpy-0.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "14596a5514e85eb278ee62b0327b117116e7c755fc115150dc8bfc9662bc7de1",
                "md5": "5ca93af13ec7d4b6e2dd1fdc6a829168",
                "sha256": "4f0bf756adafc9ae340e189e5cc043303f71f755a0dc6b2a0555bd6955eec40c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5ca93af13ec7d4b6e2dd1fdc6a829168",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2138930,
            "upload_time": "2024-04-26T17:31:16",
            "upload_time_iso_8601": "2024-04-26T17:31:16.743869Z",
            "url": "https://files.pythonhosted.org/packages/14/59/6a5514e85eb278ee62b0327b117116e7c755fc115150dc8bfc9662bc7de1/psqlpy-0.5.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "74022b86506ba9ddfa3851263e289977c8185d0ca82df635e2b393c68db1d060",
                "md5": "bb7f201cbb7a23b4baf41788913b4663",
                "sha256": "ef6bede8838c2e5f398762dc857eab0ca61e8f0cfce6a2b065c312992cf2343b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "bb7f201cbb7a23b4baf41788913b4663",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2345614,
            "upload_time": "2024-04-26T17:31:19",
            "upload_time_iso_8601": "2024-04-26T17:31:19.535469Z",
            "url": "https://files.pythonhosted.org/packages/74/02/2b86506ba9ddfa3851263e289977c8185d0ca82df635e2b393c68db1d060/psqlpy-0.5.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1266dca63ce327fb9574cafe18cbdca9e5521aaf2fe5b592dec95c22723a3677",
                "md5": "ef40411a5b4c78a79acd62af44ce6f57",
                "sha256": "34688b6d656dbc9b4b6321664b76d2a45d16fa3c503bb47f56f21b0990fd1cd8"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "ef40411a5b4c78a79acd62af44ce6f57",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2426125,
            "upload_time": "2024-04-26T17:31:22",
            "upload_time_iso_8601": "2024-04-26T17:31:22.532099Z",
            "url": "https://files.pythonhosted.org/packages/12/66/dca63ce327fb9574cafe18cbdca9e5521aaf2fe5b592dec95c22723a3677/psqlpy-0.5.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d7180d0ad6542342b68be710e047b6847bb02a2c87adce7a6bb86bad60a872a5",
                "md5": "14d65d533fafa8f9eef671e9e03caa3e",
                "sha256": "0efd10108028973da3320ed4190bbb986ba2cb5409605ae0f2fa102d0a86597d"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "14d65d533fafa8f9eef671e9e03caa3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2143759,
            "upload_time": "2024-04-26T17:31:25",
            "upload_time_iso_8601": "2024-04-26T17:31:25.501730Z",
            "url": "https://files.pythonhosted.org/packages/d7/18/0d0ad6542342b68be710e047b6847bb02a2c87adce7a6bb86bad60a872a5/psqlpy-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6550f90865067bac070f622bfef0ac92458fbf7b11fea37f345dc61f8666d50e",
                "md5": "329043f7e2020f5b353eb1250e526bcb",
                "sha256": "b9fde6efdf012ca2d3a5f9108423e84a49443f7631c0a353016cc190c8527200"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "329043f7e2020f5b353eb1250e526bcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 995333,
            "upload_time": "2024-04-26T17:31:27",
            "upload_time_iso_8601": "2024-04-26T17:31:27.536350Z",
            "url": "https://files.pythonhosted.org/packages/65/50/f90865067bac070f622bfef0ac92458fbf7b11fea37f345dc61f8666d50e/psqlpy-0.5.4-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "317bfec6196b7af0454bd2f1485802af878dc17aa8a93bddd77085117f45d080",
                "md5": "100a71c364fa5564753c70071ff821c9",
                "sha256": "1719c5b6d71b2f3c9bca805ede121ac51455db2e7867516cef92593999049a3d"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "100a71c364fa5564753c70071ff821c9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1082427,
            "upload_time": "2024-04-26T17:31:30",
            "upload_time_iso_8601": "2024-04-26T17:31:30.077684Z",
            "url": "https://files.pythonhosted.org/packages/31/7b/fec6196b7af0454bd2f1485802af878dc17aa8a93bddd77085117f45d080/psqlpy-0.5.4-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f203eb9e40e4d1c5b7f196ec225b5f32c18ff146b5c9d2ee4700fbd95ba020bc",
                "md5": "22ae2e0bb8cec93f221da593c7d68302",
                "sha256": "ff6ddef1b0d91a63384dfd8d385f902bd3e1c7fb19ae1ddc8b356d526ada8254"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22ae2e0bb8cec93f221da593c7d68302",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1255380,
            "upload_time": "2024-04-26T17:31:33",
            "upload_time_iso_8601": "2024-04-26T17:31:33.277270Z",
            "url": "https://files.pythonhosted.org/packages/f2/03/eb9e40e4d1c5b7f196ec225b5f32c18ff146b5c9d2ee4700fbd95ba020bc/psqlpy-0.5.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5c60a824959ca768c94f80ee3c86f6e2b265a12270ad28bd1f30149a7adf1081",
                "md5": "4753a843c681ebea774d37b143d6f4b6",
                "sha256": "709217a782d8408b3d5da3ff39b9050592ddc58ad4d1db24af51bb2b649fbc37"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "4753a843c681ebea774d37b143d6f4b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1216451,
            "upload_time": "2024-04-26T17:31:36",
            "upload_time_iso_8601": "2024-04-26T17:31:36.253886Z",
            "url": "https://files.pythonhosted.org/packages/5c/60/a824959ca768c94f80ee3c86f6e2b265a12270ad28bd1f30149a7adf1081/psqlpy-0.5.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "152c8db19847cb13fbb6cee4b9a9d3cc6cf1653b1196f08920e9a061c094663f",
                "md5": "d9f92e791cb7741369e972b1d0256366",
                "sha256": "f9df80e833cc021782eb7f4cee9333dd274d29ec33e289f4d1f95a9c57177aae"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "d9f92e791cb7741369e972b1d0256366",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2243062,
            "upload_time": "2024-04-26T17:31:38",
            "upload_time_iso_8601": "2024-04-26T17:31:38.258727Z",
            "url": "https://files.pythonhosted.org/packages/15/2c/8db19847cb13fbb6cee4b9a9d3cc6cf1653b1196f08920e9a061c094663f/psqlpy-0.5.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c9ec7d8bceb00015dd173575cfb9b0c0893ebc41899658d380b1dac9b549317",
                "md5": "b84a1159e15fdb108dddd531866bf318",
                "sha256": "f253f95f1059215bda8e9e56bc38534adcce350039202c7db15c437f4c9c5618"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b84a1159e15fdb108dddd531866bf318",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2137944,
            "upload_time": "2024-04-26T17:31:41",
            "upload_time_iso_8601": "2024-04-26T17:31:41.226603Z",
            "url": "https://files.pythonhosted.org/packages/7c/9e/c7d8bceb00015dd173575cfb9b0c0893ebc41899658d380b1dac9b549317/psqlpy-0.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e26fb785ad67ed771b6e417f25066d50539fc73b4d384b1b34a1d332f39f2cae",
                "md5": "7ebc6361b3a6b763b60f5ddcbf96571e",
                "sha256": "f523a6d8e1a2cc9ebb573998d65b2267faac0afb97be0083184897effb0f800e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "7ebc6361b3a6b763b60f5ddcbf96571e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2138831,
            "upload_time": "2024-04-26T17:31:43",
            "upload_time_iso_8601": "2024-04-26T17:31:43.298411Z",
            "url": "https://files.pythonhosted.org/packages/e2/6f/b785ad67ed771b6e417f25066d50539fc73b4d384b1b34a1d332f39f2cae/psqlpy-0.5.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5bca68d5c5cdc40b91359d4b57f7bf3483ce36a6316d12a6fd88034b86391ffe",
                "md5": "da57e3086a7ef6f52608f28a7f97112c",
                "sha256": "fbe273475bea7c37d47b1627332071c40892e2b4d6b833d6e49e21ecde8d02f7"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "da57e3086a7ef6f52608f28a7f97112c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2345515,
            "upload_time": "2024-04-26T17:31:45",
            "upload_time_iso_8601": "2024-04-26T17:31:45.721769Z",
            "url": "https://files.pythonhosted.org/packages/5b/ca/68d5c5cdc40b91359d4b57f7bf3483ce36a6316d12a6fd88034b86391ffe/psqlpy-0.5.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d72872c70844e691e25fbfdc096dc7895fa91bc39e009432634a9f808e523460",
                "md5": "21650a5d8cca1365d89522b25d03f219",
                "sha256": "cf036f3da1d5a54db95041647886d9b61cc471740ad87a9047dfbd92797c33fb"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "21650a5d8cca1365d89522b25d03f219",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2426050,
            "upload_time": "2024-04-26T17:31:48",
            "upload_time_iso_8601": "2024-04-26T17:31:48.449860Z",
            "url": "https://files.pythonhosted.org/packages/d7/28/72c70844e691e25fbfdc096dc7895fa91bc39e009432634a9f808e523460/psqlpy-0.5.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a98dcf933a5ac401f5fa712299d418adaf9332d3fca5aa4a9eb8b11a24387c2",
                "md5": "3f3d6fb677af774f97a9877b4b4acc92",
                "sha256": "68bc569cfe13b3e8b90c55d4876f0d2251c3625cadc81a8991dc6f1b7efa24f4"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3f3d6fb677af774f97a9877b4b4acc92",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2142515,
            "upload_time": "2024-04-26T17:31:51",
            "upload_time_iso_8601": "2024-04-26T17:31:51.708256Z",
            "url": "https://files.pythonhosted.org/packages/6a/98/dcf933a5ac401f5fa712299d418adaf9332d3fca5aa4a9eb8b11a24387c2/psqlpy-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b10d09d1c987dd6e826678c7c6a6ec673d0b49f3b7c9906df850648e10b1a59d",
                "md5": "a13a75658f7e7e99c41316f20f72a393",
                "sha256": "930f27b8ce241e1e26a198254f3b9abd26b6137ad3e691e1a92d16fccaf4e16b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "a13a75658f7e7e99c41316f20f72a393",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 997038,
            "upload_time": "2024-04-26T17:31:53",
            "upload_time_iso_8601": "2024-04-26T17:31:53.669411Z",
            "url": "https://files.pythonhosted.org/packages/b1/0d/09d1c987dd6e826678c7c6a6ec673d0b49f3b7c9906df850648e10b1a59d/psqlpy-0.5.4-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7053faf5336941754b0b58440f8af779af68d53019a8b95334fc328c4a306360",
                "md5": "709b96a7c812c6e366df45072fd9c629",
                "sha256": "f18e7f29a15bd7c5f5c8b8bbc50db3fe65476e9c5233a184572bbbae46797828"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "709b96a7c812c6e366df45072fd9c629",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1082289,
            "upload_time": "2024-04-26T17:31:55",
            "upload_time_iso_8601": "2024-04-26T17:31:55.812492Z",
            "url": "https://files.pythonhosted.org/packages/70/53/faf5336941754b0b58440f8af779af68d53019a8b95334fc328c4a306360/psqlpy-0.5.4-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "71c3056c7e85da27365c67d53a9738a7f729ec29f54ad09e45035054c0ac5948",
                "md5": "53da83ca3d6ee3b94ec355d2a81bdf45",
                "sha256": "085bcdeabb45fd746ed8243c417759e56a8ba3ebda51966861d0b8487c7473e3"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "53da83ca3d6ee3b94ec355d2a81bdf45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1254320,
            "upload_time": "2024-04-26T17:31:57",
            "upload_time_iso_8601": "2024-04-26T17:31:57.975483Z",
            "url": "https://files.pythonhosted.org/packages/71/c3/056c7e85da27365c67d53a9738a7f729ec29f54ad09e45035054c0ac5948/psqlpy-0.5.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "15279586e25e576fbd594167a26f525695ab91b90f32f1b329de5b1a6fd50b99",
                "md5": "2499341ed33acab5247d58e7f134ed3e",
                "sha256": "46fb45a91fa615930274a59986aedb0055e3c267ed9dfacf1bac1b9979c824eb"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2499341ed33acab5247d58e7f134ed3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1221284,
            "upload_time": "2024-04-26T17:32:00",
            "upload_time_iso_8601": "2024-04-26T17:32:00.816665Z",
            "url": "https://files.pythonhosted.org/packages/15/27/9586e25e576fbd594167a26f525695ab91b90f32f1b329de5b1a6fd50b99/psqlpy-0.5.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "79e107d3014794e1155a9805a68eecca48118b5bfcaef4d8762b4ffadf63eae5",
                "md5": "087973efd8d7bce2fad0ce7e7c23aa05",
                "sha256": "434d0a33129ef61d3da283658ba1a56c0b91686820efc191f65d4a2923659d60"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "087973efd8d7bce2fad0ce7e7c23aa05",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2245279,
            "upload_time": "2024-04-26T17:32:03",
            "upload_time_iso_8601": "2024-04-26T17:32:03.463044Z",
            "url": "https://files.pythonhosted.org/packages/79/e1/07d3014794e1155a9805a68eecca48118b5bfcaef4d8762b4ffadf63eae5/psqlpy-0.5.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "048ddf74dd7fe736b8977b7f0a2a15c3e475b37bc70060eb0b52252eaad8db87",
                "md5": "c9b9a3d2d283637a0aa267327ef40460",
                "sha256": "c2c8a35a6bf3571b5c10db64ad47441ea0f25035b6963756a8554f6d2c9c94af"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c9b9a3d2d283637a0aa267327ef40460",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2148000,
            "upload_time": "2024-04-26T17:32:06",
            "upload_time_iso_8601": "2024-04-26T17:32:06.329763Z",
            "url": "https://files.pythonhosted.org/packages/04/8d/df74dd7fe736b8977b7f0a2a15c3e475b37bc70060eb0b52252eaad8db87/psqlpy-0.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b4c5d0db4e1bf5e2052a4c2cb5f8cb4ff90c8af28f6febfdc9f64e3663c37396",
                "md5": "9366af37d6551d0d235a9d5de79c282a",
                "sha256": "76403c2acee1168f43850d6798cdeeab32ac11b3c5fe487d62fa84ee001bc4fe"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "9366af37d6551d0d235a9d5de79c282a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2134256,
            "upload_time": "2024-04-26T17:32:09",
            "upload_time_iso_8601": "2024-04-26T17:32:09.335650Z",
            "url": "https://files.pythonhosted.org/packages/b4/c5/d0db4e1bf5e2052a4c2cb5f8cb4ff90c8af28f6febfdc9f64e3663c37396/psqlpy-0.5.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a13969d0f8940e286af33476dabd30c9e46268c4ccafb35f11ec7fc7aadb1ec7",
                "md5": "adf2fa7d5f729bdd5ab22e258bc81d94",
                "sha256": "d8c3916652da98f8d81a58f322ee9623cee57e2dbf9cfebb773641dd756946dd"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "adf2fa7d5f729bdd5ab22e258bc81d94",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2352925,
            "upload_time": "2024-04-26T17:32:11",
            "upload_time_iso_8601": "2024-04-26T17:32:11.464907Z",
            "url": "https://files.pythonhosted.org/packages/a1/39/69d0f8940e286af33476dabd30c9e46268c4ccafb35f11ec7fc7aadb1ec7/psqlpy-0.5.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "32a7777240499eac414b00852a68fbb3a7107051783d5f37f9ee1fc28d44009a",
                "md5": "2193a11d5f9ab63423178d0b9c79cd97",
                "sha256": "75fedee9b4000d81299008f2d2edf73b93027a7f3451719b53e7b086f687b2bc"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2193a11d5f9ab63423178d0b9c79cd97",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2410859,
            "upload_time": "2024-04-26T17:32:13",
            "upload_time_iso_8601": "2024-04-26T17:32:13.610135Z",
            "url": "https://files.pythonhosted.org/packages/32/a7/777240499eac414b00852a68fbb3a7107051783d5f37f9ee1fc28d44009a/psqlpy-0.5.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0915faa67edc5e0ab888a1dda11a1255b230d024d911d4be858826fd14f7e50c",
                "md5": "6afdb30c07efa3eae49b710ec80396e1",
                "sha256": "de300e7963bed987447304ce3228160842cebb77c0a5c40bed2964519577f75a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6afdb30c07efa3eae49b710ec80396e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2148577,
            "upload_time": "2024-04-26T17:32:16",
            "upload_time_iso_8601": "2024-04-26T17:32:16.777992Z",
            "url": "https://files.pythonhosted.org/packages/09/15/faa67edc5e0ab888a1dda11a1255b230d024d911d4be858826fd14f7e50c/psqlpy-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2eef0f4f74d5eb9d2525eadf2ce61f47c540fd5eb0159f941360f5e27f7d6ced",
                "md5": "ebf89d049a2dc49e87ce201d317f9ba2",
                "sha256": "cd698adc6a86c74023a679b9faa36350a98ce2e36e1a9bd55283b62fb048db61"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ebf89d049a2dc49e87ce201d317f9ba2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 995631,
            "upload_time": "2024-04-26T17:32:18",
            "upload_time_iso_8601": "2024-04-26T17:32:18.738008Z",
            "url": "https://files.pythonhosted.org/packages/2e/ef/0f4f74d5eb9d2525eadf2ce61f47c540fd5eb0159f941360f5e27f7d6ced/psqlpy-0.5.4-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df9671c7ff82c252ef92eb91a2c95b2049b5a7e09619eb50924237ac1ef48edc",
                "md5": "4263ce9f71dba587aa94c227acc6ce78",
                "sha256": "2e8c36a39d5fc0fdad0c3349e41c5cd6cd1640b4f015954cb0f6fb6090eb861a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4263ce9f71dba587aa94c227acc6ce78",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1082816,
            "upload_time": "2024-04-26T17:32:21",
            "upload_time_iso_8601": "2024-04-26T17:32:21.047794Z",
            "url": "https://files.pythonhosted.org/packages/df/96/71c7ff82c252ef92eb91a2c95b2049b5a7e09619eb50924237ac1ef48edc/psqlpy-0.5.4-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "46ab6a022e616f7dda5fc8a79288354d71b7b1c36ce7a00ac417e0b4ce3c189c",
                "md5": "746a888e1d07fe20514edae0da74c1a2",
                "sha256": "67a53dca79577e1442f1df7bd6a3e336baf86371ceda93bb1a95dc28ee3f165f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "746a888e1d07fe20514edae0da74c1a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2242913,
            "upload_time": "2024-04-26T17:32:24",
            "upload_time_iso_8601": "2024-04-26T17:32:24.059337Z",
            "url": "https://files.pythonhosted.org/packages/46/ab/6a022e616f7dda5fc8a79288354d71b7b1c36ce7a00ac417e0b4ce3c189c/psqlpy-0.5.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "93ff8082406c5694edcb2a2b0278502ffdebff01009f4a963b9c74bc7c6a7f16",
                "md5": "98d37416d52fe117eb35e6196e2e58a5",
                "sha256": "49e698a974432c42ead5804b4c1dae4488e30f15a130aa2698c757b877ab8612"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "98d37416d52fe117eb35e6196e2e58a5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2142037,
            "upload_time": "2024-04-26T17:32:26",
            "upload_time_iso_8601": "2024-04-26T17:32:26.979448Z",
            "url": "https://files.pythonhosted.org/packages/93/ff/8082406c5694edcb2a2b0278502ffdebff01009f4a963b9c74bc7c6a7f16/psqlpy-0.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78fc1e6488059037d8ab51cfc9faf3730d6347c634a95d277e301c2aa29f48c6",
                "md5": "86442a2f558625f2bd5a43590056de60",
                "sha256": "808faa1a5de59d5773f70dc8df92f0c9063d7cf597715b0fe96546dd4a102cf7"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "86442a2f558625f2bd5a43590056de60",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2141025,
            "upload_time": "2024-04-26T17:32:29",
            "upload_time_iso_8601": "2024-04-26T17:32:29.619672Z",
            "url": "https://files.pythonhosted.org/packages/78/fc/1e6488059037d8ab51cfc9faf3730d6347c634a95d277e301c2aa29f48c6/psqlpy-0.5.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6cc7dce04e1f3db262ecb1aa8fe3226e9d19b6161c857c35b6dedd504bf09107",
                "md5": "dcbe48fe196c9fde6b52c7867203d78d",
                "sha256": "21883131b9f83feb0282acfc6743284bfb71eda69aa75ed21d80268c8deb0f18"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "dcbe48fe196c9fde6b52c7867203d78d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2345103,
            "upload_time": "2024-04-26T17:32:32",
            "upload_time_iso_8601": "2024-04-26T17:32:32.195470Z",
            "url": "https://files.pythonhosted.org/packages/6c/c7/dce04e1f3db262ecb1aa8fe3226e9d19b6161c857c35b6dedd504bf09107/psqlpy-0.5.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06da0bacc6883af301b9a62cd4bb066633f63f727d633ae2801102b860ee9c7e",
                "md5": "863c5b510d550faadcf5d6481745947b",
                "sha256": "728e6432e38ba11618faf4e035a4eef1154b94539f4fe8f0aa3d67f4733eabb3"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "863c5b510d550faadcf5d6481745947b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2429172,
            "upload_time": "2024-04-26T17:32:34",
            "upload_time_iso_8601": "2024-04-26T17:32:34.362308Z",
            "url": "https://files.pythonhosted.org/packages/06/da/0bacc6883af301b9a62cd4bb066633f63f727d633ae2801102b860ee9c7e/psqlpy-0.5.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "affe8a84d5cd1ca90ba168e7c789d3ac3097c32d2c5bd871e4d5964b0856d3d4",
                "md5": "2ff2604ab5ab4b0cb53d6aff830e3205",
                "sha256": "eb4db05f3f9090f3c58fbf3ae82adde3464a7192ac2221a7e1d8878e92879485"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ff2604ab5ab4b0cb53d6aff830e3205",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2143521,
            "upload_time": "2024-04-26T17:32:36",
            "upload_time_iso_8601": "2024-04-26T17:32:36.473754Z",
            "url": "https://files.pythonhosted.org/packages/af/fe/8a84d5cd1ca90ba168e7c789d3ac3097c32d2c5bd871e4d5964b0856d3d4/psqlpy-0.5.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ab2723973c765ab92c615343ef2a270605842bdb6a500e9e7c8fcb663b449a2b",
                "md5": "9e60c8e7657ff0742b7db73278e67886",
                "sha256": "61d02ea2a6e6fc6962c2bd79ce515d0aa4dad62dc54edb13e67f9c9dbc7f8b3b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "9e60c8e7657ff0742b7db73278e67886",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 995443,
            "upload_time": "2024-04-26T17:32:39",
            "upload_time_iso_8601": "2024-04-26T17:32:39.148333Z",
            "url": "https://files.pythonhosted.org/packages/ab/27/23973c765ab92c615343ef2a270605842bdb6a500e9e7c8fcb663b449a2b/psqlpy-0.5.4-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8a6ce798b4f4731218649e0a07d8946f946ed7e26cd9941ab54635fc53909700",
                "md5": "2f2a04d187241341c907981f0df70e28",
                "sha256": "27b6d9873f01d4210dab649f456f25d7fd62ca94d809cbc9f72c0ca7f2a90e3f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2f2a04d187241341c907981f0df70e28",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1083074,
            "upload_time": "2024-04-26T17:32:41",
            "upload_time_iso_8601": "2024-04-26T17:32:41.220711Z",
            "url": "https://files.pythonhosted.org/packages/8a/6c/e798b4f4731218649e0a07d8946f946ed7e26cd9941ab54635fc53909700/psqlpy-0.5.4-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ad693e8ba65a826764951d645a9b35f0b1779ebd29da11e26e3bdc48de74373e",
                "md5": "59b0f98c0cdd8c59937d4bf06c056ee8",
                "sha256": "b85f1d0b4755ac938d056777434695fc93a5d7f111d31dfddcc103ff1c4f8231"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "59b0f98c0cdd8c59937d4bf06c056ee8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2244687,
            "upload_time": "2024-04-26T17:32:43",
            "upload_time_iso_8601": "2024-04-26T17:32:43.714082Z",
            "url": "https://files.pythonhosted.org/packages/ad/69/3e8ba65a826764951d645a9b35f0b1779ebd29da11e26e3bdc48de74373e/psqlpy-0.5.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f3bd2a86554ccff56e08c5e77065f97fda0d81aea7570a599c7ce9d2d175abc3",
                "md5": "4059388c0cfdf1f5dbd53c05ffe716b0",
                "sha256": "dd8b072e02db01577bb04b4b863621accef7e6a4bb531480370f4196fceb9de1"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4059388c0cfdf1f5dbd53c05ffe716b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2142912,
            "upload_time": "2024-04-26T17:32:46",
            "upload_time_iso_8601": "2024-04-26T17:32:46.106237Z",
            "url": "https://files.pythonhosted.org/packages/f3/bd/2a86554ccff56e08c5e77065f97fda0d81aea7570a599c7ce9d2d175abc3/psqlpy-0.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "979f296375f5d54d9a7419ec5d3a0520addd7d1afa2bf6eeb32c3bbccaf53dc7",
                "md5": "f4f65a2ddac1806977e5aff92a405b37",
                "sha256": "37f57f14a74d2676de114571dc5034d146d00f7aeae446c2b09f584f485dd6a7"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "f4f65a2ddac1806977e5aff92a405b37",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2142136,
            "upload_time": "2024-04-26T17:32:48",
            "upload_time_iso_8601": "2024-04-26T17:32:48.424823Z",
            "url": "https://files.pythonhosted.org/packages/97/9f/296375f5d54d9a7419ec5d3a0520addd7d1afa2bf6eeb32c3bbccaf53dc7/psqlpy-0.5.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "57fe679df6b8b0fef02a199aef1a3b529b9100d3c42efa858cc6ee52dc39457d",
                "md5": "b5a16a86849b3bd08d660652131267e5",
                "sha256": "f3604db3955318aa59113c3019df620f4e04724280a85bbb55603e40706c753e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b5a16a86849b3bd08d660652131267e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2346540,
            "upload_time": "2024-04-26T17:32:50",
            "upload_time_iso_8601": "2024-04-26T17:32:50.948653Z",
            "url": "https://files.pythonhosted.org/packages/57/fe/679df6b8b0fef02a199aef1a3b529b9100d3c42efa858cc6ee52dc39457d/psqlpy-0.5.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "815cc576e924feb14cec24ab45343bb7f7edcde7bd5fce3adeac216686d97117",
                "md5": "de93a5a1f7d035101e3c0b5c421938eb",
                "sha256": "e672d9e5a34ca9889f904b1bbc1014c52d3dc1fc28f4679728b3cd235ef71721"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "de93a5a1f7d035101e3c0b5c421938eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2428982,
            "upload_time": "2024-04-26T17:32:53",
            "upload_time_iso_8601": "2024-04-26T17:32:53.872471Z",
            "url": "https://files.pythonhosted.org/packages/81/5c/c576e924feb14cec24ab45343bb7f7edcde7bd5fce3adeac216686d97117/psqlpy-0.5.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9013c3159f2897531c58ad7205035bd914124c30dadf46debfe0f08ebb44723f",
                "md5": "55c0adac3e903d67090bb557825ba117",
                "sha256": "71d29c4c878a1b6593d6211c4b2fb3a283f99606903aac195860d61ca7b8e3db"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55c0adac3e903d67090bb557825ba117",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2143231,
            "upload_time": "2024-04-26T17:32:56",
            "upload_time_iso_8601": "2024-04-26T17:32:56.021849Z",
            "url": "https://files.pythonhosted.org/packages/90/13/c3159f2897531c58ad7205035bd914124c30dadf46debfe0f08ebb44723f/psqlpy-0.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ba4bd00796431320b8ae15e63db4f8a9ddd7fdd01e6f698f9e4dbcd066d185e",
                "md5": "2c8fd00aa9765866e3d5cda02319820a",
                "sha256": "11ac40a1e736cb5a1ef91976ba3204bf4376506d0c964857398bc972011178ca"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "2c8fd00aa9765866e3d5cda02319820a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 997438,
            "upload_time": "2024-04-26T17:32:58",
            "upload_time_iso_8601": "2024-04-26T17:32:58.173061Z",
            "url": "https://files.pythonhosted.org/packages/9b/a4/bd00796431320b8ae15e63db4f8a9ddd7fdd01e6f698f9e4dbcd066d185e/psqlpy-0.5.4-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9ac13c513ea93953aef2c077babf81161792012d96cd4aa3316e955fead2c586",
                "md5": "f37f71a97567a4471abca7fdaea5b778",
                "sha256": "af3439151ab987ea919e2db45af9d46abfb774ab7a5a21575f5565662855dd77"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f37f71a97567a4471abca7fdaea5b778",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1083012,
            "upload_time": "2024-04-26T17:33:00",
            "upload_time_iso_8601": "2024-04-26T17:33:00.457906Z",
            "url": "https://files.pythonhosted.org/packages/9a/c1/3c513ea93953aef2c077babf81161792012d96cd4aa3316e955fead2c586/psqlpy-0.5.4-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4bc89bc900618c5ea9a98a7491dccab01451d3be702fc0fffde7fb8c7a2f14be",
                "md5": "2e376500a78759795790294faf7af36b",
                "sha256": "a19d2daafb1c94a035161d5cb4cd43c6ac69b8817eeb6ad1062e693248714ac2"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "2e376500a78759795790294faf7af36b",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2245811,
            "upload_time": "2024-04-26T17:33:02",
            "upload_time_iso_8601": "2024-04-26T17:33:02.930972Z",
            "url": "https://files.pythonhosted.org/packages/4b/c8/9bc900618c5ea9a98a7491dccab01451d3be702fc0fffde7fb8c7a2f14be/psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7158ef2b1e14e83ac506f82a4c6031621241f1b2cd858e11ef1d238850794dc1",
                "md5": "1ebcd5032d283a3cf608d20296001b98",
                "sha256": "ddc84722a9c6d9f8ad47c6496cc3211eb0a18b59adeca1a49c889c73be2ec0a5"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1ebcd5032d283a3cf608d20296001b98",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2142983,
            "upload_time": "2024-04-26T17:33:05",
            "upload_time_iso_8601": "2024-04-26T17:33:05.810100Z",
            "url": "https://files.pythonhosted.org/packages/71/58/ef2b1e14e83ac506f82a4c6031621241f1b2cd858e11ef1d238850794dc1/psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ffacf159f7b1ab92d26e869a4d98db53210892e0d12383fbba6017445fe33baa",
                "md5": "90f22c683420d1bcbbfed8b8f6ce7a5c",
                "sha256": "4fc16daf5aee71a272c6a124d3ceeabd983bc9287a7eebaafcd8a8d994dd16b2"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "90f22c683420d1bcbbfed8b8f6ce7a5c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2139758,
            "upload_time": "2024-04-26T17:33:08",
            "upload_time_iso_8601": "2024-04-26T17:33:08.193577Z",
            "url": "https://files.pythonhosted.org/packages/ff/ac/f159f7b1ab92d26e869a4d98db53210892e0d12383fbba6017445fe33baa/psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9849571a50ff74c253cbe743fedcf5bc26b428b0002c77cc3ad67788e1a13f75",
                "md5": "9c3123e71b82f2ab188b0c495736268f",
                "sha256": "2ac2e83888225979b22b0c29bba79bbb0c3b21e2823fd9b9a3c6ca23105727c4"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9c3123e71b82f2ab188b0c495736268f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2352007,
            "upload_time": "2024-04-26T17:33:10",
            "upload_time_iso_8601": "2024-04-26T17:33:10.621139Z",
            "url": "https://files.pythonhosted.org/packages/98/49/571a50ff74c253cbe743fedcf5bc26b428b0002c77cc3ad67788e1a13f75/psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a16c2d2a7b55f9bd22cb91e3522a27827300d6199a6f4769f6fd6e4c6f6fea28",
                "md5": "272bbc1be34b1352f4bd89cc79924749",
                "sha256": "7a7eaa342eabc22870128892e73cfaa2844ab061865b994efd2ad215491916bd"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "272bbc1be34b1352f4bd89cc79924749",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2431638,
            "upload_time": "2024-04-26T17:33:12",
            "upload_time_iso_8601": "2024-04-26T17:33:12.970797Z",
            "url": "https://files.pythonhosted.org/packages/a1/6c/2d2a7b55f9bd22cb91e3522a27827300d6199a6f4769f6fd6e4c6f6fea28/psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "76c59780f978a57b28ffc7f9f639315c9a1ba3f4f5283a15a7da353a035ec1ef",
                "md5": "57db5c01284f275f7a7d0751f4d0dfe3",
                "sha256": "535c98df730c340baf8087a76522e59e8b4f01644893d09a9ae5234863fa8fb0"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "57db5c01284f275f7a7d0751f4d0dfe3",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2138499,
            "upload_time": "2024-04-26T17:33:15",
            "upload_time_iso_8601": "2024-04-26T17:33:15.752979Z",
            "url": "https://files.pythonhosted.org/packages/76/c5/9780f978a57b28ffc7f9f639315c9a1ba3f4f5283a15a7da353a035ec1ef/psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fad15a92cba0e9ed009f71e44cccc4b0deaeef21a4f63843956efc3fc7939514",
                "md5": "b81cdf6ef2053bfe8c278bf09bfd234a",
                "sha256": "d3a96f0dbc2b1dc13e42b3ae627f3ac41709e922f59391d71ae655c385b40caa"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "b81cdf6ef2053bfe8c278bf09bfd234a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2245417,
            "upload_time": "2024-04-26T17:33:19",
            "upload_time_iso_8601": "2024-04-26T17:33:19.123997Z",
            "url": "https://files.pythonhosted.org/packages/fa/d1/5a92cba0e9ed009f71e44cccc4b0deaeef21a4f63843956efc3fc7939514/psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31e4a8b4b3e7ba1484d11ecbb9142d58867c1d12a679beeee11698d43c8f51f6",
                "md5": "99f1315ec02394d57deb8fd0dec25be9",
                "sha256": "103551a360edec923632dfdc960e914988e1508dbde52f92d204aa247f274efa"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "99f1315ec02394d57deb8fd0dec25be9",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2143997,
            "upload_time": "2024-04-26T17:33:21",
            "upload_time_iso_8601": "2024-04-26T17:33:21.941628Z",
            "url": "https://files.pythonhosted.org/packages/31/e4/a8b4b3e7ba1484d11ecbb9142d58867c1d12a679beeee11698d43c8f51f6/psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cbe05a0dc179c90b58cff7c338ab5177063960f028ec7cdcf09d6b2bc5c8726d",
                "md5": "3a1a1a717810ba4babe2446128387d02",
                "sha256": "6bcfa098c90e48aba1cb6dbdbfd7e0459d9830f101323765915220dbf5b164c7"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "3a1a1a717810ba4babe2446128387d02",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2141377,
            "upload_time": "2024-04-26T17:33:25",
            "upload_time_iso_8601": "2024-04-26T17:33:25.202723Z",
            "url": "https://files.pythonhosted.org/packages/cb/e0/5a0dc179c90b58cff7c338ab5177063960f028ec7cdcf09d6b2bc5c8726d/psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8bbbf55f5bbe469a519b7097058d631c3d268b8048dc445d344b4f17f173ff14",
                "md5": "0d635b8f3ac8ce6cbf61182c9a9c5ef3",
                "sha256": "7d58a391216c1c5fe696c1759dad04e9d797b656b0a0668beae7df7983fbeba2"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "0d635b8f3ac8ce6cbf61182c9a9c5ef3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2353629,
            "upload_time": "2024-04-26T17:33:27",
            "upload_time_iso_8601": "2024-04-26T17:33:27.421835Z",
            "url": "https://files.pythonhosted.org/packages/8b/bb/f55f5bbe469a519b7097058d631c3d268b8048dc445d344b4f17f173ff14/psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a39d7cdf74c92f6e985033f8a4d852493b80ca58406f539307f8a400f08a55f1",
                "md5": "b9dd481d2f731d4d148a721801ca5626",
                "sha256": "6f3c65e6073f04f22ed310d55e63d040359b0e297a4fc9dafe54461c2e5a5ee9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b9dd481d2f731d4d148a721801ca5626",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2432588,
            "upload_time": "2024-04-26T17:33:30",
            "upload_time_iso_8601": "2024-04-26T17:33:30.600902Z",
            "url": "https://files.pythonhosted.org/packages/a3/9d/7cdf74c92f6e985033f8a4d852493b80ca58406f539307f8a400f08a55f1/psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d49278d86ba42659e25f3c8750516ce0b38a2c48b24c359cdaa97d1583bedc91",
                "md5": "ac15a6a8927c6b109ffc5140b6fd7c5e",
                "sha256": "7b4a785f8952e34a2b64dc3d7c709f4f3b76bb7b8c2e1810b8be581821ae9861"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ac15a6a8927c6b109ffc5140b6fd7c5e",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2140287,
            "upload_time": "2024-04-26T17:33:33",
            "upload_time_iso_8601": "2024-04-26T17:33:33.196358Z",
            "url": "https://files.pythonhosted.org/packages/d4/92/78d86ba42659e25f3c8750516ce0b38a2c48b24c359cdaa97d1583bedc91/psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6dc8827c2852c24ed3f13589ab285c7c52d6fe722399521ce18b557d412ce5e4",
                "md5": "413b1c055855cfca47ef9f1c6e5770ac",
                "sha256": "23b7038a68954c87681738b1fd562989c50131fc9b860f536c4272755aa19f12"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "has_sig": false,
            "md5_digest": "413b1c055855cfca47ef9f1c6e5770ac",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2246037,
            "upload_time": "2024-04-26T17:33:35",
            "upload_time_iso_8601": "2024-04-26T17:33:35.386687Z",
            "url": "https://files.pythonhosted.org/packages/6d/c8/827c2852c24ed3f13589ab285c7c52d6fe722399521ce18b557d412ce5e4/psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "387af6758c0821306ad0945f77aabf4f1c743eb55b5b9ca8b8cf47fcafe63a5a",
                "md5": "b235c5179844ab1bd64b565b8a762ca8",
                "sha256": "b014babccda612eb7b1017dd9e252028f74e558c9d21dd695cc91238e30c4272"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b235c5179844ab1bd64b565b8a762ca8",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2144170,
            "upload_time": "2024-04-26T17:33:37",
            "upload_time_iso_8601": "2024-04-26T17:33:37.603316Z",
            "url": "https://files.pythonhosted.org/packages/38/7a/f6758c0821306ad0945f77aabf4f1c743eb55b5b9ca8b8cf47fcafe63a5a/psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6c2629b47c3340f2145683ed455f6bd99ef3d0d3b141527bdf0b15a6996ab09",
                "md5": "5bed0b747b2371b7002aa5a93e2f9677",
                "sha256": "4d46812cc6dcf17462780faca200c759052f5c66963ddf706aa78f36ddacaea9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "5bed0b747b2371b7002aa5a93e2f9677",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2140736,
            "upload_time": "2024-04-26T17:33:39",
            "upload_time_iso_8601": "2024-04-26T17:33:39.991651Z",
            "url": "https://files.pythonhosted.org/packages/c6/c2/629b47c3340f2145683ed455f6bd99ef3d0d3b141527bdf0b15a6996ab09/psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8de24fb8091d04cbc1b6a66501d136449c6f96f912e96d796ab1691e7316ca16",
                "md5": "785c9972a34769d776742dbf1027e809",
                "sha256": "a433455b4544f39fc4c26208b14bbe115b61db378ec66fbaa8db22b84c9242b4"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "785c9972a34769d776742dbf1027e809",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2352839,
            "upload_time": "2024-04-26T17:33:42",
            "upload_time_iso_8601": "2024-04-26T17:33:42.498575Z",
            "url": "https://files.pythonhosted.org/packages/8d/e2/4fb8091d04cbc1b6a66501d136449c6f96f912e96d796ab1691e7316ca16/psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60388f426e4f4711dcc2b1d12639244453e535b67137fa6d79c619ca9f93e13d",
                "md5": "140cce7d6f51a0a1e9e6a21907082aad",
                "sha256": "1268169bde4793aadf1f2e73911dd6c18bef33b60abc9dd0cda947a421043d6a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "140cce7d6f51a0a1e9e6a21907082aad",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2432046,
            "upload_time": "2024-04-26T17:33:44",
            "upload_time_iso_8601": "2024-04-26T17:33:44.638947Z",
            "url": "https://files.pythonhosted.org/packages/60/38/8f426e4f4711dcc2b1d12639244453e535b67137fa6d79c619ca9f93e13d/psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "60eb03654d02de17856de98eac61ce123c2ff243d3a765990bbb7f8dfddff301",
                "md5": "ee6d695d8db43d060c29bec187f421ea",
                "sha256": "96dce115b15e1a56d1d865339ef0466850b612b456270b3d124dc0d2fdf4c9fe"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee6d695d8db43d060c29bec187f421ea",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2140381,
            "upload_time": "2024-04-26T17:33:47",
            "upload_time_iso_8601": "2024-04-26T17:33:47.393311Z",
            "url": "https://files.pythonhosted.org/packages/60/eb/03654d02de17856de98eac61ce123c2ff243d3a765990bbb7f8dfddff301/psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "533bba1d3a736167164620250f1b1b23153e31f8367b858f84995377c88212c5",
                "md5": "129f2386622142d8724df4cf9c122053",
                "sha256": "c176f03f9ede1d4a055fe081d3a23bcec10f7e2fb2729d3f1f45e4c2bd17af1b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.5.4.tar.gz",
            "has_sig": false,
            "md5_digest": "129f2386622142d8724df4cf9c122053",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 114167,
            "upload_time": "2024-04-26T17:33:50",
            "upload_time_iso_8601": "2024-04-26T17:33:50.252405Z",
            "url": "https://files.pythonhosted.org/packages/53/3b/ba1d3a736167164620250f1b1b23153e31f8367b858f84995377c88212c5/psqlpy-0.5.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-26 17:33:50",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "qaspen-python",
    "github_project": "psqlpy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "psqlpy"
}
        
Elapsed time: 0.23506s