psqlpy


Namepsqlpy JSON
Version 0.6.4 PyPI version JSON
download
home_pageNone
SummaryAsync PostgreSQL driver for Python written in Rust
upload_time2024-06-11 22:39:57
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 ConnectionPool and start querying.
You don't need to startup connection pool, the connection pool will create connections as needed.

```python
from typing import Any

from psqlpy import ConnectionPool, QueryResult


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

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

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

```

## Benchmarks

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/cc/a4/20aa7be3599c214f09e46eb5de6c561870e0a0b48e17e6b6d972589d8750/psqlpy-0.6.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 ConnectionPool and start querying.\nYou don't need to startup connection pool, the connection pool will create connections as needed.\n\n```python\nfrom typing import Any\n\nfrom psqlpy import ConnectionPool, QueryResult\n\n\nasync def main() -> None:\n    db_pool = ConnectionPool(\n        username=\"postgres\",\n        password=\"pg_password\",\n        host=\"localhost\",\n        port=5432,\n        db_name=\"postgres\",\n        max_db_pool_size=2,\n    )\n\n    res: QueryResult = await db_pool.execute(\n        \"SELECT * FROM users\",\n    )\n\n    print(res.result())\n    db_pool.close()\n\n```\n\n## Benchmarks\n\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.6.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": "4705b8baba9ec2afb0067bdc3a1cfabbcea9a0cc1163af3b5119e3b6f8977f13",
                "md5": "62ff47f4a468aff0e0bd0277b2391ac6",
                "sha256": "219fd1e2bdc8539499b69e36d6aeeddabaafbe6c64868ee973e9365ccc58207c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-cp310-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "62ff47f4a468aff0e0bd0277b2391ac6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1333114,
            "upload_time": "2024-06-11T22:37:28",
            "upload_time_iso_8601": "2024-06-11T22:37:28.970195Z",
            "url": "https://files.pythonhosted.org/packages/47/05/b8baba9ec2afb0067bdc3a1cfabbcea9a0cc1163af3b5119e3b6f8977f13/psqlpy-0.6.4-cp310-cp310-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b269d9170e9338833d4b1473e5e4af119c48bb4045850c822adf6678441d0705",
                "md5": "a2a0401b5606e9eb50fde53bd8f7ec55",
                "sha256": "e59c744532a8be453982252bd5df08cff3a5812cf08527f708f741986ca52b81"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a2a0401b5606e9eb50fde53bd8f7ec55",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1284185,
            "upload_time": "2024-06-11T22:37:31",
            "upload_time_iso_8601": "2024-06-11T22:37:31.541569Z",
            "url": "https://files.pythonhosted.org/packages/b2/69/d9170e9338833d4b1473e5e4af119c48bb4045850c822adf6678441d0705/psqlpy-0.6.4-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "eac176ca71a43e7d7481062141eb2e3c3e02756b505b37de014a6f73d0ad8bdf",
                "md5": "1edaba3376c69b9d9daa420f882d865f",
                "sha256": "cd985cd4669ca509802e7fb6751ea4067296671f8e402bfe2de6277292620826"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1edaba3376c69b9d9daa420f882d865f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2216790,
            "upload_time": "2024-06-11T22:37:33",
            "upload_time_iso_8601": "2024-06-11T22:37:33.289109Z",
            "url": "https://files.pythonhosted.org/packages/ea/c1/76ca71a43e7d7481062141eb2e3c3e02756b505b37de014a6f73d0ad8bdf/psqlpy-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8c8b20d79468b62a2fc5c8b876fd5fdd5b8db3bfd962b0672dae6dd76d3cab74",
                "md5": "30ae0db6923467613ed99e6ff0811b7d",
                "sha256": "7069c30b98e24845756bf3f9a6de6e1d9e0722d2c89e9b970c3000cf1440e437"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "30ae0db6923467613ed99e6ff0811b7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2214776,
            "upload_time": "2024-06-11T22:37:36",
            "upload_time_iso_8601": "2024-06-11T22:37:36.072655Z",
            "url": "https://files.pythonhosted.org/packages/8c/8b/20d79468b62a2fc5c8b876fd5fdd5b8db3bfd962b0672dae6dd76d3cab74/psqlpy-0.6.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "df364756493e13f1d9518797c8ff1c1f861134ef7f1a13d65f6597b2b1ff0f48",
                "md5": "249abdc506e2f3da4698eb6410d9feba",
                "sha256": "3060dd48102de5228b3c613decd42f761a264fa50b22567a13b7bc782a006a2f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "249abdc506e2f3da4698eb6410d9feba",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2320955,
            "upload_time": "2024-06-11T22:37:37",
            "upload_time_iso_8601": "2024-06-11T22:37:37.902948Z",
            "url": "https://files.pythonhosted.org/packages/df/36/4756493e13f1d9518797c8ff1c1f861134ef7f1a13d65f6597b2b1ff0f48/psqlpy-0.6.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "39f844e960a4c0a032d1670a1a80e1be7d7c046c797bd02ca1f88714877bbdbe",
                "md5": "53fd3a0009e46ae6c9d37d1c5ce07cff",
                "sha256": "122230854cfd0e31d1f05bce3c8985a34868387ebd08bf588a2d50dcc01073d8"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "53fd3a0009e46ae6c9d37d1c5ce07cff",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2304873,
            "upload_time": "2024-06-11T22:37:39",
            "upload_time_iso_8601": "2024-06-11T22:37:39.563324Z",
            "url": "https://files.pythonhosted.org/packages/39/f8/44e960a4c0a032d1670a1a80e1be7d7c046c797bd02ca1f88714877bbdbe/psqlpy-0.6.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8fc9cd311815fd8f37f6552e29c32463ce3d2d0e2e2974e0219da458b755c38",
                "md5": "b6841c46e5ee5b840730dfe5a6b05e15",
                "sha256": "ca033becac54bf08907a53cbb0dc1070841845dff87f586d1879541e95ca6918"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b6841c46e5ee5b840730dfe5a6b05e15",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2538005,
            "upload_time": "2024-06-11T22:37:41",
            "upload_time_iso_8601": "2024-06-11T22:37:41.298629Z",
            "url": "https://files.pythonhosted.org/packages/d8/fc/9cd311815fd8f37f6552e29c32463ce3d2d0e2e2974e0219da458b755c38/psqlpy-0.6.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4779eed0b73d96c40bdbb5aafd4ae7a069ab7e224b85008b48f44caa9ba06656",
                "md5": "5082b0cba4919f9ba0d52426feae260a",
                "sha256": "2f66711dad8f99fd2a7ce5ec7e1c1214fbe6d8fa8f15b16bdea1dfefae8c6266"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5082b0cba4919f9ba0d52426feae260a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2222596,
            "upload_time": "2024-06-11T22:37:43",
            "upload_time_iso_8601": "2024-06-11T22:37:43.022877Z",
            "url": "https://files.pythonhosted.org/packages/47/79/eed0b73d96c40bdbb5aafd4ae7a069ab7e224b85008b48f44caa9ba06656/psqlpy-0.6.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b100b834623f4560b01660a1ed13d35b21759e71a82c0af47f02c72342d1d832",
                "md5": "a1658bbd5e3e09b08bb76d8353fee7ec",
                "sha256": "a49e3ad5be1cd05fe3033f097bb6912949d5819179ddac8c55011f7d6caf5329"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a1658bbd5e3e09b08bb76d8353fee7ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2422756,
            "upload_time": "2024-06-11T22:37:44",
            "upload_time_iso_8601": "2024-06-11T22:37:44.796381Z",
            "url": "https://files.pythonhosted.org/packages/b1/00/b834623f4560b01660a1ed13d35b21759e71a82c0af47f02c72342d1d832/psqlpy-0.6.4-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "45c0f28f1902999894a1390f8add3a87429ab81327363601f190799dc10873b4",
                "md5": "de7c4c08b04f26ed193c9ec6f132803b",
                "sha256": "c90bfe22c754b0e6f3649b0e84e2d7206b5a8228caab2627e082235208a6836d"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "de7c4c08b04f26ed193c9ec6f132803b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 2389904,
            "upload_time": "2024-06-11T22:37:46",
            "upload_time_iso_8601": "2024-06-11T22:37:46.431949Z",
            "url": "https://files.pythonhosted.org/packages/45/c0/f28f1902999894a1390f8add3a87429ab81327363601f190799dc10873b4/psqlpy-0.6.4-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1c5b43c454f77b37deb592d7ee851a5abce0988195dadd95c3ee0997e742ad5c",
                "md5": "06ec75d4070925b2f6120504b49e6244",
                "sha256": "7fec841a6d367422b1f1fa6ee39b35777647defaf383543f701c4d7f3956ad29"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "06ec75d4070925b2f6120504b49e6244",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1049336,
            "upload_time": "2024-06-11T22:37:48",
            "upload_time_iso_8601": "2024-06-11T22:37:48.317703Z",
            "url": "https://files.pythonhosted.org/packages/1c/5b/43c454f77b37deb592d7ee851a5abce0988195dadd95c3ee0997e742ad5c/psqlpy-0.6.4-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f9ed25c8b10f0bb2d0030ca37e7d81dabf2b628162a74e03e6c63b2d294bc130",
                "md5": "586cd1b47800a1fdfa7ba5c05f47baa7",
                "sha256": "8c91fd113b0e3753d877adbffc8abc8ec612c09aa23a27556b1c842255f35fb9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "586cd1b47800a1fdfa7ba5c05f47baa7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 1150297,
            "upload_time": "2024-06-11T22:37:49",
            "upload_time_iso_8601": "2024-06-11T22:37:49.904105Z",
            "url": "https://files.pythonhosted.org/packages/f9/ed/25c8b10f0bb2d0030ca37e7d81dabf2b628162a74e03e6c63b2d294bc130/psqlpy-0.6.4-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8ad6171f4d17dba017b1628852e61b5da66bb5f2477059f66130ee1460253df3",
                "md5": "f1e5ff929d1e173c854e0143066d6df8",
                "sha256": "7b721a46ac037b029ff5780b6b6a25c663a999822aad6c14e907e570d90c67b2"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1e5ff929d1e173c854e0143066d6df8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1330468,
            "upload_time": "2024-06-11T22:37:51",
            "upload_time_iso_8601": "2024-06-11T22:37:51.516914Z",
            "url": "https://files.pythonhosted.org/packages/8a/d6/171f4d17dba017b1628852e61b5da66bb5f2477059f66130ee1460253df3/psqlpy-0.6.4-cp311-cp311-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0d041bd05cdf020380fe95b12c8a9dc1e25a90ed16ac1ca46b28d77f66efdfd0",
                "md5": "829e4fabb579975ec3b229575da912fc",
                "sha256": "5b394733db5c32828d33771e7222185fe8a5feeffa60a06bf888b23e5660b69a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "829e4fabb579975ec3b229575da912fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1284622,
            "upload_time": "2024-06-11T22:37:53",
            "upload_time_iso_8601": "2024-06-11T22:37:53.146535Z",
            "url": "https://files.pythonhosted.org/packages/0d/04/1bd05cdf020380fe95b12c8a9dc1e25a90ed16ac1ca46b28d77f66efdfd0/psqlpy-0.6.4-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d35705f64cf47f0d0146774fa842d9402ecf235c0cf5e0df3194d80075445c65",
                "md5": "7db14a30fbe9d088c5c5d640c20981b7",
                "sha256": "367be514fb19f4279116debc99f5dfc0bd4a71d87d6fca0e68b506313c1912a9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7db14a30fbe9d088c5c5d640c20981b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2217926,
            "upload_time": "2024-06-11T22:37:55",
            "upload_time_iso_8601": "2024-06-11T22:37:55.057153Z",
            "url": "https://files.pythonhosted.org/packages/d3/57/05f64cf47f0d0146774fa842d9402ecf235c0cf5e0df3194d80075445c65/psqlpy-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a20f2feea6c88989ecc34a408fd54f00b6b67dffa12e000a4fc24d1dcde7455",
                "md5": "8577cbf6d2f3f7b6511272dad77b3248",
                "sha256": "b37b7c33e86f86b7698b0fe6e194d184f7f76740dca6a53136206989897e950a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8577cbf6d2f3f7b6511272dad77b3248",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2216355,
            "upload_time": "2024-06-11T22:37:56",
            "upload_time_iso_8601": "2024-06-11T22:37:56.510387Z",
            "url": "https://files.pythonhosted.org/packages/0a/20/f2feea6c88989ecc34a408fd54f00b6b67dffa12e000a4fc24d1dcde7455/psqlpy-0.6.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3e563eaf8a3dc0714d93f7ae56a563816c13561ae165d08c1795df129133ee55",
                "md5": "bd664846ba5f426650b913156d8ba035",
                "sha256": "c917f4bfffcac9947f8e38de5baebbedc01ec6b9afe055d1e394d056fe321b96"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bd664846ba5f426650b913156d8ba035",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2320782,
            "upload_time": "2024-06-11T22:37:58",
            "upload_time_iso_8601": "2024-06-11T22:37:58.532041Z",
            "url": "https://files.pythonhosted.org/packages/3e/56/3eaf8a3dc0714d93f7ae56a563816c13561ae165d08c1795df129133ee55/psqlpy-0.6.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "082bf3a1443f117f2a0af3ae853517eb5ecf2a9e6e7bf43a8040401251772bce",
                "md5": "1f49dbecc401a87fb9fa3486270259ac",
                "sha256": "23df1bb416c0bb146f0bec6c13b3be5378883a1d5df2712fec54ca7a9cd58ff6"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1f49dbecc401a87fb9fa3486270259ac",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2306111,
            "upload_time": "2024-06-11T22:38:00",
            "upload_time_iso_8601": "2024-06-11T22:38:00.353084Z",
            "url": "https://files.pythonhosted.org/packages/08/2b/f3a1443f117f2a0af3ae853517eb5ecf2a9e6e7bf43a8040401251772bce/psqlpy-0.6.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "a7a3e614c80f2d7c5293ae057209ee3dc449f8dc7e8f28fa5ef56473996115ca",
                "md5": "17c74e4deef2bb3a1721ec75c6665a5e",
                "sha256": "30e53a16db86be6d6eab68c90cba20622b27036bb78268e67affce322c724118"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "17c74e4deef2bb3a1721ec75c6665a5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2538755,
            "upload_time": "2024-06-11T22:38:02",
            "upload_time_iso_8601": "2024-06-11T22:38:02.018777Z",
            "url": "https://files.pythonhosted.org/packages/a7/a3/e614c80f2d7c5293ae057209ee3dc449f8dc7e8f28fa5ef56473996115ca/psqlpy-0.6.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "42578099d5210d214f132bd7a2526f3acde683a080e96c6473fd2a7b5bab35cc",
                "md5": "cfabb5a84a07c1a911d6b40ec7b22064",
                "sha256": "b77a3937c69af211747500a76005cfcee7e2e808e29fafed5205728dad2acae5"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cfabb5a84a07c1a911d6b40ec7b22064",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2221943,
            "upload_time": "2024-06-11T22:38:04",
            "upload_time_iso_8601": "2024-06-11T22:38:04.089084Z",
            "url": "https://files.pythonhosted.org/packages/42/57/8099d5210d214f132bd7a2526f3acde683a080e96c6473fd2a7b5bab35cc/psqlpy-0.6.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b5fb072969b5a9d52c67aeeb83eab4b7c4681968e064f9ca2d6494daf5579741",
                "md5": "431d7266906ffa1749eb54e531e444ce",
                "sha256": "f24361951904e0b313f56a4d2e8df5f98fb533ceaeaf9852d6c2df6c14cb293b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "431d7266906ffa1749eb54e531e444ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2422848,
            "upload_time": "2024-06-11T22:38:05",
            "upload_time_iso_8601": "2024-06-11T22:38:05.692878Z",
            "url": "https://files.pythonhosted.org/packages/b5/fb/072969b5a9d52c67aeeb83eab4b7c4681968e064f9ca2d6494daf5579741/psqlpy-0.6.4-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "92f8ea54484bfffda9a1a4320f10651f5a4986c7832a19e2c0ad3095e819075c",
                "md5": "7ca9925b852c134cb744c06c893d65d8",
                "sha256": "352f82a30543e1c1ccbb864cb8a765ae23f350d952d47f9234c3d9017375985e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ca9925b852c134cb744c06c893d65d8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 2389857,
            "upload_time": "2024-06-11T22:38:07",
            "upload_time_iso_8601": "2024-06-11T22:38:07.514365Z",
            "url": "https://files.pythonhosted.org/packages/92/f8/ea54484bfffda9a1a4320f10651f5a4986c7832a19e2c0ad3095e819075c/psqlpy-0.6.4-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "28a961adca2979a6b9cd4d692fbf676c6e0d2a693e4eb9913bd0e945312edf15",
                "md5": "e67bcfd119d10855c93534a163f06a3e",
                "sha256": "f65c4b41e62b70a5820545d4e5d6751d86ac619e11c17107232f379ae09a3681"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "e67bcfd119d10855c93534a163f06a3e",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1049355,
            "upload_time": "2024-06-11T22:38:09",
            "upload_time_iso_8601": "2024-06-11T22:38:09.390185Z",
            "url": "https://files.pythonhosted.org/packages/28/a9/61adca2979a6b9cd4d692fbf676c6e0d2a693e4eb9913bd0e945312edf15/psqlpy-0.6.4-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6575d90985b6e87db45a36cf5f5714ee5cfe9e381589061efcbb597dbd8184ab",
                "md5": "969475283b749d70b48375a2f37b28d4",
                "sha256": "72a7eaa4e922f7094fd0fbb3523272fc63048cf499ee893483de7faf6edce5e7"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "969475283b749d70b48375a2f37b28d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1151919,
            "upload_time": "2024-06-11T22:38:10",
            "upload_time_iso_8601": "2024-06-11T22:38:10.834084Z",
            "url": "https://files.pythonhosted.org/packages/65/75/d90985b6e87db45a36cf5f5714ee5cfe9e381589061efcbb597dbd8184ab/psqlpy-0.6.4-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7011dfe64dbdfaf72d13460f650b5b6ced3266bc485818ae26f27aeab6d43b8a",
                "md5": "2bf788865b77b4bfe4021bfc1dc6b8ce",
                "sha256": "c4b4cfabea03b3ef2197f0816ff25d8074a0bdf5980a007cb3eb2dc632ddad20"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2bf788865b77b4bfe4021bfc1dc6b8ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1329864,
            "upload_time": "2024-06-11T22:38:12",
            "upload_time_iso_8601": "2024-06-11T22:38:12.274160Z",
            "url": "https://files.pythonhosted.org/packages/70/11/dfe64dbdfaf72d13460f650b5b6ced3266bc485818ae26f27aeab6d43b8a/psqlpy-0.6.4-cp312-cp312-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbcbacbb09733f0aeefdf95a1c2e0597d5443d77f65bdd6a80f668ab42f8cdb4",
                "md5": "0b4d05e151469b54205bd813cfba287b",
                "sha256": "e3f6b2112922d1e339aa1ecabf6c16df96766fd0609fd0ac4e6bf8cdb651785e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0b4d05e151469b54205bd813cfba287b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1290349,
            "upload_time": "2024-06-11T22:38:13",
            "upload_time_iso_8601": "2024-06-11T22:38:13.882512Z",
            "url": "https://files.pythonhosted.org/packages/fb/cb/acbb09733f0aeefdf95a1c2e0597d5443d77f65bdd6a80f668ab42f8cdb4/psqlpy-0.6.4-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "254309d8c01bdf84cfa6fe28ce064f12a13358a50844298f653324ac49e64509",
                "md5": "8ee33ffc72f8a8db14f14aa0a35cc6fa",
                "sha256": "0098e81eabc217e0e857a1f3b9174d11aa48672b8acee57b14fe6bc2bdf68681"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8ee33ffc72f8a8db14f14aa0a35cc6fa",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2224942,
            "upload_time": "2024-06-11T22:38:15",
            "upload_time_iso_8601": "2024-06-11T22:38:15.650717Z",
            "url": "https://files.pythonhosted.org/packages/25/43/09d8c01bdf84cfa6fe28ce064f12a13358a50844298f653324ac49e64509/psqlpy-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f6032c0fa8ac5e9c69c1994c64788a952ec68ccd890074973422969379e130c5",
                "md5": "27b0423d7e85a3c53c7c57671db15ac3",
                "sha256": "d125152eae6ce465c5d79c4dde953681b03c0273fcf54ec352415a4dfa3e65d6"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "27b0423d7e85a3c53c7c57671db15ac3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2214261,
            "upload_time": "2024-06-11T22:38:17",
            "upload_time_iso_8601": "2024-06-11T22:38:17.248016Z",
            "url": "https://files.pythonhosted.org/packages/f6/03/2c0fa8ac5e9c69c1994c64788a952ec68ccd890074973422969379e130c5/psqlpy-0.6.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "446a6d073059bbed32e0453729dd9e1abccc6935a3456330e9a80cb324a6b7c6",
                "md5": "16cdd4ddae4850345b9cbb7aab4b8f74",
                "sha256": "678cc29a43dc5ac005ca0ae3655d59ff89283d26021bdc9e034966aef95289a7"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "16cdd4ddae4850345b9cbb7aab4b8f74",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2322367,
            "upload_time": "2024-06-11T22:38:19",
            "upload_time_iso_8601": "2024-06-11T22:38:19.205373Z",
            "url": "https://files.pythonhosted.org/packages/44/6a/6d073059bbed32e0453729dd9e1abccc6935a3456330e9a80cb324a6b7c6/psqlpy-0.6.4-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb672b117e14a01721fd2daaea635b2efa2d58499578ad744b5284e3e103b1b6",
                "md5": "106a3074036c65909a6689050b07cb86",
                "sha256": "e0eded24f1242e1f42ac72e701116449d65e8ba5fe0d22b34d793e2d210bfd73"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "106a3074036c65909a6689050b07cb86",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2300988,
            "upload_time": "2024-06-11T22:38:20",
            "upload_time_iso_8601": "2024-06-11T22:38:20.775769Z",
            "url": "https://files.pythonhosted.org/packages/cb/67/2b117e14a01721fd2daaea635b2efa2d58499578ad744b5284e3e103b1b6/psqlpy-0.6.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d765e9dca31c976ccb7c9d74c76b54fd3d624af1bc233ae538a6872e3f9bb3e0",
                "md5": "00f14775b1fad1ed7b09100985a3889e",
                "sha256": "7724e147089a31c6bfbd3b25237b77927012b64d1d40a6ea476be9e3c97e1229"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "00f14775b1fad1ed7b09100985a3889e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2519763,
            "upload_time": "2024-06-11T22:38:22",
            "upload_time_iso_8601": "2024-06-11T22:38:22.387504Z",
            "url": "https://files.pythonhosted.org/packages/d7/65/e9dca31c976ccb7c9d74c76b54fd3d624af1bc233ae538a6872e3f9bb3e0/psqlpy-0.6.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "09064c932b7c44f464d571ecd4fdcd60a5bc955eea01c21166141be24ca00cdf",
                "md5": "8950ffcc55a590b233af33218ba8d17b",
                "sha256": "aab38122f3eea6fea273dff700c9908960d16661b5974749b614f09d04b514ea"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8950ffcc55a590b233af33218ba8d17b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2225054,
            "upload_time": "2024-06-11T22:38:24",
            "upload_time_iso_8601": "2024-06-11T22:38:24.029109Z",
            "url": "https://files.pythonhosted.org/packages/09/06/4c932b7c44f464d571ecd4fdcd60a5bc955eea01c21166141be24ca00cdf/psqlpy-0.6.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7376157b08c025aad684dc29993bdb7d0f9923c1b4401aeb952052866a0091d0",
                "md5": "98d798139c19ef5d92b55eebc7d353f2",
                "sha256": "ee2232ff28f3364fbe9cb3a18091f6094f26646ae5ee1ec561d3862c299d2eb1"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "98d798139c19ef5d92b55eebc7d353f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2426666,
            "upload_time": "2024-06-11T22:38:25",
            "upload_time_iso_8601": "2024-06-11T22:38:25.847364Z",
            "url": "https://files.pythonhosted.org/packages/73/76/157b08c025aad684dc29993bdb7d0f9923c1b4401aeb952052866a0091d0/psqlpy-0.6.4-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "72b1b24b77474b81563621ae3eb177169bf1f2d6e4e4879db4b4df97e4a81d72",
                "md5": "d238ba0e985bbc9bf290bad666b9fc7a",
                "sha256": "b0b2fd1749120e481e437e1e711a922566a9e4f02198207154eb3703b95bc742"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d238ba0e985bbc9bf290bad666b9fc7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 2393230,
            "upload_time": "2024-06-11T22:38:27",
            "upload_time_iso_8601": "2024-06-11T22:38:27.637543Z",
            "url": "https://files.pythonhosted.org/packages/72/b1/b24b77474b81563621ae3eb177169bf1f2d6e4e4879db4b4df97e4a81d72/psqlpy-0.6.4-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d71bfcd53205b384b148b3edb2d6a9432da1592104897f845797de5d51180ebb",
                "md5": "6822422250c7a88b7907ea2e60fb1cad",
                "sha256": "dd831d259a5856d26d31abbcec0a394ab663d6999ea2243ffdaedc597780885d"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "6822422250c7a88b7907ea2e60fb1cad",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1042216,
            "upload_time": "2024-06-11T22:38:29",
            "upload_time_iso_8601": "2024-06-11T22:38:29.453472Z",
            "url": "https://files.pythonhosted.org/packages/d7/1b/fcd53205b384b148b3edb2d6a9432da1592104897f845797de5d51180ebb/psqlpy-0.6.4-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "523d512f38dccc360136c499d6ae581b72fca2079da48dc52c155b2626c6f08c",
                "md5": "51cda6e765236bb1d3f807ce7be5f550",
                "sha256": "fd561327027885214ab371cd183ee4136b8a7e83e2cd9bb508ac024cb6510bc3"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "51cda6e765236bb1d3f807ce7be5f550",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1149158,
            "upload_time": "2024-06-11T22:38:31",
            "upload_time_iso_8601": "2024-06-11T22:38:31.065094Z",
            "url": "https://files.pythonhosted.org/packages/52/3d/512f38dccc360136c499d6ae581b72fca2079da48dc52c155b2626c6f08c/psqlpy-0.6.4-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6f2b5ec6373b9783c6149062e6c9cca3d61ab367202f0b58bbd66ea349a2c33c",
                "md5": "998aff2af4555281212dacdc6115126d",
                "sha256": "9f37b88a988f4b014a7a1d22b045b7144222088f1c03909a16204c1c12b5e213"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "998aff2af4555281212dacdc6115126d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2216507,
            "upload_time": "2024-06-11T22:38:32",
            "upload_time_iso_8601": "2024-06-11T22:38:32.972320Z",
            "url": "https://files.pythonhosted.org/packages/6f/2b/5ec6373b9783c6149062e6c9cca3d61ab367202f0b58bbd66ea349a2c33c/psqlpy-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0b73730bc51e537ba60c0c0cc009716e9148e2d458f8adefc53951303806a9cb",
                "md5": "0776a6061a3b0f43e61ea277c864f447",
                "sha256": "f1d068eed50cb04b60e2e48b454780c4792245ce87446608d459818cc5b719ad"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "0776a6061a3b0f43e61ea277c864f447",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2215504,
            "upload_time": "2024-06-11T22:38:34",
            "upload_time_iso_8601": "2024-06-11T22:38:34.613680Z",
            "url": "https://files.pythonhosted.org/packages/0b/73/730bc51e537ba60c0c0cc009716e9148e2d458f8adefc53951303806a9cb/psqlpy-0.6.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8db5749a4f732f3795ff5edea590149f7f16519ddae88f769ed79cdae4c19a6f",
                "md5": "950fa4b712b3b3179c69d9b61e6ec81c",
                "sha256": "af6ef04d069214d3df66462b0aa53a21aa50b2d0afc07bb8c6da5fa1a3475dba"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "950fa4b712b3b3179c69d9b61e6ec81c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2320337,
            "upload_time": "2024-06-11T22:38:36",
            "upload_time_iso_8601": "2024-06-11T22:38:36.396896Z",
            "url": "https://files.pythonhosted.org/packages/8d/b5/749a4f732f3795ff5edea590149f7f16519ddae88f769ed79cdae4c19a6f/psqlpy-0.6.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1589ce8af80358ca54d51f31271e6999b79359edd79ecbd76aa6663b1bbe3ddc",
                "md5": "2fb51bb3538d0b41ee346fc1ec56b37a",
                "sha256": "1e39021834c35c6677fd2efd98a3947ac783143b54b693682e268f06702180aa"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2fb51bb3538d0b41ee346fc1ec56b37a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2305512,
            "upload_time": "2024-06-11T22:38:38",
            "upload_time_iso_8601": "2024-06-11T22:38:38.314933Z",
            "url": "https://files.pythonhosted.org/packages/15/89/ce8af80358ca54d51f31271e6999b79359edd79ecbd76aa6663b1bbe3ddc/psqlpy-0.6.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2ef1e2b48c97021c2efa8c767b011d785dcbcc997d5a1e9838cc50e42f7db656",
                "md5": "406ca7d158f8363c93d92ab3b7e933ba",
                "sha256": "f55b97222bfd735f6b5f1cb413554882222bd0832865b62233dd2d4a73330621"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "406ca7d158f8363c93d92ab3b7e933ba",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2535369,
            "upload_time": "2024-06-11T22:38:39",
            "upload_time_iso_8601": "2024-06-11T22:38:39.929082Z",
            "url": "https://files.pythonhosted.org/packages/2e/f1/e2b48c97021c2efa8c767b011d785dcbcc997d5a1e9838cc50e42f7db656/psqlpy-0.6.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "714973abcf7d18a5566b86e29d9abc2c30636953ee8ef4713cdb1284f6dcc6ef",
                "md5": "7937c263829c7656b1d8efce4ecd4d64",
                "sha256": "7a63e92121e8b13cd98f1654eec0f314c8ecc0f556abb372b03525972b7bef31"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7937c263829c7656b1d8efce4ecd4d64",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2222016,
            "upload_time": "2024-06-11T22:38:41",
            "upload_time_iso_8601": "2024-06-11T22:38:41.845204Z",
            "url": "https://files.pythonhosted.org/packages/71/49/73abcf7d18a5566b86e29d9abc2c30636953ee8ef4713cdb1284f6dcc6ef/psqlpy-0.6.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e0a0334f515a5ed57a27144299cb8fb79579be91efa0703922cad4d3ca68ecd9",
                "md5": "f917770ae4888cad15de199e98e46f15",
                "sha256": "e2d24f0a06ffe72caca9e99f620e56025393229fb7e924e810c2f52d5ef11684"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "f917770ae4888cad15de199e98e46f15",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2422633,
            "upload_time": "2024-06-11T22:38:43",
            "upload_time_iso_8601": "2024-06-11T22:38:43.865085Z",
            "url": "https://files.pythonhosted.org/packages/e0/a0/334f515a5ed57a27144299cb8fb79579be91efa0703922cad4d3ca68ecd9/psqlpy-0.6.4-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "681698c350ec251d332c292c57ad234d413a1783c64ea26b4453ee195f5acf7d",
                "md5": "50dde267c1564e2386275ee04b1d2266",
                "sha256": "464216966880ab640ddc775a53c3f6f63d740ba09fe9770be210f52c0994e00a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "50dde267c1564e2386275ee04b1d2266",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 2389748,
            "upload_time": "2024-06-11T22:38:45",
            "upload_time_iso_8601": "2024-06-11T22:38:45.844592Z",
            "url": "https://files.pythonhosted.org/packages/68/16/98c350ec251d332c292c57ad234d413a1783c64ea26b4453ee195f5acf7d/psqlpy-0.6.4-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "834f1b3dc97f893a6d35e81446a45aa29c30f6aba94f3e577f222c83c0e2d48d",
                "md5": "fea675c596292edefada2462923abafa",
                "sha256": "87d01e2aae88664b35b0e40c0968a8db1bbe2f0cb1b96ce54b86d2826fc4e038"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "fea675c596292edefada2462923abafa",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1049899,
            "upload_time": "2024-06-11T22:38:47",
            "upload_time_iso_8601": "2024-06-11T22:38:47.824866Z",
            "url": "https://files.pythonhosted.org/packages/83/4f/1b3dc97f893a6d35e81446a45aa29c30f6aba94f3e577f222c83c0e2d48d/psqlpy-0.6.4-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b1ec41a71faf6513b1310fde9aa67bb68c342c6252521b000ae05ca14c2025cb",
                "md5": "8c90fab6511f5afee54fef7f6b95adbb",
                "sha256": "f3880964aed78db98448c3a40c1fd95a8e4ee38dda1d7bcf7ec64cb888160e45"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8c90fab6511f5afee54fef7f6b95adbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 1151161,
            "upload_time": "2024-06-11T22:38:49",
            "upload_time_iso_8601": "2024-06-11T22:38:49.969094Z",
            "url": "https://files.pythonhosted.org/packages/b1/ec/41a71faf6513b1310fde9aa67bb68c342c6252521b000ae05ca14c2025cb/psqlpy-0.6.4-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "16bc7be7ca702bf8e68e26a4aec9f9dea40b5ed90270f1a33afa13c8536e8f41",
                "md5": "2ece35b232d49e4c705677612987a929",
                "sha256": "9f7e952a624b54f5b0e0de7403da25dc85cca6123e8cc4f40c2f09c55832a8ee"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-cp39-macosx_10_12_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ece35b232d49e4c705677612987a929",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1333289,
            "upload_time": "2024-06-11T22:38:51",
            "upload_time_iso_8601": "2024-06-11T22:38:51.831078Z",
            "url": "https://files.pythonhosted.org/packages/16/bc/7be7ca702bf8e68e26a4aec9f9dea40b5ed90270f1a33afa13c8536e8f41/psqlpy-0.6.4-cp39-cp39-macosx_10_12_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0bc81b51d3e854e6a26460811e94902a8d5df9760fbacb9a27a489385b0ad899",
                "md5": "2b0dd3aed65064a8e21098197038ee11",
                "sha256": "0bc806908d5bf30e0754e480cfcfe5a4eaf5063e9c25059e0407e2da37fbde9e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2b0dd3aed65064a8e21098197038ee11",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1284848,
            "upload_time": "2024-06-11T22:38:53",
            "upload_time_iso_8601": "2024-06-11T22:38:53.668581Z",
            "url": "https://files.pythonhosted.org/packages/0b/c8/1b51d3e854e6a26460811e94902a8d5df9760fbacb9a27a489385b0ad899/psqlpy-0.6.4-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b822c4729ae037cf674dc73e1cb3f00d52340d0dd90e6d23df8e0d189f1584ba",
                "md5": "0c3350f62684652b73710298434b9444",
                "sha256": "3459b316d5cd9766caf14eba1e0e2425ca1802e03ca5cda52ff0a616d4e1563e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0c3350f62684652b73710298434b9444",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2217690,
            "upload_time": "2024-06-11T22:38:55",
            "upload_time_iso_8601": "2024-06-11T22:38:55.269082Z",
            "url": "https://files.pythonhosted.org/packages/b8/22/c4729ae037cf674dc73e1cb3f00d52340d0dd90e6d23df8e0d189f1584ba/psqlpy-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3fc2b5ec8c0fd2ede246d06c703424b4cfa816aaf3b2f4864c2c1f31cb95b4b4",
                "md5": "e46d2bc1555be85b54a9b617d673eec9",
                "sha256": "2c09c1f52af029d849017258b4a669235436d00e21bf51070be0e0ab259f6c6a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "e46d2bc1555be85b54a9b617d673eec9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2216204,
            "upload_time": "2024-06-11T22:38:57",
            "upload_time_iso_8601": "2024-06-11T22:38:57.017752Z",
            "url": "https://files.pythonhosted.org/packages/3f/c2/b5ec8c0fd2ede246d06c703424b4cfa816aaf3b2f4864c2c1f31cb95b4b4/psqlpy-0.6.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6eae2c1f7c8fb73f3cc17cf2bafee15233756f9c9264bc670a772d9ee56ad2f5",
                "md5": "e157dca568bee7424015d089baa4e4fd",
                "sha256": "bba73e8678eae35520b54b73c79198b71c44f69adb56677036cf0396350c29b6"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e157dca568bee7424015d089baa4e4fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2322281,
            "upload_time": "2024-06-11T22:38:58",
            "upload_time_iso_8601": "2024-06-11T22:38:58.776639Z",
            "url": "https://files.pythonhosted.org/packages/6e/ae/2c1f7c8fb73f3cc17cf2bafee15233756f9c9264bc670a772d9ee56ad2f5/psqlpy-0.6.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8d7a67cea036d65c9f14062d9f3bc01869c76a2b23bc1f54ca6c226a23e439b8",
                "md5": "2ec41d7490c64af608caf2ab6d681b0f",
                "sha256": "e880f5577b083d26be05dce3da0febbf7a2c347a671d74190f6e9d7d1d92dd90"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2ec41d7490c64af608caf2ab6d681b0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2305417,
            "upload_time": "2024-06-11T22:39:00",
            "upload_time_iso_8601": "2024-06-11T22:39:00.948873Z",
            "url": "https://files.pythonhosted.org/packages/8d/7a/67cea036d65c9f14062d9f3bc01869c76a2b23bc1f54ca6c226a23e439b8/psqlpy-0.6.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e30ba7aee8c12f97dfad25e5af04b5d7773ff5dda0086d9d3bc3cc25c73abae6",
                "md5": "b60c050e4c031e0e38e1143ee04e1978",
                "sha256": "f2a328062336a8da57cc34e1b0eca132292470bf54c179907d37b955de0d335c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "b60c050e4c031e0e38e1143ee04e1978",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2537505,
            "upload_time": "2024-06-11T22:39:02",
            "upload_time_iso_8601": "2024-06-11T22:39:02.994918Z",
            "url": "https://files.pythonhosted.org/packages/e3/0b/a7aee8c12f97dfad25e5af04b5d7773ff5dda0086d9d3bc3cc25c73abae6/psqlpy-0.6.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d252c8d99232d5b861c9cbd85579e4fda62ccffbea54e391f88a305fa43bbd8f",
                "md5": "ed96ca0458f98a7ce6e9950d00ce5e5d",
                "sha256": "526227381cb1f0e9c26c44ca2266c3294d30a133dd82690f5e750bbc2b994441"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed96ca0458f98a7ce6e9950d00ce5e5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2222105,
            "upload_time": "2024-06-11T22:39:05",
            "upload_time_iso_8601": "2024-06-11T22:39:05.025073Z",
            "url": "https://files.pythonhosted.org/packages/d2/52/c8d99232d5b861c9cbd85579e4fda62ccffbea54e391f88a305fa43bbd8f/psqlpy-0.6.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1f7183f271fe5fb0847f99e859800923a26a8e9e7da96a2c4f4926d8997901a4",
                "md5": "297fa0c6732ea8d6526ad515e65581b9",
                "sha256": "2d3ac935cb5c1360f4ba0c8a7792d899ee7ba0783b8cbbe904d2f3d379fd1db7"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "297fa0c6732ea8d6526ad515e65581b9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2425288,
            "upload_time": "2024-06-11T22:39:06",
            "upload_time_iso_8601": "2024-06-11T22:39:06.894996Z",
            "url": "https://files.pythonhosted.org/packages/1f/71/83f271fe5fb0847f99e859800923a26a8e9e7da96a2c4f4926d8997901a4/psqlpy-0.6.4-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2629d68a6aa95db4e5003b1bdd971f564cb80bdb6fe2226b1bb6a8a7d75a92df",
                "md5": "e396748c73b0327395c8cf264db99ef5",
                "sha256": "c083b270353f48df5ddee99c13b938c9d504faceb3e341a4cf5ccbb61a574eb3"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e396748c73b0327395c8cf264db99ef5",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 2390163,
            "upload_time": "2024-06-11T22:39:08",
            "upload_time_iso_8601": "2024-06-11T22:39:08.534901Z",
            "url": "https://files.pythonhosted.org/packages/26/29/d68a6aa95db4e5003b1bdd971f564cb80bdb6fe2226b1bb6a8a7d75a92df/psqlpy-0.6.4-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1f497b4d92b657646e6a151caa4e3acb039a467f3cc0d4d6ec5f95343b78b7c",
                "md5": "b750368b4bd7ca8a6cb6f145c232aeec",
                "sha256": "c55479561ecce7d36e8503143491da15b7ec0defe6d6852f5cd8a4f72b9fb86b"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "b750368b4bd7ca8a6cb6f145c232aeec",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1049979,
            "upload_time": "2024-06-11T22:39:10",
            "upload_time_iso_8601": "2024-06-11T22:39:10.141384Z",
            "url": "https://files.pythonhosted.org/packages/c1/f4/97b4d92b657646e6a151caa4e3acb039a467f3cc0d4d6ec5f95343b78b7c/psqlpy-0.6.4-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3452b4dac8f90cc2309a3c25b4227917eae23f3d8cc5c1ca6e651c57504f7f18",
                "md5": "4714c6d7b61bd1ac9f2c232478e5aba3",
                "sha256": "a309d23e0b4283fd635a559419ccac49ef6c9e47f1a956f9d4d3eb53fdd99223"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4714c6d7b61bd1ac9f2c232478e5aba3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 1151715,
            "upload_time": "2024-06-11T22:39:11",
            "upload_time_iso_8601": "2024-06-11T22:39:11.921643Z",
            "url": "https://files.pythonhosted.org/packages/34/52/b4dac8f90cc2309a3c25b4227917eae23f3d8cc5c1ca6e651c57504f7f18/psqlpy-0.6.4-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cca4d26ed13df4fcd29d1af5d52388657e601a535a02aba9783ce6a461856652",
                "md5": "46020cc571cf9f462e73727cddae6824",
                "sha256": "032299bfc97c5db50bf53dbf52d584785083e5ab3dd3fda640ce0c3c3560085f"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "46020cc571cf9f462e73727cddae6824",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2220835,
            "upload_time": "2024-06-11T22:39:13",
            "upload_time_iso_8601": "2024-06-11T22:39:13.795713Z",
            "url": "https://files.pythonhosted.org/packages/cc/a4/d26ed13df4fcd29d1af5d52388657e601a535a02aba9783ce6a461856652/psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2694ad480be9eddb46741835995836a14f9b58139db90d030bc7a35ba9de8bd2",
                "md5": "55645139b5f9cd6d87b96079b8f9ab8d",
                "sha256": "0d1d139a48d84d82d12063846ad367cb77ffa91e4429640a0732c61a967c69fa"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "55645139b5f9cd6d87b96079b8f9ab8d",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2215127,
            "upload_time": "2024-06-11T22:39:15",
            "upload_time_iso_8601": "2024-06-11T22:39:15.353089Z",
            "url": "https://files.pythonhosted.org/packages/26/94/ad480be9eddb46741835995836a14f9b58139db90d030bc7a35ba9de8bd2/psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5b41105a9f1417512bd6d8a7c486c8156c9cfc11576a7bbd1d73c9b0a109ed9b",
                "md5": "4782213584d033725b9e58bb062105cd",
                "sha256": "dd54d81b0f213fb028382b85d2af450928edf305ec41e2780a4512296db1f094"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4782213584d033725b9e58bb062105cd",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2319216,
            "upload_time": "2024-06-11T22:39:17",
            "upload_time_iso_8601": "2024-06-11T22:39:17.193081Z",
            "url": "https://files.pythonhosted.org/packages/5b/41/105a9f1417512bd6d8a7c486c8156c9cfc11576a7bbd1d73c9b0a109ed9b/psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd92c5e925ad108b49c2946a33bcc39891243d31e91a935ce032b1f28074ce67",
                "md5": "347465e93a14efdc0c1df0261da8a0d6",
                "sha256": "27263d83b41ec3c2e6708f63a2a50041fee56113f15aa2084969969289d9ef78"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "347465e93a14efdc0c1df0261da8a0d6",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2311621,
            "upload_time": "2024-06-11T22:39:19",
            "upload_time_iso_8601": "2024-06-11T22:39:19.101171Z",
            "url": "https://files.pythonhosted.org/packages/dd/92/c5e925ad108b49c2946a33bcc39891243d31e91a935ce032b1f28074ce67/psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "63f3a1fd115bc7c874b1823c442d8c966a29194f58a17647e804b8b844c9ae1c",
                "md5": "5ba5bfa04fcf5ab6121655ae391aa7dc",
                "sha256": "9f0233d4730b8fb325844067f6d623b5aa36fe2dda86a6d6dea5efe515ff0bf7"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5ba5bfa04fcf5ab6121655ae391aa7dc",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2536889,
            "upload_time": "2024-06-11T22:39:20",
            "upload_time_iso_8601": "2024-06-11T22:39:20.981267Z",
            "url": "https://files.pythonhosted.org/packages/63/f3/a1fd115bc7c874b1823c442d8c966a29194f58a17647e804b8b844c9ae1c/psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8f30f5b4bbb25233e7b1e272fbbf8b4300530dfb9cd141d2828c37a887ee2a67",
                "md5": "bf4fa8fe984fcef1ad86ca498fd6ee65",
                "sha256": "017bde841bc46b102d9f0ecd130347c014679d083ebcb3653359d13b969a594e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bf4fa8fe984fcef1ad86ca498fd6ee65",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2228607,
            "upload_time": "2024-06-11T22:39:23",
            "upload_time_iso_8601": "2024-06-11T22:39:23.008791Z",
            "url": "https://files.pythonhosted.org/packages/8f/30/f5b4bbb25233e7b1e272fbbf8b4300530dfb9cd141d2828c37a887ee2a67/psqlpy-0.6.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dd22d5284b2048e8df316d737643a90d6a7a923834a799bf9d9b2cb446c85e24",
                "md5": "c8a896d87f77949d32aa1941517adfe0",
                "sha256": "7d16e242fe47f28d30a39ca130b7b2b2f3cf9077d039f7697dcdb48cd099312a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "c8a896d87f77949d32aa1941517adfe0",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2425798,
            "upload_time": "2024-06-11T22:39:25",
            "upload_time_iso_8601": "2024-06-11T22:39:25.073066Z",
            "url": "https://files.pythonhosted.org/packages/dd/22/d5284b2048e8df316d737643a90d6a7a923834a799bf9d9b2cb446c85e24/psqlpy-0.6.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c6cfd1e1c38dd95aca61c4fe81f0519ca2bedd117c514957ed80ba942407da68",
                "md5": "a08dcffbf5a77c908320fd99f798cf8c",
                "sha256": "ef5c204a1752d7a2730ce5dae48da76f2c9ef6f5e75ab25c0d3d8a4156c40099"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a08dcffbf5a77c908320fd99f798cf8c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 2396009,
            "upload_time": "2024-06-11T22:39:26",
            "upload_time_iso_8601": "2024-06-11T22:39:26.717662Z",
            "url": "https://files.pythonhosted.org/packages/c6/cf/d1e1c38dd95aca61c4fe81f0519ca2bedd117c514957ed80ba942407da68/psqlpy-0.6.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "143eb7a19849f242c34242beb5821e6c3f3f72b79d49d3e03358532e2d84e902",
                "md5": "3b174a268f1a30fe3a6dbdde0235b14b",
                "sha256": "a24c62e6d806f6888978afaf61042bc8c9e028db398a55f3ef965a8b517888a8"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3b174a268f1a30fe3a6dbdde0235b14b",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2220977,
            "upload_time": "2024-06-11T22:39:28",
            "upload_time_iso_8601": "2024-06-11T22:39:28.573991Z",
            "url": "https://files.pythonhosted.org/packages/14/3e/b7a19849f242c34242beb5821e6c3f3f72b79d49d3e03358532e2d84e902/psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f49e471ec6464882b1de4b9aaff9c16d428d4ae080576dc47175c74ce07dab58",
                "md5": "fbd65e762592a6e4e1a98f8f9f3bef1c",
                "sha256": "d710efcd0a176efa85d25cfeb6c66ed26ca5d2a21dfa804fec2069b4d0c6f1df"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "fbd65e762592a6e4e1a98f8f9f3bef1c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2216868,
            "upload_time": "2024-06-11T22:39:30",
            "upload_time_iso_8601": "2024-06-11T22:39:30.317678Z",
            "url": "https://files.pythonhosted.org/packages/f4/9e/471ec6464882b1de4b9aaff9c16d428d4ae080576dc47175c74ce07dab58/psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "577896bf333b4d18fb1a0a7228a09110556b4d3f5f2444929f11a43de9b91bf6",
                "md5": "934a02c86025b181e133e124e85fd9e8",
                "sha256": "cdbe25f64496161dfdbe139d11f171a07834989c1d888af7c7e9828746645a4e"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "934a02c86025b181e133e124e85fd9e8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2320681,
            "upload_time": "2024-06-11T22:39:31",
            "upload_time_iso_8601": "2024-06-11T22:39:31.876003Z",
            "url": "https://files.pythonhosted.org/packages/57/78/96bf333b4d18fb1a0a7228a09110556b4d3f5f2444929f11a43de9b91bf6/psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb1cbeb9904b333efda51d97c74088de69bc7e91017a78e0011b1ff873f98b5f",
                "md5": "ca133b6d2ba1f73160417b7fe9ecd6f8",
                "sha256": "365edf99a7a6952a94995fa01b186c0b84e321cc2d8708de8051184970fdcbaf"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ca133b6d2ba1f73160417b7fe9ecd6f8",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2312184,
            "upload_time": "2024-06-11T22:39:33",
            "upload_time_iso_8601": "2024-06-11T22:39:33.892549Z",
            "url": "https://files.pythonhosted.org/packages/bb/1c/beb9904b333efda51d97c74088de69bc7e91017a78e0011b1ff873f98b5f/psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2966244b533328deee2af9e214c91c256516019d04922251a9cf51f743522f25",
                "md5": "2c9477791ec18d7729e6face1ae5460c",
                "sha256": "41fe6b9be2d40b09d7ee0f71865516ba1d5eba2470d2e235e65776186e1f2ce5"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "2c9477791ec18d7729e6face1ae5460c",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2536698,
            "upload_time": "2024-06-11T22:39:35",
            "upload_time_iso_8601": "2024-06-11T22:39:35.843946Z",
            "url": "https://files.pythonhosted.org/packages/29/66/244b533328deee2af9e214c91c256516019d04922251a9cf51f743522f25/psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "bb494196abba9b925a7e8573cd68838dfb778f63de334bbef492e396d2c48146",
                "md5": "5f26c3e2fab4af194c59593b1e5511f5",
                "sha256": "b95b67a2914ce05160b33aa41db22920f3f9fe672191bf13a58e457413e0e2c4"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f26c3e2fab4af194c59593b1e5511f5",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2229662,
            "upload_time": "2024-06-11T22:39:37",
            "upload_time_iso_8601": "2024-06-11T22:39:37.845086Z",
            "url": "https://files.pythonhosted.org/packages/bb/49/4196abba9b925a7e8573cd68838dfb778f63de334bbef492e396d2c48146/psqlpy-0.6.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ae392d1fbae134f0dcd17758def52c2bc885eeef435a4f39aa69b0956ccbcfc9",
                "md5": "74aab7fdff15bf6f8622c2a5b8f1c528",
                "sha256": "bce786450d9e7955fe6b226a357fc61c2378aa761abc72680f7a5f70376b6c45"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "74aab7fdff15bf6f8622c2a5b8f1c528",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2425598,
            "upload_time": "2024-06-11T22:39:39",
            "upload_time_iso_8601": "2024-06-11T22:39:39.419944Z",
            "url": "https://files.pythonhosted.org/packages/ae/39/2d1fbae134f0dcd17758def52c2bc885eeef435a4f39aa69b0956ccbcfc9/psqlpy-0.6.4-pp38-pypy38_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3f796dcb11d77b603552efa13504a4e9901f5a96c37e59172b931296c97dd088",
                "md5": "3249b14ae3b5a38b9d8972a699c94cd4",
                "sha256": "ed948c544b2278fab19a9d3bdde88d88542e459bcab6e833f43e4f90268431f5"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3249b14ae3b5a38b9d8972a699c94cd4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 2397218,
            "upload_time": "2024-06-11T22:39:41",
            "upload_time_iso_8601": "2024-06-11T22:39:41.133121Z",
            "url": "https://files.pythonhosted.org/packages/3f/79/6dcb11d77b603552efa13504a4e9901f5a96c37e59172b931296c97dd088/psqlpy-0.6.4-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cfd094c557819a4875086a955297858e5a73d8f542076b7c482a67537aba4e62",
                "md5": "3771bc569fa8f791efdcfcdacd711740",
                "sha256": "96bbd02b7809fb5b6dc909d4ff5caf749c1387fc2a0f242d881b130f19368ee9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3771bc569fa8f791efdcfcdacd711740",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2221021,
            "upload_time": "2024-06-11T22:39:42",
            "upload_time_iso_8601": "2024-06-11T22:39:42.998629Z",
            "url": "https://files.pythonhosted.org/packages/cf/d0/94c557819a4875086a955297858e5a73d8f542076b7c482a67537aba4e62/psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e2ac000f166df38615275326dacfc8e1f32abf93914c82b4aa0037521d8f95d3",
                "md5": "ce750d1b5adb90ca07721b0d8fdfd44d",
                "sha256": "729fd47e3a3c0831e7dc82d809b07c84a3d699325445f283a10b54e4497855fd"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "ce750d1b5adb90ca07721b0d8fdfd44d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2216363,
            "upload_time": "2024-06-11T22:39:45",
            "upload_time_iso_8601": "2024-06-11T22:39:45.352647Z",
            "url": "https://files.pythonhosted.org/packages/e2/ac/000f166df38615275326dacfc8e1f32abf93914c82b4aa0037521d8f95d3/psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c1e8768286caa921a2ff2e6c2c1eca58a76ffd4627e0f714002873a9791904f9",
                "md5": "9717f4312fe04eaca53a025a19c49743",
                "sha256": "a9113f2efeb719ae662fce4fe19a451d40965bcf5def726b9a7d9dee4fccb14c"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9717f4312fe04eaca53a025a19c49743",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2320383,
            "upload_time": "2024-06-11T22:39:46",
            "upload_time_iso_8601": "2024-06-11T22:39:46.895933Z",
            "url": "https://files.pythonhosted.org/packages/c1/e8/768286caa921a2ff2e6c2c1eca58a76ffd4627e0f714002873a9791904f9/psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fc6c444ae68eb26592390df32a52241d17842f0f15df0c18c59d9468b2d0331b",
                "md5": "548113e4b8bbe260e73496fbbc67f2b9",
                "sha256": "a10b853c9387de20a6b47ae2de0cbe1313f37963d19da622f6b9a1eddff1721a"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "548113e4b8bbe260e73496fbbc67f2b9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2312645,
            "upload_time": "2024-06-11T22:39:48",
            "upload_time_iso_8601": "2024-06-11T22:39:48.854567Z",
            "url": "https://files.pythonhosted.org/packages/fc/6c/444ae68eb26592390df32a52241d17842f0f15df0c18c59d9468b2d0331b/psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b9622a76a78fe06241061d33b2bcee1b071a235e28ac7a08701d4e8d1b197431",
                "md5": "df0cea13211222a53c0e4bc6b664b610",
                "sha256": "5f8b50f69c4f3d58a93ca12f362555ab467d5d61316693ffa8ff4620c61e798d"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "df0cea13211222a53c0e4bc6b664b610",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2537070,
            "upload_time": "2024-06-11T22:39:50",
            "upload_time_iso_8601": "2024-06-11T22:39:50.445084Z",
            "url": "https://files.pythonhosted.org/packages/b9/62/2a76a78fe06241061d33b2bcee1b071a235e28ac7a08701d4e8d1b197431/psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "19106920e1667165d72f89a78c2346349aae9ac1e0b61c4e65bdcbaa9ecdcc6e",
                "md5": "a5763f404e6a6a84706f954f6ed9e7e9",
                "sha256": "27ba9c2c3bfb5418708013ad6aa517d141cef7ce79a871e89f19f416b8cbac69"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a5763f404e6a6a84706f954f6ed9e7e9",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2230378,
            "upload_time": "2024-06-11T22:39:52",
            "upload_time_iso_8601": "2024-06-11T22:39:52.214978Z",
            "url": "https://files.pythonhosted.org/packages/19/10/6920e1667165d72f89a78c2346349aae9ac1e0b61c4e65bdcbaa9ecdcc6e/psqlpy-0.6.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c759e7b500d156050697a70850b46c86ac9a6df9274314f3864a56c4c56922f8",
                "md5": "a4e30122221c2124af905602adae917f",
                "sha256": "7835163b897fdc5183f7df27f5c232078d2fe192e6b007c58e019254f1373fd9"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "a4e30122221c2124af905602adae917f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2425135,
            "upload_time": "2024-06-11T22:39:53",
            "upload_time_iso_8601": "2024-06-11T22:39:53.863713Z",
            "url": "https://files.pythonhosted.org/packages/c7/59/e7b500d156050697a70850b46c86ac9a6df9274314f3864a56c4c56922f8/psqlpy-0.6.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7c083c2994b4b01cf449925c2c1bb212be62a2ae78bded9bb39c9fcb34cd5859",
                "md5": "c3ae1b182ea87cd54a762736f0e13285",
                "sha256": "1a87e22fe411041147e9dc5999fa79e159a1a95d314f99f2e8e087289d541013"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3ae1b182ea87cd54a762736f0e13285",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 2397433,
            "upload_time": "2024-06-11T22:39:55",
            "upload_time_iso_8601": "2024-06-11T22:39:55.565338Z",
            "url": "https://files.pythonhosted.org/packages/7c/08/3c2994b4b01cf449925c2c1bb212be62a2ae78bded9bb39c9fcb34cd5859/psqlpy-0.6.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cca420aa7be3599c214f09e46eb5de6c561870e0a0b48e17e6b6d972589d8750",
                "md5": "f50d4c53c69f86f563d3a510fc0f7004",
                "sha256": "fd756551e29a6e7366dbb8dcd77c298d98581d48247c7a9cac67acb82e5af091"
            },
            "downloads": -1,
            "filename": "psqlpy-0.6.4.tar.gz",
            "has_sig": false,
            "md5_digest": "f50d4c53c69f86f563d3a510fc0f7004",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 124376,
            "upload_time": "2024-06-11T22:39:57",
            "upload_time_iso_8601": "2024-06-11T22:39:57.123331Z",
            "url": "https://files.pythonhosted.org/packages/cc/a4/20aa7be3599c214f09e46eb5de6c561870e0a0b48e17e6b6d972589d8750/psqlpy-0.6.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-11 22:39:57",
    "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.28159s