pysqlx-core


Namepysqlx-core JSON
Version 0.1.50 PyPI version JSON
download
home_page
SummaryA fast and async SQL database wrapper for Python, with support for MySQL, PostgreSQL, SQLite and MS SQL Server.
upload_time2023-10-29 15:49:14
maintainer
docs_urlNone
author
requires_python>=3.7
license
keywords async database sql faster pysqlx
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # __pysqlx-core__

[![cargo ci](https://github.com/carlos-rian/pysqlx-core/workflows/ci/badge.svg?branch=main)](https://github.com/carlos-rian/pysqlx-core/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)
[![pypi](https://img.shields.io/pypi/v/pysqlx-core.svg)](https://pypi.python.org/pypi/pysqlx-core)
[![versions](https://img.shields.io/pypi/pyversions/pysqlx-core.svg)](https://github.com/carlos-rian/pysqlx-core)
[![license](https://img.shields.io/github/license/carlos-rian/pysqlx-core.svg)](https://github.com/carlos-rian/pysqlx-core/blob/main/LICENSE)
[![downloads](https://static.pepy.tech/personalized-badge/pysqlx-core?period=total&units=international_system&left_color=grey&right_color=orange&left_text=Downloads)](https://pepy.tech/project/pysqlx-core)

pysqlx-core is an extremely fast Python library for communicating with various SQL databases.

This package provides the core functionality for [__PySQLX-Engine__](https://carlos-rian.github.io/pysqlx-engine/).

The package is currently a work in progress and subject to significant change.

[__pysqlx-core__](https://pypi.org/project/pysqlx-core/) will be a separate package, required by [__pysqlx-engine__](https://carlos-rian.github.io/pysqlx-engine/).

This package is written entirely in Rust and compiled as a Python library using PyO3 and PyO3-Asyncio.

This core is not so friendly, but maybe you want to use it, feel free to suggest improvements.

### Supported databases

* [__`SQLite`__](https://www.sqlite.org/index.html)
* [__`PostgreSQL`__](https://www.postgresql.org/)
* [__`MySQL`__](https://www.mysql.com/)
* [__`Microsoft SQL Server`__](https://www.microsoft.com/sql-server)

### Supported Python versions

* [__`Python >= 3.7`__](https://www.python.org/)

### Supported operating systems

* [__`Linux`__](https://pt.wikipedia.org/wiki/Linux)
* [__`MacOS`__](https://pt.wikipedia.org/wiki/Macos)
* [__`Windows`__](https://pt.wikipedia.org/wiki/Microsoft_Windows)


### Example of installation:

__PIP__

```bash
$ pip install pysqlx-core
```

__Poetry__

```bash
$ poetry add pysqlx-core
```

### Example of usage:

```python
import pysqlx_core
import asyncio

async def main(sql):
    # Create a connection 
    db = await pysqlx_core.new(uri="postgresql://postgres:postgrespw@localhost:49153")
    
    # Create a table
    await db.execute(sql="""
        CREATE TABLE IF NOT EXISTS test (
            id SERIAL PRIMARY KEY,
            name VARCHAR(255) NOT NULL
        );
        """
    )

    # Insert a row and return quantity rows affected
    await db.execute(sql="INSERT INTO test (name) VALUES ('Carlos');")

    # Select all rows, return a class PySQLXResult
    result = await db.query(sql="SELECT * FROM test;")
    # get first row
    row = result.get_first() # Dict[str, Any] 
    # get all rows
    rows = result.get_all() # List[Dict[str, Any]]
    #return the db types to Pydantic BaseModel
    types = result.get_model() # Dict[str, str] 

    # Select all rows, return how List[Dict[str, Any]]
    rows = await db.query_as_list(sql="SELECT * FROM test;")

    # close? no need 👌-> auto-close when finished programmer or go out of context..
    
asyncio.run(main())
```


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pysqlx-core",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "async,database,sql,faster,pysqlx",
    "author": "",
    "author_email": "Carlos Rian <crian.rian@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/d4/97/1eaa21641e0d5a0eac604c9eea23fe9da1e4be4636ec4994d3f73dcc68f2/pysqlx_core-0.1.50.tar.gz",
    "platform": null,
    "description": "# __pysqlx-core__\n\n[![cargo ci](https://github.com/carlos-rian/pysqlx-core/workflows/ci/badge.svg?branch=main)](https://github.com/carlos-rian/pysqlx-core/actions?query=event%3Apush+branch%3Amain+workflow%3Aci)\n[![pypi](https://img.shields.io/pypi/v/pysqlx-core.svg)](https://pypi.python.org/pypi/pysqlx-core)\n[![versions](https://img.shields.io/pypi/pyversions/pysqlx-core.svg)](https://github.com/carlos-rian/pysqlx-core)\n[![license](https://img.shields.io/github/license/carlos-rian/pysqlx-core.svg)](https://github.com/carlos-rian/pysqlx-core/blob/main/LICENSE)\n[![downloads](https://static.pepy.tech/personalized-badge/pysqlx-core?period=total&units=international_system&left_color=grey&right_color=orange&left_text=Downloads)](https://pepy.tech/project/pysqlx-core)\n\npysqlx-core is an extremely fast Python library for communicating with various SQL databases.\n\nThis package provides the core functionality for [__PySQLX-Engine__](https://carlos-rian.github.io/pysqlx-engine/).\n\nThe package is currently a work in progress and subject to significant change.\n\n[__pysqlx-core__](https://pypi.org/project/pysqlx-core/) will be a separate package, required by [__pysqlx-engine__](https://carlos-rian.github.io/pysqlx-engine/).\n\nThis package is written entirely in Rust and compiled as a Python library using PyO3 and PyO3-Asyncio.\n\nThis core is not so friendly, but maybe you want to use it, feel free to suggest improvements.\n\n### Supported databases\n\n* [__`SQLite`__](https://www.sqlite.org/index.html)\n* [__`PostgreSQL`__](https://www.postgresql.org/)\n* [__`MySQL`__](https://www.mysql.com/)\n* [__`Microsoft SQL Server`__](https://www.microsoft.com/sql-server)\n\n### Supported Python versions\n\n* [__`Python >= 3.7`__](https://www.python.org/)\n\n### Supported operating systems\n\n* [__`Linux`__](https://pt.wikipedia.org/wiki/Linux)\n* [__`MacOS`__](https://pt.wikipedia.org/wiki/Macos)\n* [__`Windows`__](https://pt.wikipedia.org/wiki/Microsoft_Windows)\n\n\n### Example of installation:\n\n__PIP__\n\n```bash\n$ pip install pysqlx-core\n```\n\n__Poetry__\n\n```bash\n$ poetry add pysqlx-core\n```\n\n### Example of usage:\n\n```python\nimport pysqlx_core\nimport asyncio\n\nasync def main(sql):\n    # Create a connection \n    db = await pysqlx_core.new(uri=\"postgresql://postgres:postgrespw@localhost:49153\")\n    \n    # Create a table\n    await db.execute(sql=\"\"\"\n        CREATE TABLE IF NOT EXISTS test (\n            id SERIAL PRIMARY KEY,\n            name VARCHAR(255) NOT NULL\n        );\n        \"\"\"\n    )\n\n    # Insert a row and return quantity rows affected\n    await db.execute(sql=\"INSERT INTO test (name) VALUES ('Carlos');\")\n\n    # Select all rows, return a class PySQLXResult\n    result = await db.query(sql=\"SELECT * FROM test;\")\n    # get first row\n    row = result.get_first() # Dict[str, Any] \n    # get all rows\n    rows = result.get_all() # List[Dict[str, Any]]\n    #return the db types to Pydantic BaseModel\n    types = result.get_model() # Dict[str, str] \n\n    # Select all rows, return how List[Dict[str, Any]]\n    rows = await db.query_as_list(sql=\"SELECT * FROM test;\")\n\n    # close? no need \ud83d\udc4c-> auto-close when finished programmer or go out of context..\n    \nasyncio.run(main())\n```\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A fast and async SQL database wrapper for Python, with support for MySQL, PostgreSQL, SQLite and MS SQL Server.",
    "version": "0.1.50",
    "project_urls": {
        "Homepage": "https://github.com/carlos-rian/pysqlx-core",
        "Source": "https://github.com/carlos-rian/pysqlx-core"
    },
    "split_keywords": [
        "async",
        "database",
        "sql",
        "faster",
        "pysqlx"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8471f8a25c096d84dce361e3c03ba3a140e046536120f85adcefd0ee09d6fdc5",
                "md5": "7ae04fb3dcfe412f73f05c4a6a1fb2b2",
                "sha256": "c5108d752caf04bc0713e2058d740197fb617683f9f72f7ef19f501cf262eef0"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-cp310-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7ae04fb3dcfe412f73f05c4a6a1fb2b2",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5463486,
            "upload_time": "2023-10-29T15:47:01",
            "upload_time_iso_8601": "2023-10-29T15:47:01.773852Z",
            "url": "https://files.pythonhosted.org/packages/84/71/f8a25c096d84dce361e3c03ba3a140e046536120f85adcefd0ee09d6fdc5/pysqlx_core-0.1.50-cp310-cp310-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2fb1350bef4c9385a7f99d01c9fa8c14a94819ecb7fb454b1b2135e41907a4ff",
                "md5": "379b3950afa9eac7447ea40b2751cd8f",
                "sha256": "81e02d89e6fd19d55fd46fd27d6b802496e6f7ac70cfcb871d6d214de1a35265"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "379b3950afa9eac7447ea40b2751cd8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5021064,
            "upload_time": "2023-10-29T15:47:04",
            "upload_time_iso_8601": "2023-10-29T15:47:04.221221Z",
            "url": "https://files.pythonhosted.org/packages/2f/b1/350bef4c9385a7f99d01c9fa8c14a94819ecb7fb454b1b2135e41907a4ff/pysqlx_core-0.1.50-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "83d17157c0d892d2f5729d2d7e84f5ed8448d5cb7cd2def8611ddce5a609f938",
                "md5": "46acb60fd608e4555aff95d5f1a85ae4",
                "sha256": "d04ef8a0f8fbc32b06745fdcff6e56a33f49738ae7be4704727d4824d4ded853"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "46acb60fd608e4555aff95d5f1a85ae4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5577495,
            "upload_time": "2023-10-29T15:47:06",
            "upload_time_iso_8601": "2023-10-29T15:47:06.169182Z",
            "url": "https://files.pythonhosted.org/packages/83/d1/7157c0d892d2f5729d2d7e84f5ed8448d5cb7cd2def8611ddce5a609f938/pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73c163a2183c48b88fa2f60eafee75d603d95e31161b9f1b7f700cd360409a6f",
                "md5": "c059b2bdb33196f5a8cf722675dc7f94",
                "sha256": "3a845a7f8b910f4c066c4fbd5b1e15788496c50565b5611ab2994ee005791476"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "c059b2bdb33196f5a8cf722675dc7f94",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5562231,
            "upload_time": "2023-10-29T15:47:08",
            "upload_time_iso_8601": "2023-10-29T15:47:08.237833Z",
            "url": "https://files.pythonhosted.org/packages/73/c1/63a2183c48b88fa2f60eafee75d603d95e31161b9f1b7f700cd360409a6f/pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c22b5e489af1828c586394534f00f27552b50bd8157aa6792e7644f30eeaa07",
                "md5": "624301067b53fabbd9aed1941cbf88a9",
                "sha256": "def9b3bcec9dea514e5158860e114883bbd67a771cc631dcb235f6cdb1f35f70"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "624301067b53fabbd9aed1941cbf88a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5869382,
            "upload_time": "2023-10-29T15:47:10",
            "upload_time_iso_8601": "2023-10-29T15:47:10.108990Z",
            "url": "https://files.pythonhosted.org/packages/1c/22/b5e489af1828c586394534f00f27552b50bd8157aa6792e7644f30eeaa07/pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "160a2d2b9ea658176ab58b1855259d65eaf372e6c29fdc351b9db4a1c782ed09",
                "md5": "13fe850cfe1c7ff1851c0d12dfce2972",
                "sha256": "7ac19e284f9769d38397e362d354d2406e1e156b4d0b0448a01f66c675a07f22"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "13fe850cfe1c7ff1851c0d12dfce2972",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5840079,
            "upload_time": "2023-10-29T15:47:12",
            "upload_time_iso_8601": "2023-10-29T15:47:12.074514Z",
            "url": "https://files.pythonhosted.org/packages/16/0a/2d2b9ea658176ab58b1855259d65eaf372e6c29fdc351b9db4a1c782ed09/pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "614699d0be0f7f70f3be83e38ccf61ec2857278982a9d85840c9e6d9659fab4b",
                "md5": "05c196b2912570a304af191b3601219d",
                "sha256": "00411e2eebdc3470fa2bb276bb4e7d4f0c89cb18f4bc785f70f4a5371a91e710"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "05c196b2912570a304af191b3601219d",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 6490578,
            "upload_time": "2023-10-29T15:47:14",
            "upload_time_iso_8601": "2023-10-29T15:47:14.065223Z",
            "url": "https://files.pythonhosted.org/packages/61/46/99d0be0f7f70f3be83e38ccf61ec2857278982a9d85840c9e6d9659fab4b/pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "958ae0cf6b35c11c4b76b1d0202d0184bf763084fb5b43e699206eea66867022",
                "md5": "b5d8f4cf3771311f5662ae8966993cde",
                "sha256": "ed826bcde2d5974e6162084cfc72367fdc5fce855cd8fbc6c903394bc069b429"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b5d8f4cf3771311f5662ae8966993cde",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5819582,
            "upload_time": "2023-10-29T15:47:16",
            "upload_time_iso_8601": "2023-10-29T15:47:16.044741Z",
            "url": "https://files.pythonhosted.org/packages/95/8a/e0cf6b35c11c4b76b1d0202d0184bf763084fb5b43e699206eea66867022/pysqlx_core-0.1.50-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8507e2df4d8492e48e01cb52f1cdbce7dd8b36d3ff3ea6fa0701576ff7f04b66",
                "md5": "301f13cea605eae7a8d9aa96bc3d131b",
                "sha256": "910e85e8ebb601d69d5535dd64ff0fd2e0c3c6eaab6765573608c2d2c6387264"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "301f13cea605eae7a8d9aa96bc3d131b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5884410,
            "upload_time": "2023-10-29T15:47:17",
            "upload_time_iso_8601": "2023-10-29T15:47:17.843262Z",
            "url": "https://files.pythonhosted.org/packages/85/07/e2df4d8492e48e01cb52f1cdbce7dd8b36d3ff3ea6fa0701576ff7f04b66/pysqlx_core-0.1.50-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3b7d8ac0401b269800e74c811c6835ec966b6d50a4fc116d5e76fba75e52eeba",
                "md5": "262965f927cea625488961abbc04a1a7",
                "sha256": "39ad2be8b43e7c714b22a948d119f1844fb45cf262d749314b396aff7237cd6f"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "262965f927cea625488961abbc04a1a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 5993369,
            "upload_time": "2023-10-29T15:47:20",
            "upload_time_iso_8601": "2023-10-29T15:47:20.067945Z",
            "url": "https://files.pythonhosted.org/packages/3b/7d/8ac0401b269800e74c811c6835ec966b6d50a4fc116d5e76fba75e52eeba/pysqlx_core-0.1.50-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "511d4e75e0f906ca6e34da9b909f549d03d7f222c4ba2415bbd64901d9fac3e9",
                "md5": "1a59c17d31ac4a52c354a6ba688d3596",
                "sha256": "56467cddfdfb98a0337499602d42f84ff4dea173f0b09e4ade200ac70b8e3bc4"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-none-win32.whl",
            "has_sig": false,
            "md5_digest": "1a59c17d31ac4a52c354a6ba688d3596",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3545915,
            "upload_time": "2023-10-29T15:47:21",
            "upload_time_iso_8601": "2023-10-29T15:47:21.855831Z",
            "url": "https://files.pythonhosted.org/packages/51/1d/4e75e0f906ca6e34da9b909f549d03d7f222c4ba2415bbd64901d9fac3e9/pysqlx_core-0.1.50-cp310-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2df819bb14b1027508b33bfea531adea885e5dd170c8addf7d40b369af24afe2",
                "md5": "ec1ca78740b5d3aabfc814764141f3b0",
                "sha256": "3dfa86455fb27e1775c7d32ffd4034c403018fbfeab5228dcf6350ffe68eddf7"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp310-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ec1ca78740b5d3aabfc814764141f3b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3961927,
            "upload_time": "2023-10-29T15:47:23",
            "upload_time_iso_8601": "2023-10-29T15:47:23.764659Z",
            "url": "https://files.pythonhosted.org/packages/2d/f8/19bb14b1027508b33bfea531adea885e5dd170c8addf7d40b369af24afe2/pysqlx_core-0.1.50-cp310-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb600bb0adc26be5af715f08287394096d91bd01b73927ded050cb9fd160e93c",
                "md5": "dc0e51203c1104474ebe51484cf701f6",
                "sha256": "d4e9c87b225d866ac93274cfd16fb8fd195f84f0775f81fb6762630128f3fdcd"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-cp311-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc0e51203c1104474ebe51484cf701f6",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5463458,
            "upload_time": "2023-10-29T15:47:25",
            "upload_time_iso_8601": "2023-10-29T15:47:25.848543Z",
            "url": "https://files.pythonhosted.org/packages/fb/60/0bb0adc26be5af715f08287394096d91bd01b73927ded050cb9fd160e93c/pysqlx_core-0.1.50-cp311-cp311-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "849a6634eaab7ea88be2490670932c880f95b9d468dbc4f39a012312c2484904",
                "md5": "9201beeb1fc86b581f4b6025d3ba7e9d",
                "sha256": "4d39376c52173ef6e8856d3f4a6fd1ee08c39cc78c08c305df07fd1ad586b551"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "9201beeb1fc86b581f4b6025d3ba7e9d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5021109,
            "upload_time": "2023-10-29T15:47:27",
            "upload_time_iso_8601": "2023-10-29T15:47:27.982563Z",
            "url": "https://files.pythonhosted.org/packages/84/9a/6634eaab7ea88be2490670932c880f95b9d468dbc4f39a012312c2484904/pysqlx_core-0.1.50-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cae24a0a38b92352e2ee29531c1eebce4f809039d4cf5d4035c537a796836a38",
                "md5": "510102f28d7795131ee9bb36e522e007",
                "sha256": "85c73e2b589efe1388dd8e93cc6884da73ee0641db5fb7168c76a10b0b38b87c"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "510102f28d7795131ee9bb36e522e007",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5577538,
            "upload_time": "2023-10-29T15:47:29",
            "upload_time_iso_8601": "2023-10-29T15:47:29.916809Z",
            "url": "https://files.pythonhosted.org/packages/ca/e2/4a0a38b92352e2ee29531c1eebce4f809039d4cf5d4035c537a796836a38/pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b6ae251e125d47e72eb29060ea2d53146a2617a746f2bbebfb8dffc718781e3",
                "md5": "88e5c59d4729ab4606fbf9f9531f0a23",
                "sha256": "7b3725cd71b04da7ae2c5fd92fccf106ee8fcb7fcc0f2f4cc3bc621ee4ef674d"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "88e5c59d4729ab4606fbf9f9531f0a23",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5562236,
            "upload_time": "2023-10-29T15:47:31",
            "upload_time_iso_8601": "2023-10-29T15:47:31.929836Z",
            "url": "https://files.pythonhosted.org/packages/5b/6a/e251e125d47e72eb29060ea2d53146a2617a746f2bbebfb8dffc718781e3/pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dd6fea887b7e4c34f4e2f1c3c96dc852b59ea7f7c41aba4bb3eb73562c5cd439",
                "md5": "c752116db3db78d1be9c07e7088811fe",
                "sha256": "c153b5aca888be46d8511badbb8bc5e498e7bfa00a432824037f5e45d80bbbf4"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c752116db3db78d1be9c07e7088811fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5869383,
            "upload_time": "2023-10-29T15:47:33",
            "upload_time_iso_8601": "2023-10-29T15:47:33.470886Z",
            "url": "https://files.pythonhosted.org/packages/dd/6f/ea887b7e4c34f4e2f1c3c96dc852b59ea7f7c41aba4bb3eb73562c5cd439/pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37308bd66961c812f6939614227c0d3d717dd5fda0627154222cd0bfca7ef64a",
                "md5": "265f9e8cff92abf790ce696222a58f99",
                "sha256": "b95bbafc36876f5ef90d8c11eefe8b33ddf6f52fa3ec87296313173837864451"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "265f9e8cff92abf790ce696222a58f99",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5840076,
            "upload_time": "2023-10-29T15:47:35",
            "upload_time_iso_8601": "2023-10-29T15:47:35.449546Z",
            "url": "https://files.pythonhosted.org/packages/37/30/8bd66961c812f6939614227c0d3d717dd5fda0627154222cd0bfca7ef64a/pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bc26540176af482fc066174da483e9c5f237259c2f0644702adbb0fd417e07e",
                "md5": "e776b17815c6ba7a5f6282b7a6d0ef36",
                "sha256": "acb384e4fa2b34d87fd0f2eccfa2e451cd955c3b7f06633c500c37366fb1a50d"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e776b17815c6ba7a5f6282b7a6d0ef36",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 6490584,
            "upload_time": "2023-10-29T15:47:37",
            "upload_time_iso_8601": "2023-10-29T15:47:37.198047Z",
            "url": "https://files.pythonhosted.org/packages/6b/c2/6540176af482fc066174da483e9c5f237259c2f0644702adbb0fd417e07e/pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "39ba66f5da87a49baa1d00efa37c19feef3d2ae09791cff3cb9d99d41ef7cc02",
                "md5": "b34f0382d5f45df5772375fe9dfd6ff7",
                "sha256": "cb3467b3dedc584ebe633689d7d72b8a48b8de7b9d04a8537cb0a41c7f35b89c"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b34f0382d5f45df5772375fe9dfd6ff7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5819291,
            "upload_time": "2023-10-29T15:47:39",
            "upload_time_iso_8601": "2023-10-29T15:47:39.268651Z",
            "url": "https://files.pythonhosted.org/packages/39/ba/66f5da87a49baa1d00efa37c19feef3d2ae09791cff3cb9d99d41ef7cc02/pysqlx_core-0.1.50-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dda07dc37de6121416ea092b7ac9e7356aa551f28faf9169d99f02fb315c94d6",
                "md5": "0bc621e79ddded4656a2f54ed3019acb",
                "sha256": "78526566857d7cf1de82484c8312eb5455c5abed90925708ea215b81e9cf7d22"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0bc621e79ddded4656a2f54ed3019acb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5884444,
            "upload_time": "2023-10-29T15:47:41",
            "upload_time_iso_8601": "2023-10-29T15:47:41.016971Z",
            "url": "https://files.pythonhosted.org/packages/dd/a0/7dc37de6121416ea092b7ac9e7356aa551f28faf9169d99f02fb315c94d6/pysqlx_core-0.1.50-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5a479bfc4535c69ef9a72c4002debdb1d8e98333859a4ede6d48479d7645746",
                "md5": "0af86c52c5bdb53f1bf01d649e937a8f",
                "sha256": "c34621a87c7da4275581a83bb43a3a0632cbf425d3051041a8586981325a75e2"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0af86c52c5bdb53f1bf01d649e937a8f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 5993283,
            "upload_time": "2023-10-29T15:47:42",
            "upload_time_iso_8601": "2023-10-29T15:47:42.645810Z",
            "url": "https://files.pythonhosted.org/packages/f5/a4/79bfc4535c69ef9a72c4002debdb1d8e98333859a4ede6d48479d7645746/pysqlx_core-0.1.50-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5e487439b14152a7995b9e28a8274fb179ea6ca487e082542fdee5701fb3e69",
                "md5": "345b1f921078394cf3c156cd75e08817",
                "sha256": "d4cae2f5ebfa8edbc03ea9db4db245bd38de416cb89f6d1040ee4fb1f5b908ad"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-none-win32.whl",
            "has_sig": false,
            "md5_digest": "345b1f921078394cf3c156cd75e08817",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3545923,
            "upload_time": "2023-10-29T15:47:44",
            "upload_time_iso_8601": "2023-10-29T15:47:44.426944Z",
            "url": "https://files.pythonhosted.org/packages/f5/e4/87439b14152a7995b9e28a8274fb179ea6ca487e082542fdee5701fb3e69/pysqlx_core-0.1.50-cp311-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0719ab019675a1db5183120c921db2bc2536274f7f2f656bda889c2a20d639ac",
                "md5": "3264fcb7784b591984df795afcea7ea0",
                "sha256": "93b546a513624f88f7dc809e1545b00630b54770f373c40f341b1ec04ad2f09d"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp311-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3264fcb7784b591984df795afcea7ea0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3961872,
            "upload_time": "2023-10-29T15:47:46",
            "upload_time_iso_8601": "2023-10-29T15:47:46.670370Z",
            "url": "https://files.pythonhosted.org/packages/07/19/ab019675a1db5183120c921db2bc2536274f7f2f656bda889c2a20d639ac/pysqlx_core-0.1.50-cp311-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d34f3d062c5a7f60c2e3bade378f49da513168e0ddd386391a96eb8b95a16d25",
                "md5": "3d0ed376b266244faf9c9e592dfe5227",
                "sha256": "35ef41d4689456246861d010e5fb0a5d6b9032362119966aefb4b424c0b95625"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-cp312-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d0ed376b266244faf9c9e592dfe5227",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5460254,
            "upload_time": "2023-10-29T15:47:48",
            "upload_time_iso_8601": "2023-10-29T15:47:48.782247Z",
            "url": "https://files.pythonhosted.org/packages/d3/4f/3d062c5a7f60c2e3bade378f49da513168e0ddd386391a96eb8b95a16d25/pysqlx_core-0.1.50-cp312-cp312-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9543948f95e26580a1b58dc70db20ef30c51c926dde2f7bda26587e206b8907b",
                "md5": "872cde241247c0ff9c6311166a95d204",
                "sha256": "c49e3ee136854841da346c87a00ffbf0f7c750bdc54d0208e15e91e6a2749fce"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "872cde241247c0ff9c6311166a95d204",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5018304,
            "upload_time": "2023-10-29T15:47:50",
            "upload_time_iso_8601": "2023-10-29T15:47:50.445947Z",
            "url": "https://files.pythonhosted.org/packages/95/43/948f95e26580a1b58dc70db20ef30c51c926dde2f7bda26587e206b8907b/pysqlx_core-0.1.50-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e74b16f3a8367d3d18d0c4afaa4aff6d740b07451a12a432496725458881016d",
                "md5": "1fc34b356a80832cd84c40959554eb45",
                "sha256": "dec105ec29a040ae1b34a8fbb5df0f15055d46810e323a5f5397c8906757da37"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1fc34b356a80832cd84c40959554eb45",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5576196,
            "upload_time": "2023-10-29T15:47:51",
            "upload_time_iso_8601": "2023-10-29T15:47:51.957561Z",
            "url": "https://files.pythonhosted.org/packages/e7/4b/16f3a8367d3d18d0c4afaa4aff6d740b07451a12a432496725458881016d/pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20aedc18ddc62ceecdce4d8d4a5eae4b8f0046b032f368036cf4e91953c8a60e",
                "md5": "041c7bc32f37bd5c6584489762a36c97",
                "sha256": "2c5ca8239b95eb647ccc1347609d9b7c2bdfec1c6d54ec16fa78069f425ccafb"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "041c7bc32f37bd5c6584489762a36c97",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5562999,
            "upload_time": "2023-10-29T15:47:53",
            "upload_time_iso_8601": "2023-10-29T15:47:53.672503Z",
            "url": "https://files.pythonhosted.org/packages/20/ae/dc18ddc62ceecdce4d8d4a5eae4b8f0046b032f368036cf4e91953c8a60e/pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74841b92fa892511f0811583665adfa6aa89152f3f6c93e8a8edfa4902c93384",
                "md5": "dae90011259184d3595b009885696e2f",
                "sha256": "6abb8a57d4377ab7842d9d983d0d6ac2327aff5c1f8d1b69b7a4906f05f283ed"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dae90011259184d3595b009885696e2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5870947,
            "upload_time": "2023-10-29T15:47:55",
            "upload_time_iso_8601": "2023-10-29T15:47:55.697133Z",
            "url": "https://files.pythonhosted.org/packages/74/84/1b92fa892511f0811583665adfa6aa89152f3f6c93e8a8edfa4902c93384/pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45ae6771713eb2eb272a35f575cdac3013520de000ec30f0396bc985b9cbe15f",
                "md5": "b6948677367891380674631e9f41bfb7",
                "sha256": "a4295c92be0d0150782e7d56b089866e6d0170c2a5464d06cd6a9831e30e28f7"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b6948677367891380674631e9f41bfb7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5843533,
            "upload_time": "2023-10-29T15:47:57",
            "upload_time_iso_8601": "2023-10-29T15:47:57.684824Z",
            "url": "https://files.pythonhosted.org/packages/45/ae/6771713eb2eb272a35f575cdac3013520de000ec30f0396bc985b9cbe15f/pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d81abbf7db1463f0cd052a5051b69655d8252d338aadd914085fcb91283aef14",
                "md5": "335a807675df2997f68d8a5e992a4cf6",
                "sha256": "c85f1ddc8b29a249ae7e7bcc67d316350da00bdbcc7f3211ad273828671b01ae"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "335a807675df2997f68d8a5e992a4cf6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 6470000,
            "upload_time": "2023-10-29T15:47:59",
            "upload_time_iso_8601": "2023-10-29T15:47:59.641379Z",
            "url": "https://files.pythonhosted.org/packages/d8/1a/bbf7db1463f0cd052a5051b69655d8252d338aadd914085fcb91283aef14/pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5bce7d7cc99885a0152772768b435e10d96f482967a5b4a699b1a92101cf3d80",
                "md5": "3d6acb20635d4052e57e3e9e6c4da943",
                "sha256": "66dd2a9d1fe0e596166bf818edb317aba76dc12f6b5c7f6e86cb2d79bb8e5499"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3d6acb20635d4052e57e3e9e6c4da943",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5815425,
            "upload_time": "2023-10-29T15:48:01",
            "upload_time_iso_8601": "2023-10-29T15:48:01.819776Z",
            "url": "https://files.pythonhosted.org/packages/5b/ce/7d7cc99885a0152772768b435e10d96f482967a5b4a699b1a92101cf3d80/pysqlx_core-0.1.50-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21f6568c7682effc404e3984a97ea72c0aa78c6860660fbc08af57f8eff327e9",
                "md5": "3178429c18e35935903c364890f0a14d",
                "sha256": "b87eeca1522e827094d552dc6345a2abdc089c18c74d05a40cfddd691abb4109"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3178429c18e35935903c364890f0a14d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5890020,
            "upload_time": "2023-10-29T15:48:03",
            "upload_time_iso_8601": "2023-10-29T15:48:03.403337Z",
            "url": "https://files.pythonhosted.org/packages/21/f6/568c7682effc404e3984a97ea72c0aa78c6860660fbc08af57f8eff327e9/pysqlx_core-0.1.50-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0a01edf8d83b5343c07784e9de45fcaff9359fa665b2c6f118f2935a87bdcee",
                "md5": "a77ad8aae087df286d2ece2ce3a2f92b",
                "sha256": "b3d740460f36a423ee2d2d9baad78a0c8e2250c01215a8eb0d7b1617fa279a8e"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a77ad8aae087df286d2ece2ce3a2f92b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 5989966,
            "upload_time": "2023-10-29T15:48:05",
            "upload_time_iso_8601": "2023-10-29T15:48:05.478517Z",
            "url": "https://files.pythonhosted.org/packages/c0/a0/1edf8d83b5343c07784e9de45fcaff9359fa665b2c6f118f2935a87bdcee/pysqlx_core-0.1.50-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e2aec9b7702693c5593f5dda76da5c77cb5e387973ca5e3e775f25ac7f2cc1e",
                "md5": "96ce61f7ff571707f268a913dde87834",
                "sha256": "e6f59ac47a98e300481e356f992e45a45242a3e65785213a8ca9850d1e7b08da"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-none-win32.whl",
            "has_sig": false,
            "md5_digest": "96ce61f7ff571707f268a913dde87834",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3553477,
            "upload_time": "2023-10-29T15:48:07",
            "upload_time_iso_8601": "2023-10-29T15:48:07.203459Z",
            "url": "https://files.pythonhosted.org/packages/9e/2a/ec9b7702693c5593f5dda76da5c77cb5e387973ca5e3e775f25ac7f2cc1e/pysqlx_core-0.1.50-cp312-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfe09b913630df0718eb097c4581615d2e8bbf482503b758c0bfb1fdb6778d94",
                "md5": "f968f40648617350942237c9af326424",
                "sha256": "95c9dd1549d1a86780fa51743ac005d868c3f638458188ad9a3db7d2cb3d3e3a"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp312-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f968f40648617350942237c9af326424",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3967280,
            "upload_time": "2023-10-29T15:48:08",
            "upload_time_iso_8601": "2023-10-29T15:48:08.843380Z",
            "url": "https://files.pythonhosted.org/packages/cf/e0/9b913630df0718eb097c4581615d2e8bbf482503b758c0bfb1fdb6778d94/pysqlx_core-0.1.50-cp312-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9621662bdbb83bd59ddb0c556332cf76917846fd38f37dacafbbec5d30e54775",
                "md5": "a7a3c0b150b10ff399da009a772226f5",
                "sha256": "8120fb02bef36b7070b2fd5ad080229a428c187f9732477e9f52d1d78fe3aa7e"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-cp37m-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a7a3c0b150b10ff399da009a772226f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5464223,
            "upload_time": "2023-10-29T15:48:10",
            "upload_time_iso_8601": "2023-10-29T15:48:10.457583Z",
            "url": "https://files.pythonhosted.org/packages/96/21/662bdbb83bd59ddb0c556332cf76917846fd38f37dacafbbec5d30e54775/pysqlx_core-0.1.50-cp37-cp37m-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d91927f850d88839bd85f8eadeec5fa620f93b9282292ef2b99d8ee07f53d994",
                "md5": "0ed1825d7cee04e4e66bcf36bb8e0250",
                "sha256": "12f5d3a57189e01661bcbb977be291d0c4a4392043545558fe92fd78eb841ae0"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-cp37m-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0ed1825d7cee04e4e66bcf36bb8e0250",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5021512,
            "upload_time": "2023-10-29T15:48:12",
            "upload_time_iso_8601": "2023-10-29T15:48:12.254823Z",
            "url": "https://files.pythonhosted.org/packages/d9/19/27f850d88839bd85f8eadeec5fa620f93b9282292ef2b99d8ee07f53d994/pysqlx_core-0.1.50-cp37-cp37m-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9476091d6ba1052e8a2f79743b7239df4c0acc2b99f19fb90db393d4a7d7912a",
                "md5": "3ce06266628b53d4ddad47582b5dec1d",
                "sha256": "3ede181df57b82d271580507768887532a951b2d3ebeaa5934745d122ccb3f99"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3ce06266628b53d4ddad47582b5dec1d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5578600,
            "upload_time": "2023-10-29T15:48:13",
            "upload_time_iso_8601": "2023-10-29T15:48:13.967775Z",
            "url": "https://files.pythonhosted.org/packages/94/76/091d6ba1052e8a2f79743b7239df4c0acc2b99f19fb90db393d4a7d7912a/pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca68f64cc0c7005a74a6f8292daef11b643581008e602dbd047f32eefec01909",
                "md5": "eea02c8bf12fea3865bfb6d8de5c3844",
                "sha256": "5c6b2fdabf5be75b47b4bfa516a39d07caaa41e9c28bca0b7f9b7c79b105ef7b"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "eea02c8bf12fea3865bfb6d8de5c3844",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5563002,
            "upload_time": "2023-10-29T15:48:15",
            "upload_time_iso_8601": "2023-10-29T15:48:15.715153Z",
            "url": "https://files.pythonhosted.org/packages/ca/68/f64cc0c7005a74a6f8292daef11b643581008e602dbd047f32eefec01909/pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7c09444bacd58feefde9e6509b3946a2ca74f9156e9ff6a0bfb1525abb40d7e",
                "md5": "3f07f1da31b1fcc22921ce8ea7aaf452",
                "sha256": "ab9d637d7a2d85a34c3d955ea63a66d4c26331dcfb512fa2e05d6fd7405aab4a"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3f07f1da31b1fcc22921ce8ea7aaf452",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5869876,
            "upload_time": "2023-10-29T15:48:17",
            "upload_time_iso_8601": "2023-10-29T15:48:17.723248Z",
            "url": "https://files.pythonhosted.org/packages/f7/c0/9444bacd58feefde9e6509b3946a2ca74f9156e9ff6a0bfb1525abb40d7e/pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "29c85da570f56bc4f947aaf41b26601d6320822323f2b161afff10ed2bac9739",
                "md5": "011492ab10c118d703af1e8a1c9d52ff",
                "sha256": "abc70bd2eeb73791057245bdd6cd249066077b8de95ac9acd441432d62721a47"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "011492ab10c118d703af1e8a1c9d52ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5842850,
            "upload_time": "2023-10-29T15:48:19",
            "upload_time_iso_8601": "2023-10-29T15:48:19.789323Z",
            "url": "https://files.pythonhosted.org/packages/29/c8/5da570f56bc4f947aaf41b26601d6320822323f2b161afff10ed2bac9739/pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d706af6a349abf0204327c2217bfc6e65f3c27920777311fa71e86ca7db4c4c",
                "md5": "52e3419ef5ce1316b2cf2f653342137b",
                "sha256": "315bc7680d18c676be73b45a6e76cf24a6fe603811d379f5f690552cd68d0f4e"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "52e3419ef5ce1316b2cf2f653342137b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 6493981,
            "upload_time": "2023-10-29T15:48:21",
            "upload_time_iso_8601": "2023-10-29T15:48:21.489371Z",
            "url": "https://files.pythonhosted.org/packages/7d/70/6af6a349abf0204327c2217bfc6e65f3c27920777311fa71e86ca7db4c4c/pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8d43a8969482388de20b6f0cc03842ac56569badfbee3cf1da849577fa3e943",
                "md5": "1eee7ee3e35eff7f05b54158f69e0077",
                "sha256": "189d3b3e3a7a5b138e4d650d0e3e6e0a3ce2119f23aadfad1aed6e5963dcc772"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1eee7ee3e35eff7f05b54158f69e0077",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5820071,
            "upload_time": "2023-10-29T15:48:23",
            "upload_time_iso_8601": "2023-10-29T15:48:23.038748Z",
            "url": "https://files.pythonhosted.org/packages/f8/d4/3a8969482388de20b6f0cc03842ac56569badfbee3cf1da849577fa3e943/pysqlx_core-0.1.50-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "598992f5207d144f4ffd19c692b483f7d077ca83bf50cb0039fea5b100d2d009",
                "md5": "0d31e2b272ca4f60e6baa9c5d2d10442",
                "sha256": "2bb348a8b5fc2a68cef09abcff2f8a074a029d77e1141865be22f94600bea862"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0d31e2b272ca4f60e6baa9c5d2d10442",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5885352,
            "upload_time": "2023-10-29T15:48:25",
            "upload_time_iso_8601": "2023-10-29T15:48:25.093076Z",
            "url": "https://files.pythonhosted.org/packages/59/89/92f5207d144f4ffd19c692b483f7d077ca83bf50cb0039fea5b100d2d009/pysqlx_core-0.1.50-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "84db1c3ed12df90ab190ae3e52b73522509168c5e0d79c5064df1449f8501ed7",
                "md5": "51f4fc3e2832344f9f5d00d92acb4401",
                "sha256": "a006fa7db87a63ac0d54b4beff0ac174f1c62af9c57caeec685e83c75e5bee13"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51f4fc3e2832344f9f5d00d92acb4401",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 5993744,
            "upload_time": "2023-10-29T15:48:26",
            "upload_time_iso_8601": "2023-10-29T15:48:26.997885Z",
            "url": "https://files.pythonhosted.org/packages/84/db/1c3ed12df90ab190ae3e52b73522509168c5e0d79c5064df1449f8501ed7/pysqlx_core-0.1.50-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c531c3ab43749caf0d03b33b706eabfe133141d1cabdf4200e1a252fe99ac4e8",
                "md5": "1cca675b01932e9cd050e43fcebd7d3d",
                "sha256": "28191fa0de1bdc862d5534f264ed5ba9ff649adeec90fce1177c1f002a62b819"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-none-win32.whl",
            "has_sig": false,
            "md5_digest": "1cca675b01932e9cd050e43fcebd7d3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3546455,
            "upload_time": "2023-10-29T15:48:29",
            "upload_time_iso_8601": "2023-10-29T15:48:29.086102Z",
            "url": "https://files.pythonhosted.org/packages/c5/31/c3ab43749caf0d03b33b706eabfe133141d1cabdf4200e1a252fe99ac4e8/pysqlx_core-0.1.50-cp37-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ed6568b6bb538f7ac3ae8923b8e50c53e7d6a1a27adfa902600fb1467776449",
                "md5": "4990ecfca5c0a7a6e64fe1a74fce8958",
                "sha256": "7fb1b11d40864671b1d16a7c67a236cb11b26dd7c6dc46c281cf31b9b00f16e8"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp37-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4990ecfca5c0a7a6e64fe1a74fce8958",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3961964,
            "upload_time": "2023-10-29T15:48:30",
            "upload_time_iso_8601": "2023-10-29T15:48:30.600493Z",
            "url": "https://files.pythonhosted.org/packages/1e/d6/568b6bb538f7ac3ae8923b8e50c53e7d6a1a27adfa902600fb1467776449/pysqlx_core-0.1.50-cp37-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7567f0bfe9d2199fbf4b09fee4ed070e410dc4f216e99924feeeb1066fc1ae90",
                "md5": "0759b00f086b0d60f85ff326b3bc8776",
                "sha256": "69f28ebc76b07cf89d42f73c34f272ecf42e461aa464f550e822f60747d9a965"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-cp38-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0759b00f086b0d60f85ff326b3bc8776",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5464324,
            "upload_time": "2023-10-29T15:48:32",
            "upload_time_iso_8601": "2023-10-29T15:48:32.108651Z",
            "url": "https://files.pythonhosted.org/packages/75/67/f0bfe9d2199fbf4b09fee4ed070e410dc4f216e99924feeeb1066fc1ae90/pysqlx_core-0.1.50-cp38-cp38-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9498ae9518fa8f2d9528a1c2cb4a60232ad56559aadab7180440f2985b3b8ca6",
                "md5": "f4c45172b8d64cd44a194127779a5917",
                "sha256": "d257717ab78f13b1b5a9d9288cfbb1e4696c8020fe3ee51ea0917514b825a8f0"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "f4c45172b8d64cd44a194127779a5917",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5021771,
            "upload_time": "2023-10-29T15:48:34",
            "upload_time_iso_8601": "2023-10-29T15:48:34.229784Z",
            "url": "https://files.pythonhosted.org/packages/94/98/ae9518fa8f2d9528a1c2cb4a60232ad56559aadab7180440f2985b3b8ca6/pysqlx_core-0.1.50-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb27de12585e54c1ee7809bbe4292242fa1f0ee7bc8f7d546a9aa0368ef7c416",
                "md5": "010875bfa0497214bb6eb595acc442bb",
                "sha256": "6848d12899030d97c99620ee2d279800c25fee7a55741eb9f722f2aa3f8dc75f"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "010875bfa0497214bb6eb595acc442bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5578469,
            "upload_time": "2023-10-29T15:48:36",
            "upload_time_iso_8601": "2023-10-29T15:48:36.301444Z",
            "url": "https://files.pythonhosted.org/packages/fb/27/de12585e54c1ee7809bbe4292242fa1f0ee7bc8f7d546a9aa0368ef7c416/pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8686c3d129f656a3824927ed7884d280576122411514425b1c8172c975f69186",
                "md5": "8bfe39d4c59afa699c229a1076f556e1",
                "sha256": "6b4020e4dfd4edc9e995bcdb9ba220fd10fe05cdcff575565dc3f31caad7699f"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "8bfe39d4c59afa699c229a1076f556e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5562918,
            "upload_time": "2023-10-29T15:48:38",
            "upload_time_iso_8601": "2023-10-29T15:48:38.399475Z",
            "url": "https://files.pythonhosted.org/packages/86/86/c3d129f656a3824927ed7884d280576122411514425b1c8172c975f69186/pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0774659fb984bca5ab749f1bea0e2929c9269016fc25a7ffad648e36813ea4de",
                "md5": "608d9c55704d612daf50c6e527bb617c",
                "sha256": "9d9d0b1420709f5af7334486fbffd7e002c037aaac270f460e1305399885390b"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "608d9c55704d612daf50c6e527bb617c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5869900,
            "upload_time": "2023-10-29T15:48:40",
            "upload_time_iso_8601": "2023-10-29T15:48:40.170930Z",
            "url": "https://files.pythonhosted.org/packages/07/74/659fb984bca5ab749f1bea0e2929c9269016fc25a7ffad648e36813ea4de/pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "982d2f91c53ef28cfacc36744859f446a508f5043ef586faec094423824041e6",
                "md5": "e281bda20628653c738f8a74c7276879",
                "sha256": "5228f81a82e440842ec65597a0f9766945cd85990b83060dc0496a42a56bdd46"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e281bda20628653c738f8a74c7276879",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5840479,
            "upload_time": "2023-10-29T15:48:41",
            "upload_time_iso_8601": "2023-10-29T15:48:41.945625Z",
            "url": "https://files.pythonhosted.org/packages/98/2d/2f91c53ef28cfacc36744859f446a508f5043ef586faec094423824041e6/pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fcc313540ca147bc62cb58160972e9944c6a9e643faa60371b44b6cc238a1a9",
                "md5": "5d09dfb084d727eba940296331dcfc89",
                "sha256": "a4ff4487058d27cbac8051b78a97eff35b04b81e94bee5de95f50c054cf8169c"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5d09dfb084d727eba940296331dcfc89",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 6494108,
            "upload_time": "2023-10-29T15:48:43",
            "upload_time_iso_8601": "2023-10-29T15:48:43.712044Z",
            "url": "https://files.pythonhosted.org/packages/7f/cc/313540ca147bc62cb58160972e9944c6a9e643faa60371b44b6cc238a1a9/pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3db4b11c2850e01381b9a0b7a99063a1deb5cbd731305a4a569730614e623c76",
                "md5": "cd716845c0a3cbe5b35ea2cc3bcb77e7",
                "sha256": "7365e57947827268e2f8e097a8262c3f0cee87e6bb8618fa86b6441781bb3738"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd716845c0a3cbe5b35ea2cc3bcb77e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5820154,
            "upload_time": "2023-10-29T15:48:45",
            "upload_time_iso_8601": "2023-10-29T15:48:45.467248Z",
            "url": "https://files.pythonhosted.org/packages/3d/b4/b11c2850e01381b9a0b7a99063a1deb5cbd731305a4a569730614e623c76/pysqlx_core-0.1.50-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b49b7f674e57f575bb132baa515f8428ca8a504af6f7ebc8d5dfcf5190e3ee1",
                "md5": "fc51ecfc1715d93ee9c50dd9686114db",
                "sha256": "06f14ed5c7a25f2b39366c00f61f4dee87f89a0403222c7c20f0ce640b08a91a"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc51ecfc1715d93ee9c50dd9686114db",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5885480,
            "upload_time": "2023-10-29T15:48:47",
            "upload_time_iso_8601": "2023-10-29T15:48:47.285077Z",
            "url": "https://files.pythonhosted.org/packages/8b/49/b7f674e57f575bb132baa515f8428ca8a504af6f7ebc8d5dfcf5190e3ee1/pysqlx_core-0.1.50-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5ed7cb60ddfc4615d305a4ea878f5311e8d9baaf7fabd0b5c3b7b40520f8fb5d",
                "md5": "b3d28dc25ed162363714aa8e016b8629",
                "sha256": "399325ab709fbf1a155410aed10c8c51056b04cfa7e5b62dc5f150fcb78bb9de"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b3d28dc25ed162363714aa8e016b8629",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 5993608,
            "upload_time": "2023-10-29T15:48:48",
            "upload_time_iso_8601": "2023-10-29T15:48:48.962758Z",
            "url": "https://files.pythonhosted.org/packages/5e/d7/cb60ddfc4615d305a4ea878f5311e8d9baaf7fabd0b5c3b7b40520f8fb5d/pysqlx_core-0.1.50-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa5a53375f07d8faf4431d69b8cbb680e9e9d5e49ffc0b9f1a67e5ae812cbc52",
                "md5": "ab1fe6d4730f36c8ea62612c2486ba85",
                "sha256": "95469fd91c8be8d538a846210c2f9d36dbb5b69f4c8652b4adc6989ba37378f7"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-none-win32.whl",
            "has_sig": false,
            "md5_digest": "ab1fe6d4730f36c8ea62612c2486ba85",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3546460,
            "upload_time": "2023-10-29T15:48:50",
            "upload_time_iso_8601": "2023-10-29T15:48:50.628759Z",
            "url": "https://files.pythonhosted.org/packages/aa/5a/53375f07d8faf4431d69b8cbb680e9e9d5e49ffc0b9f1a67e5ae812cbc52/pysqlx_core-0.1.50-cp38-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2bdac42a32bca54b7e5396ccf3757121f8604f356932f4a9552bf1304e3c2772",
                "md5": "0e916d5f77d9a20ef684ed46d7c96e2b",
                "sha256": "77b1c6f5e6b9b557ba19935d1061d88afc8a91bc1186e253a48144325b10c300"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp38-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0e916d5f77d9a20ef684ed46d7c96e2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3962010,
            "upload_time": "2023-10-29T15:48:52",
            "upload_time_iso_8601": "2023-10-29T15:48:52.663764Z",
            "url": "https://files.pythonhosted.org/packages/2b/da/c42a32bca54b7e5396ccf3757121f8604f356932f4a9552bf1304e3c2772/pysqlx_core-0.1.50-cp38-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f94900d182643f2926fdb1b294a68d7a64dc91e5b7cf2740763f39bd66833e0d",
                "md5": "7cdd9095762baef4d59b58269c942ff6",
                "sha256": "ecbdc620ed8837bb5507677ef183ee8110109e20b5f371420c22e7d351e11a83"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-cp39-macosx_10_7_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7cdd9095762baef4d59b58269c942ff6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5463640,
            "upload_time": "2023-10-29T15:48:54",
            "upload_time_iso_8601": "2023-10-29T15:48:54.202525Z",
            "url": "https://files.pythonhosted.org/packages/f9/49/00d182643f2926fdb1b294a68d7a64dc91e5b7cf2740763f39bd66833e0d/pysqlx_core-0.1.50-cp39-cp39-macosx_10_7_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f3d51df7df1d03f61d7fb6c2205417fbe3d2317665488658cf390b33257731c",
                "md5": "b343152dc06ef62ce39ee98da6cf13d0",
                "sha256": "3117e2d92f4ccb35adfba6c5cb93e55384cc177e9d417c123b0ce65ca3a5ce54"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "b343152dc06ef62ce39ee98da6cf13d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5021757,
            "upload_time": "2023-10-29T15:48:56",
            "upload_time_iso_8601": "2023-10-29T15:48:56.132413Z",
            "url": "https://files.pythonhosted.org/packages/8f/3d/51df7df1d03f61d7fb6c2205417fbe3d2317665488658cf390b33257731c/pysqlx_core-0.1.50-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6bd9064f7bf630bd390803ff2ef7e729bf2df9347ce239755af55724545886bb",
                "md5": "fa010848362341d2ac1663eddbda5ef3",
                "sha256": "a19c4ab80601639464fa962c126ce1e8f49e41c505bd2011c0e9285f1131fbb9"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fa010848362341d2ac1663eddbda5ef3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5578105,
            "upload_time": "2023-10-29T15:48:58",
            "upload_time_iso_8601": "2023-10-29T15:48:58.043933Z",
            "url": "https://files.pythonhosted.org/packages/6b/d9/064f7bf630bd390803ff2ef7e729bf2df9347ce239755af55724545886bb/pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbdbb84c653f67aa5cc51ca266501e6ed9fba785a7a201859215654a36b669f3",
                "md5": "b1ee2ea578fa47ecbc45b2da06e44e96",
                "sha256": "7fd9aeea6cde88c2b33c74153f4d4cec3fd290392918cd508fd75561601eed1b"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "has_sig": false,
            "md5_digest": "b1ee2ea578fa47ecbc45b2da06e44e96",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5562621,
            "upload_time": "2023-10-29T15:48:59",
            "upload_time_iso_8601": "2023-10-29T15:48:59.734968Z",
            "url": "https://files.pythonhosted.org/packages/fb/db/b84c653f67aa5cc51ca266501e6ed9fba785a7a201859215654a36b669f3/pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "763c489fc20073d63be3e63cdca8ff83b4eac0eaf40c088ae9b19c8e85ae7396",
                "md5": "f67a9fccc7f22203fd81ebf957d7236b",
                "sha256": "c1f9fcd2ddc4212a54d7c589f0040acaf35692f8b431085e2729481e0734f07d"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f67a9fccc7f22203fd81ebf957d7236b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5869561,
            "upload_time": "2023-10-29T15:49:01",
            "upload_time_iso_8601": "2023-10-29T15:49:01.437757Z",
            "url": "https://files.pythonhosted.org/packages/76/3c/489fc20073d63be3e63cdca8ff83b4eac0eaf40c088ae9b19c8e85ae7396/pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ead62c8703199770933081127ac69f36d252cb58a07bbf53bc7060d2d32bde3",
                "md5": "2cdd5eb29fc348d7de9266421241d84f",
                "sha256": "925aceab9225ff05f115f824a26ed696465b7bc10c79c134871089d9f21f0c18"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "2cdd5eb29fc348d7de9266421241d84f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5842558,
            "upload_time": "2023-10-29T15:49:03",
            "upload_time_iso_8601": "2023-10-29T15:49:03.211583Z",
            "url": "https://files.pythonhosted.org/packages/1e/ad/62c8703199770933081127ac69f36d252cb58a07bbf53bc7060d2d32bde3/pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7110a4f569401b88e7dfd4e2e4ec329e317267de89270754e9d2f145a851e26e",
                "md5": "a3089a42738e5c218dffd6f20a65e4b8",
                "sha256": "5328f049edff09903704b7860ae98f218ef383a0261490ba85826bf3d4c38db6"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "a3089a42738e5c218dffd6f20a65e4b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 6491194,
            "upload_time": "2023-10-29T15:49:04",
            "upload_time_iso_8601": "2023-10-29T15:49:04.963299Z",
            "url": "https://files.pythonhosted.org/packages/71/10/a4f569401b88e7dfd4e2e4ec329e317267de89270754e9d2f145a851e26e/pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50b46cfb9c9954a020de4ac6f2cfcb4cced1d0bca1d94c52d3dfab5f98fef3f0",
                "md5": "d16014465a2db54b70dd2ac79a4e75ee",
                "sha256": "e8f33783974ede9867d0308992b85dcccf27cf811e4e1aee7c2693549176daa5"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d16014465a2db54b70dd2ac79a4e75ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5819816,
            "upload_time": "2023-10-29T15:49:06",
            "upload_time_iso_8601": "2023-10-29T15:49:06.556159Z",
            "url": "https://files.pythonhosted.org/packages/50/b4/6cfb9c9954a020de4ac6f2cfcb4cced1d0bca1d94c52d3dfab5f98fef3f0/pysqlx_core-0.1.50-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eef4281989f0c1eacbd8f9c4ff90f7014a007b858d7ef2ba1ed73f1f96a3be90",
                "md5": "bea0702e079d623662a7860d78940a1a",
                "sha256": "7b4e10d3901c9f5f2c26fb4aeee7419eaa1ba138fcb67d357ec698e22ea9d783"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bea0702e079d623662a7860d78940a1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5884643,
            "upload_time": "2023-10-29T15:49:08",
            "upload_time_iso_8601": "2023-10-29T15:49:08.327344Z",
            "url": "https://files.pythonhosted.org/packages/ee/f4/281989f0c1eacbd8f9c4ff90f7014a007b858d7ef2ba1ed73f1f96a3be90/pysqlx_core-0.1.50-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f906b9093699854f84b23badd2cd030a6b7989873204cd109661361d5ec01c9",
                "md5": "ae0899d4388b258e4a657cfc4a917064",
                "sha256": "ae295d61cbdb2717da61e71c88a078c90e2806028c92760bdfd5e1cb15b5294a"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ae0899d4388b258e4a657cfc4a917064",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 5993446,
            "upload_time": "2023-10-29T15:49:09",
            "upload_time_iso_8601": "2023-10-29T15:49:09.944199Z",
            "url": "https://files.pythonhosted.org/packages/9f/90/6b9093699854f84b23badd2cd030a6b7989873204cd109661361d5ec01c9/pysqlx_core-0.1.50-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04aeeb489266ee2c0f8d7fc8076bab375430d8a908eaffb8e81b2ec619d2dbf1",
                "md5": "100cf5e1a8e27030fb0322b6413c002a",
                "sha256": "71d5c0399838dd0eb2b097991bae89838c70c075b7b48b10ae14da1ceb49a99c"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-none-win32.whl",
            "has_sig": false,
            "md5_digest": "100cf5e1a8e27030fb0322b6413c002a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3546177,
            "upload_time": "2023-10-29T15:49:11",
            "upload_time_iso_8601": "2023-10-29T15:49:11.679688Z",
            "url": "https://files.pythonhosted.org/packages/04/ae/eb489266ee2c0f8d7fc8076bab375430d8a908eaffb8e81b2ec619d2dbf1/pysqlx_core-0.1.50-cp39-none-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "324306a62f46261c0e35daba09f042bb7f86f8c979933c524e5a7757f2adb80d",
                "md5": "332183699ae7b293069aa1107d38b47a",
                "sha256": "3b27e15523634edcb3d485d39fd62b891497e72c1285f88c87531ab209118351"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50-cp39-none-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "332183699ae7b293069aa1107d38b47a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3961877,
            "upload_time": "2023-10-29T15:49:13",
            "upload_time_iso_8601": "2023-10-29T15:49:13.292304Z",
            "url": "https://files.pythonhosted.org/packages/32/43/06a62f46261c0e35daba09f042bb7f86f8c979933c524e5a7757f2adb80d/pysqlx_core-0.1.50-cp39-none-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4971eaa21641e0d5a0eac604c9eea23fe9da1e4be4636ec4994d3f73dcc68f2",
                "md5": "ee48d0729101dfd1e16687b1b07fbc8d",
                "sha256": "c9c8cf874e6109f953e88719ba977824a8f6cd2245e666ce2867e11183c76582"
            },
            "downloads": -1,
            "filename": "pysqlx_core-0.1.50.tar.gz",
            "has_sig": false,
            "md5_digest": "ee48d0729101dfd1e16687b1b07fbc8d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 200030,
            "upload_time": "2023-10-29T15:49:14",
            "upload_time_iso_8601": "2023-10-29T15:49:14.849528Z",
            "url": "https://files.pythonhosted.org/packages/d4/97/1eaa21641e0d5a0eac604c9eea23fe9da1e4be4636ec4994d3f73dcc68f2/pysqlx_core-0.1.50.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-29 15:49:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "carlos-rian",
    "github_project": "pysqlx-core",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pysqlx-core"
}
        
Elapsed time: 0.13176s