Name | pysqlx-core JSON |
Version |
0.2.3
JSON |
| download |
home_page | None |
Summary | A fast and async SQL database wrapper for Python, with support for MySQL, PostgreSQL, SQLite and MS SQL Server. |
upload_time | 2024-10-16 00:00:54 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.8 |
license | None |
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?color=%2334D058)](https://pypi.python.org/pypi/pysqlx-core)
[![versions](https://img.shields.io/pypi/pyversions/pysqlx-core.svg?color=%2334D058)](https://github.com/carlos-rian/pysqlx-core)
[![license](https://img.shields.io/github/license/carlos-rian/pysqlx-core.svg?color=%2334D058)](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=brightgreen&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.8`__](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
stmt = pysqlx_core.PySQLxStatement(
provider="postgresql",
sql="""
CREATE TABLE IF NOT EXISTS test (
id SERIAL PRIMARY KEY,
name VARCHAR(255) NOT NULL
);
""")
await db.execute(stmt=stmt)
# Insert a row and return quantity rows affected
insert = pysqlx_core.PySQLxStatement(
provider="postgresql",
sql="INSERT INTO test (name) VALUES (:name);",
params={"name": "Carlos"}
)
await db.execute(stmt=insert)
# can you see the sql and params pre builded
print("SQL:", insert.sql())
# output: INSERT INTO test (name) VALUES ($1);
print("PARAMS:", insert.params())
# output: ['Carlos']
# Select all rows, return a class PySQLxResponse
result = await db.query_typed(stmt=pysqlx_core.PySQLxStatement(
provider="postgresql",
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_types() # Dict[str, str]
# Select all rows, return how List[Dict[str, Any]]
rows = await db.query_all(pysqlx_core.PySQLxStatement(provider="postgresql", 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": null,
"name": "pysqlx-core",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.8",
"maintainer_email": null,
"keywords": "async, database, sql, faster, pysqlx",
"author": null,
"author_email": "Carlos Rian <crian.rian@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/b0/0c/06a11b27e2aded8b8735c7556b17f28a5ef2d4779d76bcc954f0cc4645b1/pysqlx_core-0.2.3.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?color=%2334D058)](https://pypi.python.org/pypi/pysqlx-core)\n[![versions](https://img.shields.io/pypi/pyversions/pysqlx-core.svg?color=%2334D058)](https://github.com/carlos-rian/pysqlx-core)\n[![license](https://img.shields.io/github/license/carlos-rian/pysqlx-core.svg?color=%2334D058)](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=brightgreen&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.8`__](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 stmt = pysqlx_core.PySQLxStatement(\n provider=\"postgresql\", \n sql=\"\"\"\n CREATE TABLE IF NOT EXISTS test (\n id SERIAL PRIMARY KEY,\n name VARCHAR(255) NOT NULL\n );\n \"\"\")\n await db.execute(stmt=stmt)\n\n # Insert a row and return quantity rows affected\n insert = pysqlx_core.PySQLxStatement(\n provider=\"postgresql\", \n sql=\"INSERT INTO test (name) VALUES (:name);\",\n params={\"name\": \"Carlos\"}\n )\n await db.execute(stmt=insert)\n\n # can you see the sql and params pre builded\n print(\"SQL:\", insert.sql())\n # output: INSERT INTO test (name) VALUES ($1);\n print(\"PARAMS:\", insert.params())\n # output: ['Carlos']\n\n # Select all rows, return a class PySQLxResponse\n result = await db.query_typed(stmt=pysqlx_core.PySQLxStatement(\n provider=\"postgresql\", \n sql=\"SELECT * FROM test;\"\n )\n )\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_types() # Dict[str, str] \n\n # Select all rows, return how List[Dict[str, Any]]\n rows = await db.query_all(pysqlx_core.PySQLxStatement(provider=\"postgresql\", 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": null,
"summary": "A fast and async SQL database wrapper for Python, with support for MySQL, PostgreSQL, SQLite and MS SQL Server.",
"version": "0.2.3",
"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": "3d4a1b386dd172ea962472b5c275087733cb0a29e550f90d9364a2c18661234f",
"md5": "af6e58b77d6591b7721538a373e2ae67",
"sha256": "7b9bebcb2d33cce04d7e6fd4a8c7a3e85859e87361331f1af9ec7b09fc6e1d13"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-cp310-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "af6e58b77d6591b7721538a373e2ae67",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5158391,
"upload_time": "2024-10-15T23:58:05",
"upload_time_iso_8601": "2024-10-15T23:58:05.347135Z",
"url": "https://files.pythonhosted.org/packages/3d/4a/1b386dd172ea962472b5c275087733cb0a29e550f90d9364a2c18661234f/pysqlx_core-0.2.3-cp310-cp310-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b31cbd4d3ed4b56342f9490123b3e6330576e32c36d81848807ab7b675b20cbe",
"md5": "24bf03694ccfbb399b7fadd9ea8c509b",
"sha256": "8e7aa6bfd0326bd5699165c223f412686e45d192b278a435d39116cba3462cf3"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "24bf03694ccfbb399b7fadd9ea8c509b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 4789197,
"upload_time": "2024-10-15T23:58:07",
"upload_time_iso_8601": "2024-10-15T23:58:07.996528Z",
"url": "https://files.pythonhosted.org/packages/b3/1c/bd4d3ed4b56342f9490123b3e6330576e32c36d81848807ab7b675b20cbe/pysqlx_core-0.2.3-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37e36bab4ab0cf7dbe9b236d786b48ef46acdf29e867c91230f46df1fe6ba65a",
"md5": "b1ac5904fa5833322d876cd6a7f575ce",
"sha256": "69c8f3545f2ddc8817ba548870fa2624a7e4edc44157485646c00f719271d53a"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b1ac5904fa5833322d876cd6a7f575ce",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5138205,
"upload_time": "2024-10-15T23:58:10",
"upload_time_iso_8601": "2024-10-15T23:58:10.439395Z",
"url": "https://files.pythonhosted.org/packages/37/e3/6bab4ab0cf7dbe9b236d786b48ef46acdf29e867c91230f46df1fe6ba65a/pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e81d568478569995d2ef0b7db1f0d981dde84a5cadc93bc34867ed7c45c28dd",
"md5": "8a57801ea2de31566d96e542dc794b2f",
"sha256": "7773aba157ddfc8f0af0ff86e673e34085da7765605e410da376feae5fb94925"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "8a57801ea2de31566d96e542dc794b2f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5143522,
"upload_time": "2024-10-15T23:58:12",
"upload_time_iso_8601": "2024-10-15T23:58:12.279141Z",
"url": "https://files.pythonhosted.org/packages/5e/81/d568478569995d2ef0b7db1f0d981dde84a5cadc93bc34867ed7c45c28dd/pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa461a8c956cac19de07ed90b2ed30e69e7d1b9a04242518e124fb91d656b3ed",
"md5": "2c8dbff14ef9c4edc6765fe9d0a0d713",
"sha256": "88bd82c2070ef19eabf4a82b65ee0ece6675619b497f153905ae7010521dfc92"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "2c8dbff14ef9c4edc6765fe9d0a0d713",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5501837,
"upload_time": "2024-10-15T23:58:14",
"upload_time_iso_8601": "2024-10-15T23:58:14.148130Z",
"url": "https://files.pythonhosted.org/packages/aa/46/1a8c956cac19de07ed90b2ed30e69e7d1b9a04242518e124fb91d656b3ed/pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4d55eb75e06822c998bd8b09e8fe14f52c043b925073eccf09ef019286a2634",
"md5": "21c257bf26440ccf306b3d95df95a6de",
"sha256": "f93fceb30f2c12d7505ef923889e892025e19fecfab1044a441dbe902ec019d7"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "21c257bf26440ccf306b3d95df95a6de",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5457663,
"upload_time": "2024-10-15T23:58:16",
"upload_time_iso_8601": "2024-10-15T23:58:16.590741Z",
"url": "https://files.pythonhosted.org/packages/b4/d5/5eb75e06822c998bd8b09e8fe14f52c043b925073eccf09ef019286a2634/pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "260d3c55dad9ee1eaebb50bce0eea4bbb13b0e0f1540c1ae895f107d850e44e1",
"md5": "46321396f350341f1741bcdec4d4d59d",
"sha256": "bc0e1363318c091ac50b70f329b4380925c7e232b9d521afe7be43c383d9bd37"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "46321396f350341f1741bcdec4d4d59d",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 6138161,
"upload_time": "2024-10-15T23:58:18",
"upload_time_iso_8601": "2024-10-15T23:58:18.579792Z",
"url": "https://files.pythonhosted.org/packages/26/0d/3c55dad9ee1eaebb50bce0eea4bbb13b0e0f1540c1ae895f107d850e44e1/pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7af6cfd8590bf2ae6f3582f4e97a7894768b6aba0deafd02a4d6ec789213c717",
"md5": "4a9095a16d393db628a739464931b5ac",
"sha256": "a265adae75f6b0e6bfd31c4db32c985407224526a748fe2388fd7db9836798aa"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "4a9095a16d393db628a739464931b5ac",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5435240,
"upload_time": "2024-10-15T23:58:20",
"upload_time_iso_8601": "2024-10-15T23:58:20.732504Z",
"url": "https://files.pythonhosted.org/packages/7a/f6/cfd8590bf2ae6f3582f4e97a7894768b6aba0deafd02a4d6ec789213c717/pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d08fd162a42c3205f740d898eeb5a5008ecaa469fbc30260ba778b6b7fd282f7",
"md5": "c4c49c74f5761041fa9161ae3b14f621",
"sha256": "e6fc5b7bb1d09305d01de43e791283a2d4128e64f76f56f32a973fa4144ab078"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-cp310-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "c4c49c74f5761041fa9161ae3b14f621",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5430644,
"upload_time": "2024-10-15T23:58:23",
"upload_time_iso_8601": "2024-10-15T23:58:23.194565Z",
"url": "https://files.pythonhosted.org/packages/d0/8f/d162a42c3205f740d898eeb5a5008ecaa469fbc30260ba778b6b7fd282f7/pysqlx_core-0.2.3-cp310-cp310-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "125ad7106ca20e3b63829a2568020a3a02b08c1cf081556ad1056895be81b17b",
"md5": "d4d9131980af14c8ae0855c84d86b34f",
"sha256": "b99447755cb9245a0f5c424e9cc6c17ab6a991fd80bdc07c22645201a91e3ed5"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "d4d9131980af14c8ae0855c84d86b34f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 5583025,
"upload_time": "2024-10-15T23:58:24",
"upload_time_iso_8601": "2024-10-15T23:58:24.849884Z",
"url": "https://files.pythonhosted.org/packages/12/5a/d7106ca20e3b63829a2568020a3a02b08c1cf081556ad1056895be81b17b/pysqlx_core-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "277f51e301a2005c5272871ea8a721c9b458c0b67ba7b616f520f2ae8abaf1de",
"md5": "24a74269109be03a9a0bfddfd27802bd",
"sha256": "38c8aeafab5c923b6efbe45e2f975b36ec6b31c89cf30728ab125db2828fbbf6"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-none-win32.whl",
"has_sig": false,
"md5_digest": "24a74269109be03a9a0bfddfd27802bd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 3657594,
"upload_time": "2024-10-15T23:58:27",
"upload_time_iso_8601": "2024-10-15T23:58:27.054599Z",
"url": "https://files.pythonhosted.org/packages/27/7f/51e301a2005c5272871ea8a721c9b458c0b67ba7b616f520f2ae8abaf1de/pysqlx_core-0.2.3-cp310-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "66437b6b8821d8d7865245580447d1d3e24ea174f80da664850397fbb459ec97",
"md5": "317a544c2ffbc2acf88e9af85c19ce00",
"sha256": "b4881c700873b221c2c9f43c14bad9026989447bc9e719db6602dfe64348fd1b"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp310-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "317a544c2ffbc2acf88e9af85c19ce00",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 4046424,
"upload_time": "2024-10-15T23:58:28",
"upload_time_iso_8601": "2024-10-15T23:58:28.718154Z",
"url": "https://files.pythonhosted.org/packages/66/43/7b6b8821d8d7865245580447d1d3e24ea174f80da664850397fbb459ec97/pysqlx_core-0.2.3-cp310-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a61b21f0ab62916f2d9c940de81f13a35a2c7ac18a79e50deaff2136902e653a",
"md5": "d504c5a5cc4e3f7cff22c7b46e973816",
"sha256": "86e04f6afb3235485618a36a0448fb66655634cecd929687fa99036acb03c255"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "d504c5a5cc4e3f7cff22c7b46e973816",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5158279,
"upload_time": "2024-10-15T23:58:30",
"upload_time_iso_8601": "2024-10-15T23:58:30.376745Z",
"url": "https://files.pythonhosted.org/packages/a6/1b/21f0ab62916f2d9c940de81f13a35a2c7ac18a79e50deaff2136902e653a/pysqlx_core-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6b33ec34eb79baffd0b7460943e1ec49b0eb1c7122fd51f8561c8912aa52c00",
"md5": "838f642d9da26a8a9371e32bbd6dccd6",
"sha256": "4b85b4686da1f258cd75bbdf9928ed5e631bc87729c97a61d370a6a57c47168f"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "838f642d9da26a8a9371e32bbd6dccd6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 4789397,
"upload_time": "2024-10-15T23:58:31",
"upload_time_iso_8601": "2024-10-15T23:58:31.986251Z",
"url": "https://files.pythonhosted.org/packages/d6/b3/3ec34eb79baffd0b7460943e1ec49b0eb1c7122fd51f8561c8912aa52c00/pysqlx_core-0.2.3-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5442160a4589038f409cab2d0d0c7f1ba80a84f243e919920a290e8bfb33cd6e",
"md5": "8b46f9d449308841ccc8aff0fbc4853d",
"sha256": "a357f9133870a370294c7299445810911a69d9e488d1861b49930bcedb56b73e"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "8b46f9d449308841ccc8aff0fbc4853d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5138081,
"upload_time": "2024-10-15T23:58:34",
"upload_time_iso_8601": "2024-10-15T23:58:34.173902Z",
"url": "https://files.pythonhosted.org/packages/54/42/160a4589038f409cab2d0d0c7f1ba80a84f243e919920a290e8bfb33cd6e/pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "37cbc2b0a42388d8e56d49cb75b04bf86452cc090c4d3d26f1cdb48fc2be7d02",
"md5": "1681c2722524670f8f9dad477ce78093",
"sha256": "062c8a86dd7331632603deda8491f535bd70b05f1118436450117b86e54ad178"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "1681c2722524670f8f9dad477ce78093",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5143359,
"upload_time": "2024-10-15T23:58:35",
"upload_time_iso_8601": "2024-10-15T23:58:35.861115Z",
"url": "https://files.pythonhosted.org/packages/37/cb/c2b0a42388d8e56d49cb75b04bf86452cc090c4d3d26f1cdb48fc2be7d02/pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef83fec3477cd700f0573a47933e1cdf23283f914feefdd6f81785473b5f9027",
"md5": "1a56bec63ad2192e85bf74e2e043405c",
"sha256": "352dc1a67703d7a3d1778e04f219a4bb5e08e5afd67e5f6143bf0fce78c4c949"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1a56bec63ad2192e85bf74e2e043405c",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5501604,
"upload_time": "2024-10-15T23:58:37",
"upload_time_iso_8601": "2024-10-15T23:58:37.825271Z",
"url": "https://files.pythonhosted.org/packages/ef/83/fec3477cd700f0573a47933e1cdf23283f914feefdd6f81785473b5f9027/pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af8d6f7650403c17305da593230dba8d7e1df5dbb7edc4845c694600f82fe44f",
"md5": "6512e68e5035cf5522840f6b1b9099a4",
"sha256": "9da9c73f0c0c48862af3841f9364fa264e9bdfb42e68ea686df1ef8689933049"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "6512e68e5035cf5522840f6b1b9099a4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5459117,
"upload_time": "2024-10-15T23:58:39",
"upload_time_iso_8601": "2024-10-15T23:58:39.538025Z",
"url": "https://files.pythonhosted.org/packages/af/8d/6f7650403c17305da593230dba8d7e1df5dbb7edc4845c694600f82fe44f/pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a51cd734f0f73db21a5fa9fe86728ac2d644fe61b7234d08799c32f3cbaa3c42",
"md5": "befec0c2460a4b41471c37fd8ac86a2f",
"sha256": "8b66627c948916c7dddcf89fa3bf780bd0d32089498ac350ad2d045cb6a251cd"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "befec0c2460a4b41471c37fd8ac86a2f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 6136586,
"upload_time": "2024-10-15T23:58:41",
"upload_time_iso_8601": "2024-10-15T23:58:41.739215Z",
"url": "https://files.pythonhosted.org/packages/a5/1c/d734f0f73db21a5fa9fe86728ac2d644fe61b7234d08799c32f3cbaa3c42/pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "19cce38095e4932cba4e241d3a96d632d0ba3f00c1d2f550acc6337e8fc26c17",
"md5": "9a40d192b8441da497b7abea46744e69",
"sha256": "f1286b9521199847e902a12a1c352aafc7c1c08d79f2ee56e7edbd066ac29da4"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "9a40d192b8441da497b7abea46744e69",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5434564,
"upload_time": "2024-10-15T23:58:43",
"upload_time_iso_8601": "2024-10-15T23:58:43.332362Z",
"url": "https://files.pythonhosted.org/packages/19/cc/e38095e4932cba4e241d3a96d632d0ba3f00c1d2f550acc6337e8fc26c17/pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d926828d6881ec3b509eafa2805af7f258ce44242cca92c3ee40b29b325e9224",
"md5": "89e95c711bff966fa7c75cd8d44527ff",
"sha256": "3df9d546b2dba37d21ca87d1ae63ec9eaaa6b4dae655627ebebec4522da508bc"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-cp311-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "89e95c711bff966fa7c75cd8d44527ff",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5430291,
"upload_time": "2024-10-15T23:58:45",
"upload_time_iso_8601": "2024-10-15T23:58:45.253936Z",
"url": "https://files.pythonhosted.org/packages/d9/26/828d6881ec3b509eafa2805af7f258ce44242cca92c3ee40b29b325e9224/pysqlx_core-0.2.3-cp311-cp311-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8dc82462432f402f6013a66442a46d79716acae145bb0e892ef9d987609455d7",
"md5": "b4f0d6d8e2ca47cc9920d3112a550ab6",
"sha256": "c46ed5059962179a299df6695c4149437dfdae8745eeb9ef5e2d6de2eba3c057"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "b4f0d6d8e2ca47cc9920d3112a550ab6",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 5582906,
"upload_time": "2024-10-15T23:58:47",
"upload_time_iso_8601": "2024-10-15T23:58:47.289381Z",
"url": "https://files.pythonhosted.org/packages/8d/c8/2462432f402f6013a66442a46d79716acae145bb0e892ef9d987609455d7/pysqlx_core-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ae843e758e2867e82e1ac39d956cb818f308edfc1f79b64365a5b07178066b41",
"md5": "38e5270d55473af8563ebd209af9aa1b",
"sha256": "58cee7bfd36665a7b49ce2cbb61691828c6b49720e0807cb575708e068cdba80"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-none-win32.whl",
"has_sig": false,
"md5_digest": "38e5270d55473af8563ebd209af9aa1b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 3657288,
"upload_time": "2024-10-15T23:58:48",
"upload_time_iso_8601": "2024-10-15T23:58:48.849961Z",
"url": "https://files.pythonhosted.org/packages/ae/84/3e758e2867e82e1ac39d956cb818f308edfc1f79b64365a5b07178066b41/pysqlx_core-0.2.3-cp311-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "113c9ba110e02308fe6cb2e767ec11eb577fc4d543c9ddb53ae32efb2970a817",
"md5": "205a6df940897f55796875197a93f7ce",
"sha256": "5d9fc8d0497c978b9d03ef544c63079e0cb2743200e90ef02f4f4da88f426f9e"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp311-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "205a6df940897f55796875197a93f7ce",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 4045855,
"upload_time": "2024-10-15T23:58:50",
"upload_time_iso_8601": "2024-10-15T23:58:50.489298Z",
"url": "https://files.pythonhosted.org/packages/11/3c/9ba110e02308fe6cb2e767ec11eb577fc4d543c9ddb53ae32efb2970a817/pysqlx_core-0.2.3-cp311-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cdf81cbcdc60c358085b5b2716a8611e695188884b72bd84a197f427692109f3",
"md5": "1600c125cd93916f2968052fbff9a785",
"sha256": "375513619817ed4b56a1122bc66ffd4473476ca1609ee4cdfbe33d2daa700767"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "1600c125cd93916f2968052fbff9a785",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5166617,
"upload_time": "2024-10-15T23:58:52",
"upload_time_iso_8601": "2024-10-15T23:58:52.125503Z",
"url": "https://files.pythonhosted.org/packages/cd/f8/1cbcdc60c358085b5b2716a8611e695188884b72bd84a197f427692109f3/pysqlx_core-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22a1716fca5b1009d4fbe87bacc453362c7a8e99b483f82981328330abaac3ca",
"md5": "f38291efd05c8745565be1277ac3f1bc",
"sha256": "57021ecc0c14cf3e79595afab7ff2aaf22fbc0ba9a4777508a95aea488a8d7cd"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f38291efd05c8745565be1277ac3f1bc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 4793759,
"upload_time": "2024-10-15T23:58:53",
"upload_time_iso_8601": "2024-10-15T23:58:53.738111Z",
"url": "https://files.pythonhosted.org/packages/22/a1/716fca5b1009d4fbe87bacc453362c7a8e99b483f82981328330abaac3ca/pysqlx_core-0.2.3-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "dd9597146d9d2d08a60299fc5513f16cbdbd829ab9cb47c1735b849ca20b7274",
"md5": "205838a8717f85a460cf7c774091f803",
"sha256": "76739dafbef49992152dbcc0d82ad1c62a94521133c041769607d31194a438a7"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "205838a8717f85a460cf7c774091f803",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5144846,
"upload_time": "2024-10-15T23:58:55",
"upload_time_iso_8601": "2024-10-15T23:58:55.433140Z",
"url": "https://files.pythonhosted.org/packages/dd/95/97146d9d2d08a60299fc5513f16cbdbd829ab9cb47c1735b849ca20b7274/pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5332f3f6acd10dd802c0938533acc48de384161db2c54634124e1918c0109de",
"md5": "15908408060c40f4e002c82f3b1529e2",
"sha256": "8b0599b9ce934a9712413daaf78250b0e65693e560e155bc6590b12d47bf3b82"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "15908408060c40f4e002c82f3b1529e2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5154242,
"upload_time": "2024-10-15T23:58:57",
"upload_time_iso_8601": "2024-10-15T23:58:57.185053Z",
"url": "https://files.pythonhosted.org/packages/e5/33/2f3f6acd10dd802c0938533acc48de384161db2c54634124e1918c0109de/pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "235ba53da9a113ddc5015226d2f51f3052e1b8b60207b0b74b03cc85a64d8905",
"md5": "cd98eb7f52db23e4bd1b5f5c4142d137",
"sha256": "a6e36d00a3c38c5ce1a4383d627b1d1b34f21556e33d90706d04bbd48a82092e"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "cd98eb7f52db23e4bd1b5f5c4142d137",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5505943,
"upload_time": "2024-10-15T23:58:58",
"upload_time_iso_8601": "2024-10-15T23:58:58.865319Z",
"url": "https://files.pythonhosted.org/packages/23/5b/a53da9a113ddc5015226d2f51f3052e1b8b60207b0b74b03cc85a64d8905/pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3cd7dae46e4e3d46239ac68adcf809ca77a3f76ddbd8b3aec2e28971d157b9b1",
"md5": "24a45d53fbac5168173232a38b7933b6",
"sha256": "b167ea5b22e0f971b8fd11448f585473e9c43fcaa8d77bc4041b6a77e7089cdf"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "24a45d53fbac5168173232a38b7933b6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5460710,
"upload_time": "2024-10-15T23:59:00",
"upload_time_iso_8601": "2024-10-15T23:59:00.941644Z",
"url": "https://files.pythonhosted.org/packages/3c/d7/dae46e4e3d46239ac68adcf809ca77a3f76ddbd8b3aec2e28971d157b9b1/pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68371b56b4da9b219b545e2a7c2f7608e217f6731896d64f82c6b2a5c90c81a7",
"md5": "e76621f0c188c942941bc0dcba1f87ac",
"sha256": "bab86bbc7842afd9fea2b8315bd3253d7ae30262456bc91a1e435eb120cdf743"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "e76621f0c188c942941bc0dcba1f87ac",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 6120778,
"upload_time": "2024-10-15T23:59:02",
"upload_time_iso_8601": "2024-10-15T23:59:02.737648Z",
"url": "https://files.pythonhosted.org/packages/68/37/1b56b4da9b219b545e2a7c2f7608e217f6731896d64f82c6b2a5c90c81a7/pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "aa830cb1c8ae4044d3651deba7f47a419e810a08b212705ecf45bb133da91099",
"md5": "05643c1adeacfc47ff0d5d476e5685a6",
"sha256": "c8bda9478168c2056e511d25d509294a1a4569c298a2ac38080d7e94701b5c44"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "05643c1adeacfc47ff0d5d476e5685a6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5445031,
"upload_time": "2024-10-15T23:59:04",
"upload_time_iso_8601": "2024-10-15T23:59:04.570461Z",
"url": "https://files.pythonhosted.org/packages/aa/83/0cb1c8ae4044d3651deba7f47a419e810a08b212705ecf45bb133da91099/pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "68cdbe0257ab783770cfbb4a52cf8cae99600ed42211a4fd375cdc6609b134d7",
"md5": "68d75dfb10562f27ab35f5250fe547dd",
"sha256": "9227c0ccee2d03dae03e5eefb6346ef94f1f816cb759ffbee75bb57ad563ca12"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-cp312-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "68d75dfb10562f27ab35f5250fe547dd",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5433240,
"upload_time": "2024-10-15T23:59:06",
"upload_time_iso_8601": "2024-10-15T23:59:06.625839Z",
"url": "https://files.pythonhosted.org/packages/68/cd/be0257ab783770cfbb4a52cf8cae99600ed42211a4fd375cdc6609b134d7/pysqlx_core-0.2.3-cp312-cp312-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "664d41e885f5b58118ffe3cdc3fbcc30e4d953a6e913c5e12f5c0351ddcaef8b",
"md5": "e9bd5905c9bec1e18dd10222fe66ee1a",
"sha256": "0339306e4c03b21009f010266f8ffa1f93c2a4b25bb70f737b7d08070584dd16"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "e9bd5905c9bec1e18dd10222fe66ee1a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 5588078,
"upload_time": "2024-10-15T23:59:08",
"upload_time_iso_8601": "2024-10-15T23:59:08.614295Z",
"url": "https://files.pythonhosted.org/packages/66/4d/41e885f5b58118ffe3cdc3fbcc30e4d953a6e913c5e12f5c0351ddcaef8b/pysqlx_core-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "874a069785a136878b5cbe5fa005a295491d9a8f1655b1503cec957d5b94e9d4",
"md5": "8f4b8c9e6921084f5aa1ac93c80cded7",
"sha256": "ac74ccdc5a71d8eca791a8796f3acc73f6b5fe36c7d3ed5d6b51b9def08d6295"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-none-win32.whl",
"has_sig": false,
"md5_digest": "8f4b8c9e6921084f5aa1ac93c80cded7",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 3664958,
"upload_time": "2024-10-15T23:59:10",
"upload_time_iso_8601": "2024-10-15T23:59:10.285849Z",
"url": "https://files.pythonhosted.org/packages/87/4a/069785a136878b5cbe5fa005a295491d9a8f1655b1503cec957d5b94e9d4/pysqlx_core-0.2.3-cp312-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2b115706cbaaa13374c166f9c8f3c0f51c3aa8fccf18aca19c14471a1b619ae",
"md5": "3dfd87d394f0a0a639e4c98db45b1b28",
"sha256": "bacb9935d20184490b85d165c965c859e6c09c5355b0bf0a9de73bb9ec4a2fa4"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp312-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "3dfd87d394f0a0a639e4c98db45b1b28",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 4058814,
"upload_time": "2024-10-15T23:59:12",
"upload_time_iso_8601": "2024-10-15T23:59:12.057716Z",
"url": "https://files.pythonhosted.org/packages/e2/b1/15706cbaaa13374c166f9c8f3c0f51c3aa8fccf18aca19c14471a1b619ae/pysqlx_core-0.2.3-cp312-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6a58d040a37548d32270dbeb4c3082b5b09708f5019b8fafab7d88c43f0cbcc",
"md5": "0b4109d487eda7f8949214982c6b9168",
"sha256": "ded92261cbe3c792ae1bae5f3024fb22ef8ddc59bcb8f38b71d69b5b89533053"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "0b4109d487eda7f8949214982c6b9168",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5165973,
"upload_time": "2024-10-15T23:59:14",
"upload_time_iso_8601": "2024-10-15T23:59:14.156904Z",
"url": "https://files.pythonhosted.org/packages/a6/a5/8d040a37548d32270dbeb4c3082b5b09708f5019b8fafab7d88c43f0cbcc/pysqlx_core-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "317b76ac6363a95c8ef3f9ac582d1a5d209b0e469160beadf8f2b8e47cdcf02b",
"md5": "030524a106dc85774f9a00b1ef4642ff",
"sha256": "0751b521ee413b569321d18fa97e8d1512a3447e2eeee29c29211258fd19cdb2"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "030524a106dc85774f9a00b1ef4642ff",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 4794025,
"upload_time": "2024-10-15T23:59:15",
"upload_time_iso_8601": "2024-10-15T23:59:15.771733Z",
"url": "https://files.pythonhosted.org/packages/31/7b/76ac6363a95c8ef3f9ac582d1a5d209b0e469160beadf8f2b8e47cdcf02b/pysqlx_core-0.2.3-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9e7409e616118ea450690b07a0f39b36fb3fc8388ec1719cdf076528b570da8",
"md5": "a8019cffa62ba2f8655391fd22c7ce05",
"sha256": "03247e2692feeabb833c46c34df5d5b9ec56cec7b504aee88db3ccc9f3b077d6"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a8019cffa62ba2f8655391fd22c7ce05",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5144508,
"upload_time": "2024-10-15T23:59:17",
"upload_time_iso_8601": "2024-10-15T23:59:17.467519Z",
"url": "https://files.pythonhosted.org/packages/d9/e7/409e616118ea450690b07a0f39b36fb3fc8388ec1719cdf076528b570da8/pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "95df9bdedf499e2a79330e81e9e1a3f41d518294dfd51872636f739848a7c12d",
"md5": "db33f8a370967147d6fd6007a380fed2",
"sha256": "57ea4246e6ca898aacf3ce861df1dd6c8a22a1fd66cc7f84145ba2ca46332448"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "db33f8a370967147d6fd6007a380fed2",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5153638,
"upload_time": "2024-10-15T23:59:19",
"upload_time_iso_8601": "2024-10-15T23:59:19.750660Z",
"url": "https://files.pythonhosted.org/packages/95/df/9bdedf499e2a79330e81e9e1a3f41d518294dfd51872636f739848a7c12d/pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a0eac0bf6d6db5aedff5d07f9fc92b89f8427d318c8bcb3ddf2037d071b1516a",
"md5": "919a29272ca38c36ab9a19394b5fb272",
"sha256": "55465de7ec917f2ccc6c2d2fe4deae7b90cb566cfad1fba11b52f13bcc9e1b96"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "919a29272ca38c36ab9a19394b5fb272",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5505666,
"upload_time": "2024-10-15T23:59:22",
"upload_time_iso_8601": "2024-10-15T23:59:22.004531Z",
"url": "https://files.pythonhosted.org/packages/a0/ea/c0bf6d6db5aedff5d07f9fc92b89f8427d318c8bcb3ddf2037d071b1516a/pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "daace50854ffb3c7bdd30cc0985ad7e64ffbadda3e8938834f73618a8c0db252",
"md5": "2f839e52b991586ca7e906ba30ca1747",
"sha256": "6b8bfce176665319d7e0ba036079a6101b5573c829b043f7e27734f42fbe1ce3"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "2f839e52b991586ca7e906ba30ca1747",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5460042,
"upload_time": "2024-10-15T23:59:24",
"upload_time_iso_8601": "2024-10-15T23:59:24.265614Z",
"url": "https://files.pythonhosted.org/packages/da/ac/e50854ffb3c7bdd30cc0985ad7e64ffbadda3e8938834f73618a8c0db252/pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1001386d362c423ea37bcd55587fd667bc51acf3c720dfc83c27c06a4997d3d7",
"md5": "c513ac0278ac6645aa0e5d91a73c9087",
"sha256": "a359235df85f7cab2591f373d5d475f442932ef643485e14af0fc27314ac19ff"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c513ac0278ac6645aa0e5d91a73c9087",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 6120914,
"upload_time": "2024-10-15T23:59:26",
"upload_time_iso_8601": "2024-10-15T23:59:26.037011Z",
"url": "https://files.pythonhosted.org/packages/10/01/386d362c423ea37bcd55587fd667bc51acf3c720dfc83c27c06a4997d3d7/pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebaf27f3c46e91be9c9e73e86ac6b902a6f01ec68a0c42ee84c4acf0d44eb4ec",
"md5": "afb0d2e1fd2f1df3b414fe18acd0ce2c",
"sha256": "66438532f37f1b65527e448f7cc0556fff0ee5cc65c651969580870025557bd8"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "afb0d2e1fd2f1df3b414fe18acd0ce2c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5444584,
"upload_time": "2024-10-15T23:59:28",
"upload_time_iso_8601": "2024-10-15T23:59:28.379959Z",
"url": "https://files.pythonhosted.org/packages/eb/af/27f3c46e91be9c9e73e86ac6b902a6f01ec68a0c42ee84c4acf0d44eb4ec/pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "641489a1d19a12792e62c5fa411c03e6e63e03ad8e19c64234bf8cb1177aaed3",
"md5": "2acd08d900a5e122ce07e43ab807f2a8",
"sha256": "9b2fd794dd264414b875f4235fca0fc8542091cf55787cef584d2b985b20d447"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-cp313-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "2acd08d900a5e122ce07e43ab807f2a8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5433063,
"upload_time": "2024-10-15T23:59:30",
"upload_time_iso_8601": "2024-10-15T23:59:30.743522Z",
"url": "https://files.pythonhosted.org/packages/64/14/89a1d19a12792e62c5fa411c03e6e63e03ad8e19c64234bf8cb1177aaed3/pysqlx_core-0.2.3-cp313-cp313-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3dc029effc89134c785bc1d3f09808c313b79253c941c3ef19cf9f6c46e0c998",
"md5": "a8dc56b915783d2e807801c54fc6e303",
"sha256": "f117974fa23e5252312ecc361877d58e43a8e8f8afaf59bffdb8ad42c4251814"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-cp313-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "a8dc56b915783d2e807801c54fc6e303",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 5587669,
"upload_time": "2024-10-15T23:59:32",
"upload_time_iso_8601": "2024-10-15T23:59:32.513863Z",
"url": "https://files.pythonhosted.org/packages/3d/c0/29effc89134c785bc1d3f09808c313b79253c941c3ef19cf9f6c46e0c998/pysqlx_core-0.2.3-cp313-cp313-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85e9e3281cd34100f9d8ecd94d6fa21a35b99d3aa1b17363deeec14c46f3f7b9",
"md5": "42cd29839721d8cc102d02304d4f021e",
"sha256": "a256608016c2d334c6b21c64f52ad4cfd5ee880a72baf592d46c7c14e2aad21e"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp313-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "42cd29839721d8cc102d02304d4f021e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 4058397,
"upload_time": "2024-10-15T23:59:34",
"upload_time_iso_8601": "2024-10-15T23:59:34.308377Z",
"url": "https://files.pythonhosted.org/packages/85/e9/e3281cd34100f9d8ecd94d6fa21a35b99d3aa1b17363deeec14c46f3f7b9/pysqlx_core-0.2.3-cp313-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "061c666d70edde853447bb1ddcb39d025d8a80f459c7b04022825566382c1fc2",
"md5": "4992655ddedd94f24a1d60295b19e0f6",
"sha256": "79406cf24820b3f5176de085bdaa5358ebb4d634eb25ad660d233c6f7990614f"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-cp38-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "4992655ddedd94f24a1d60295b19e0f6",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5159499,
"upload_time": "2024-10-15T23:59:36",
"upload_time_iso_8601": "2024-10-15T23:59:36.068683Z",
"url": "https://files.pythonhosted.org/packages/06/1c/666d70edde853447bb1ddcb39d025d8a80f459c7b04022825566382c1fc2/pysqlx_core-0.2.3-cp38-cp38-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "15406003d6768db5b0dca9c985c9aa1c2be9d2bd6e9ad1aea6a025b910cbd70d",
"md5": "444fcfe3ec856888523529edf3b43224",
"sha256": "1af44358ce851627e28ae8bb84f906c4c3ca5f424671a11495a6d8621f161070"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "444fcfe3ec856888523529edf3b43224",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 4789493,
"upload_time": "2024-10-15T23:59:38",
"upload_time_iso_8601": "2024-10-15T23:59:38.370518Z",
"url": "https://files.pythonhosted.org/packages/15/40/6003d6768db5b0dca9c985c9aa1c2be9d2bd6e9ad1aea6a025b910cbd70d/pysqlx_core-0.2.3-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "87d40c72fed72e9f59caf8a73210e9dbbdf5812fb3c8e4b818f01db517cc5c69",
"md5": "81f1a7e3d06fe9613283387523acb6f7",
"sha256": "e8465a8c50fb99128021c3ea0539e6d7c494fac924d41b8fac6aa8d03fb543cc"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "81f1a7e3d06fe9613283387523acb6f7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5139340,
"upload_time": "2024-10-15T23:59:40",
"upload_time_iso_8601": "2024-10-15T23:59:40.170163Z",
"url": "https://files.pythonhosted.org/packages/87/d4/0c72fed72e9f59caf8a73210e9dbbdf5812fb3c8e4b818f01db517cc5c69/pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "930e8a121b7262f51dd274344795d9cc7e5c0bbae26f16a6d09bfe3bd6295af9",
"md5": "9d844ecd28b60c881dfd2ab33d90f7cc",
"sha256": "8e186130c107982219f516161aa2a0ef7f293d3815833b157336113c52dcee46"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "9d844ecd28b60c881dfd2ab33d90f7cc",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5143980,
"upload_time": "2024-10-15T23:59:41",
"upload_time_iso_8601": "2024-10-15T23:59:41.936274Z",
"url": "https://files.pythonhosted.org/packages/93/0e/8a121b7262f51dd274344795d9cc7e5c0bbae26f16a6d09bfe3bd6295af9/pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "59cad37c363687b74840ef68f3c260a4ae111528843d6a1c376d8062b2985bf3",
"md5": "4f4ef258f3fc9b42dda100148b2bc970",
"sha256": "60dafc48ba20d94e4f5b997ba86664a687db68f887b64e078e074362c766e814"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "4f4ef258f3fc9b42dda100148b2bc970",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5502308,
"upload_time": "2024-10-15T23:59:43",
"upload_time_iso_8601": "2024-10-15T23:59:43.681145Z",
"url": "https://files.pythonhosted.org/packages/59/ca/d37c363687b74840ef68f3c260a4ae111528843d6a1c376d8062b2985bf3/pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bf089c6659c35c6a379e65bedf873d99e78e75bff418bf155583a65e8b7ed5fa",
"md5": "b4ccf06d323dee35114653ba1435e00c",
"sha256": "97b77b53ca75e4a821e35ccb9805160f0521d446a94ad20748b70cba5b8d3e07"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b4ccf06d323dee35114653ba1435e00c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5459058,
"upload_time": "2024-10-15T23:59:45",
"upload_time_iso_8601": "2024-10-15T23:59:45.437054Z",
"url": "https://files.pythonhosted.org/packages/bf/08/9c6659c35c6a379e65bedf873d99e78e75bff418bf155583a65e8b7ed5fa/pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "edf040464ddb462160c5d7a412caca00e2252fc1e541a8d6bbee8ea031a5a6ec",
"md5": "965a5e3e86bdc9dc8deaac104acb9c76",
"sha256": "5d1e87528358e12bb4b6ab32da9e6818ff415e4340dee6b0f27cf2bce89d86e6"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "965a5e3e86bdc9dc8deaac104acb9c76",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 6140996,
"upload_time": "2024-10-15T23:59:47",
"upload_time_iso_8601": "2024-10-15T23:59:47.461840Z",
"url": "https://files.pythonhosted.org/packages/ed/f0/40464ddb462160c5d7a412caca00e2252fc1e541a8d6bbee8ea031a5a6ec/pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df9b0f6eb8a92c5a59e1655e391fb1fac2335f94560442eb0a471c1ab894b9bf",
"md5": "e5446e3394dfde26670e9bb41fcf34e1",
"sha256": "9595e0e717861bed1f8fca940cb23b56b07440c4888dd08c505667de9f966044"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "e5446e3394dfde26670e9bb41fcf34e1",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5436717,
"upload_time": "2024-10-15T23:59:49",
"upload_time_iso_8601": "2024-10-15T23:59:49.200790Z",
"url": "https://files.pythonhosted.org/packages/df/9b/0f6eb8a92c5a59e1655e391fb1fac2335f94560442eb0a471c1ab894b9bf/pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7df5a775e6c4835064168a89fd0a3b864618fc3dfe599c57cf9de179a9959524",
"md5": "b0a12fff10b1fa4d83c71422bdd5ee56",
"sha256": "4ab4c7cc2bff98699bb719dd6cce1a09fff965cfec91893ea5bb02cf6c244bb1"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-cp38-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "b0a12fff10b1fa4d83c71422bdd5ee56",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5431585,
"upload_time": "2024-10-15T23:59:51",
"upload_time_iso_8601": "2024-10-15T23:59:51.343629Z",
"url": "https://files.pythonhosted.org/packages/7d/f5/a775e6c4835064168a89fd0a3b864618fc3dfe599c57cf9de179a9959524/pysqlx_core-0.2.3-cp38-cp38-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e9214727c0f3047ab65164fbaf526d5b14d90b99259a54b311856f58944d4f80",
"md5": "bd013b050657a15e3e48c8865d88d63c",
"sha256": "f2c218c6c4438003de1964b35946e026f462a6b7093c50280a2a0c6be012c0e9"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "bd013b050657a15e3e48c8865d88d63c",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 5583766,
"upload_time": "2024-10-15T23:59:53",
"upload_time_iso_8601": "2024-10-15T23:59:53.734875Z",
"url": "https://files.pythonhosted.org/packages/e9/21/4727c0f3047ab65164fbaf526d5b14d90b99259a54b311856f58944d4f80/pysqlx_core-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "03b3e6578e03b3d4dd27bcde56266befbaaef828120875006cdd52d39e30aebf",
"md5": "0df0df7912c0e5a0a36da36598ef504e",
"sha256": "6c0489b81e18ed604f9700b900d67d8e7f8587e35e1b4cb2f9936a424bf2a470"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-none-win32.whl",
"has_sig": false,
"md5_digest": "0df0df7912c0e5a0a36da36598ef504e",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 3658383,
"upload_time": "2024-10-15T23:59:56",
"upload_time_iso_8601": "2024-10-15T23:59:56.012925Z",
"url": "https://files.pythonhosted.org/packages/03/b3/e6578e03b3d4dd27bcde56266befbaaef828120875006cdd52d39e30aebf/pysqlx_core-0.2.3-cp38-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "faec9884d58fb9ede2389801fdad9f0b46c927d71e828dd7281ea74e559f325e",
"md5": "0468b07dbfc033b0fe5fbc09e1d4853a",
"sha256": "e5bfb85b81e0b839987fe83ccd5a434b28aeddcc4712609981dc7ee1cdc41b3a"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp38-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "0468b07dbfc033b0fe5fbc09e1d4853a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 4050267,
"upload_time": "2024-10-15T23:59:57",
"upload_time_iso_8601": "2024-10-15T23:59:57.994497Z",
"url": "https://files.pythonhosted.org/packages/fa/ec/9884d58fb9ede2389801fdad9f0b46c927d71e828dd7281ea74e559f325e/pysqlx_core-0.2.3-cp38-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "96fc2b11dc86d2366e63dbd213fa90d7eae036fed2ecf37bdc33181e2c31adb3",
"md5": "681bdd4439dee496df559017ee2ddf35",
"sha256": "565c2fcf06b5cbd2327cd678ce192137d2c97fd673fdce834d905ef682da3656"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-cp39-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "681bdd4439dee496df559017ee2ddf35",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5159677,
"upload_time": "2024-10-16T00:00:00",
"upload_time_iso_8601": "2024-10-16T00:00:00.166611Z",
"url": "https://files.pythonhosted.org/packages/96/fc/2b11dc86d2366e63dbd213fa90d7eae036fed2ecf37bdc33181e2c31adb3/pysqlx_core-0.2.3-cp39-cp39-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0195ef830464632ede43d07966aa7d1dd24b0686ba894eab396427f348fdfa73",
"md5": "ad8436fc5a185ed105bc6b39fa4dbe4e",
"sha256": "9f762c4fc44cc234bfe63b9cc2f9e3bfb7769b83837d45435b1b52f44929614d"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "ad8436fc5a185ed105bc6b39fa4dbe4e",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 4789535,
"upload_time": "2024-10-16T00:00:02",
"upload_time_iso_8601": "2024-10-16T00:00:02.195235Z",
"url": "https://files.pythonhosted.org/packages/01/95/ef830464632ede43d07966aa7d1dd24b0686ba894eab396427f348fdfa73/pysqlx_core-0.2.3-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "901dd8318a016aae305731037d56ad296b7feb34b56a04a969f942f649782c23",
"md5": "e6d90726ef5b234c058d80c8042edb20",
"sha256": "70febd8aff873a2d55474b19e8a8591367bdb50021d20bb4d7c4c616ddfe2fec"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "e6d90726ef5b234c058d80c8042edb20",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5138947,
"upload_time": "2024-10-16T00:00:04",
"upload_time_iso_8601": "2024-10-16T00:00:04.020413Z",
"url": "https://files.pythonhosted.org/packages/90/1d/d8318a016aae305731037d56ad296b7feb34b56a04a969f942f649782c23/pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef38d7ef525782ee88a9363eda228faa085431c07e15d55500c79cbed5189b51",
"md5": "015e5586520d9268c7fd4ac23f6fed3c",
"sha256": "e8651a3e1fb2db627ab448384f75cdcaa2c161537a1d22d4bb15bf1d2593917f"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"has_sig": false,
"md5_digest": "015e5586520d9268c7fd4ac23f6fed3c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5144164,
"upload_time": "2024-10-16T00:00:06",
"upload_time_iso_8601": "2024-10-16T00:00:06.517719Z",
"url": "https://files.pythonhosted.org/packages/ef/38/d7ef525782ee88a9363eda228faa085431c07e15d55500c79cbed5189b51/pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c1ba50d46afdf295f8d2395208b47b3f3b22823ea24519ade4ba584d2392526d",
"md5": "dfe3b6e50dc0fbf85ea5735ada5fb304",
"sha256": "91ecbfe18f55e98d5393d13329452172656086436d40847a5cc2fd6f8e623bc5"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "dfe3b6e50dc0fbf85ea5735ada5fb304",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5502466,
"upload_time": "2024-10-16T00:00:08",
"upload_time_iso_8601": "2024-10-16T00:00:08.579497Z",
"url": "https://files.pythonhosted.org/packages/c1/ba/50d46afdf295f8d2395208b47b3f3b22823ea24519ade4ba584d2392526d/pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04f72d48d2d8f76a91300a52dc6de6731590ef067174d7c885baeddc4eeccc60",
"md5": "45600337304d4f63e9d480f886f9a518",
"sha256": "6a3ccfff1329ea1ef13c1a0707ef138fe3869db68e4c78823c84ae96c7ce2858"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "45600337304d4f63e9d480f886f9a518",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5458709,
"upload_time": "2024-10-16T00:00:11",
"upload_time_iso_8601": "2024-10-16T00:00:11.103428Z",
"url": "https://files.pythonhosted.org/packages/04/f7/2d48d2d8f76a91300a52dc6de6731590ef067174d7c885baeddc4eeccc60/pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b830b032a3e4228488dabbe20ff3cc78fafd021db8bbacfb04b6f0bdf837df35",
"md5": "6393f009f9614a60a3f3d70dc6187ca4",
"sha256": "20165f4d4eff23285cc1fac8775447caf3892ce36704e4edc515d3cd0638fefb"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "6393f009f9614a60a3f3d70dc6187ca4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 6140486,
"upload_time": "2024-10-16T00:00:12",
"upload_time_iso_8601": "2024-10-16T00:00:12.979953Z",
"url": "https://files.pythonhosted.org/packages/b8/30/b032a3e4228488dabbe20ff3cc78fafd021db8bbacfb04b6f0bdf837df35/pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd397e46d4d07196097a7f351e29a40cda485c2cc697435d667513e96f9d4bb8",
"md5": "5a21286c9830bcfe1c7e6c1b9915a357",
"sha256": "d24410a6be70779f33b3e50c856339c06651634e338bd354321d78faeda93eba"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5a21286c9830bcfe1c7e6c1b9915a357",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5436963,
"upload_time": "2024-10-16T00:00:14",
"upload_time_iso_8601": "2024-10-16T00:00:14.678936Z",
"url": "https://files.pythonhosted.org/packages/bd/39/7e46d4d07196097a7f351e29a40cda485c2cc697435d667513e96f9d4bb8/pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e89c39b00db70fd592fc9b3a51a32f7f05eb00d065593a986d3c6063b84807b",
"md5": "f4101ea31d42b1c19c1cad8e2136125a",
"sha256": "802c90bbb2da6cd428ad3bcd2a1c3d619d453b373acb9c1cba2fd97f3f6a9688"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-cp39-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "f4101ea31d42b1c19c1cad8e2136125a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5431249,
"upload_time": "2024-10-16T00:00:16",
"upload_time_iso_8601": "2024-10-16T00:00:16.461198Z",
"url": "https://files.pythonhosted.org/packages/8e/89/c39b00db70fd592fc9b3a51a32f7f05eb00d065593a986d3c6063b84807b/pysqlx_core-0.2.3-cp39-cp39-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8133ae041fd33005531c131e4ed78a930ac4c849055a92b8d78e376cda965e43",
"md5": "86ab4c8ab1b3bc289d068b2c100c8762",
"sha256": "6c856503f6eaa096ce69b398ecce62b91edfd68604d26ade59c90c21e368e0cc"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "86ab4c8ab1b3bc289d068b2c100c8762",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 5583628,
"upload_time": "2024-10-16T00:00:18",
"upload_time_iso_8601": "2024-10-16T00:00:18.647317Z",
"url": "https://files.pythonhosted.org/packages/81/33/ae041fd33005531c131e4ed78a930ac4c849055a92b8d78e376cda965e43/pysqlx_core-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0607a9158667e423a5e8776bc1a81aab3813ed88df429e1017dd9ef9f78b6206",
"md5": "b588c2768a6dfbd5c6e41d9f03470fdf",
"sha256": "0a693a96ec7cec9302bd59e16e508cef63387527d4d12921d9695325df039bff"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-none-win32.whl",
"has_sig": false,
"md5_digest": "b588c2768a6dfbd5c6e41d9f03470fdf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 3658379,
"upload_time": "2024-10-16T00:00:20",
"upload_time_iso_8601": "2024-10-16T00:00:20.545135Z",
"url": "https://files.pythonhosted.org/packages/06/07/a9158667e423a5e8776bc1a81aab3813ed88df429e1017dd9ef9f78b6206/pysqlx_core-0.2.3-cp39-none-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a30888a3cf0787b0682cd204a8aee2e80003ee52f6848d12601d917a010e92a",
"md5": "e8278819abcbee9ae25f591a5f308547",
"sha256": "e8d90b8e12d9df5a65eb784465140239f6ce723499ebc575d3224d67eb68ce8f"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-cp39-none-win_amd64.whl",
"has_sig": false,
"md5_digest": "e8278819abcbee9ae25f591a5f308547",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 4049993,
"upload_time": "2024-10-16T00:00:22",
"upload_time_iso_8601": "2024-10-16T00:00:22.391018Z",
"url": "https://files.pythonhosted.org/packages/4a/30/888a3cf0787b0682cd204a8aee2e80003ee52f6848d12601d917a010e92a/pysqlx_core-0.2.3-cp39-none-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a6a7d3a249a3c1a153555d66e3d4121e57a3fc6ba76ec6cb80400f547ddc7ecb",
"md5": "a9c5375ba99bf679962ebc2cba1558fe",
"sha256": "1bc0aa2bccfb8bf02ca4a99ea81f8fcbc460d8e3bbddcb01ef4fabcc4f62633c"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "a9c5375ba99bf679962ebc2cba1558fe",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 5158464,
"upload_time": "2024-10-16T00:00:24",
"upload_time_iso_8601": "2024-10-16T00:00:24.510959Z",
"url": "https://files.pythonhosted.org/packages/a6/a7/d3a249a3c1a153555d66e3d4121e57a3fc6ba76ec6cb80400f547ddc7ecb/pysqlx_core-0.2.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cbc24e3c45b8d66c77236dae53e90703fef3193d0b31e3f28e49a104141b00b7",
"md5": "285dc7a574be6879f8e6f27f18f73d23",
"sha256": "a5c74aa88296d9736c0a7cb891a31f3673e4d94fbdbd8b0b12a5fdf219ff2210"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "285dc7a574be6879f8e6f27f18f73d23",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 4789217,
"upload_time": "2024-10-16T00:00:26",
"upload_time_iso_8601": "2024-10-16T00:00:26.456696Z",
"url": "https://files.pythonhosted.org/packages/cb/c2/4e3c45b8d66c77236dae53e90703fef3193d0b31e3f28e49a104141b00b7/pysqlx_core-0.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0479947e17d53454270a28ecf4e1164d5d7d0c84c37e3e2c082cf429ed459436",
"md5": "d2701a2d044828424a446465315d84e2",
"sha256": "6f596fec2a53cf73546aecbb5ae0553966211f7a179d390d493a33ef5b1a3f56"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "d2701a2d044828424a446465315d84e2",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 5139028,
"upload_time": "2024-10-16T00:00:28",
"upload_time_iso_8601": "2024-10-16T00:00:28.404854Z",
"url": "https://files.pythonhosted.org/packages/04/79/947e17d53454270a28ecf4e1164d5d7d0c84c37e3e2c082cf429ed459436/pysqlx_core-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4b413bec78e273d1c43821c63f81a12b8e76fbbf10fd6cc8677dbe1637b115a2",
"md5": "c91390e6f5d1f3803c83713b1dde984c",
"sha256": "8aaca0bc2169be405f72498cbd4de1a728d91cd2dc11c325e6a8779feeebae03"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "c91390e6f5d1f3803c83713b1dde984c",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 5501817,
"upload_time": "2024-10-16T00:00:30",
"upload_time_iso_8601": "2024-10-16T00:00:30.459645Z",
"url": "https://files.pythonhosted.org/packages/4b/41/3bec78e273d1c43821c63f81a12b8e76fbbf10fd6cc8677dbe1637b115a2/pysqlx_core-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fe98344158cd88132cdc91d9bca3b74a748a887ad18e1a879b4aee51e7479103",
"md5": "6fe707ac4f80736d8be7f6b0279e6273",
"sha256": "0a616ebeb82f2feefd0d2f7f3c215ae5e53756efbdd4f0579f19bb2209bb104b"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "6fe707ac4f80736d8be7f6b0279e6273",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 5441872,
"upload_time": "2024-10-16T00:00:32",
"upload_time_iso_8601": "2024-10-16T00:00:32.383884Z",
"url": "https://files.pythonhosted.org/packages/fe/98/344158cd88132cdc91d9bca3b74a748a887ad18e1a879b4aee51e7479103/pysqlx_core-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f70c27640df2bdbb6d9c33ec1f9d281d0bca0aee88718b845990b393216c2721",
"md5": "5839391ec745cbbd30156fa8b8cb9399",
"sha256": "a69f264f4884b0b7b0bb438cc5ebf9529009a5170f20020b5569011dc9669dbd"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "5839391ec745cbbd30156fa8b8cb9399",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 5431551,
"upload_time": "2024-10-16T00:00:34",
"upload_time_iso_8601": "2024-10-16T00:00:34.600065Z",
"url": "https://files.pythonhosted.org/packages/f7/0c/27640df2bdbb6d9c33ec1f9d281d0bca0aee88718b845990b393216c2721/pysqlx_core-0.2.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1ede1b409756cce2fea65053baaf16b07e8615176b9c64fb26ad5116f8170de",
"md5": "f36d9ab062014e8c08728374d83cb607",
"sha256": "6c2071724f9dce989d7067eb44549cbdd5a613edfac8f5ab84ec6fbd42650682"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "f36d9ab062014e8c08728374d83cb607",
"packagetype": "bdist_wheel",
"python_version": "pp310",
"requires_python": ">=3.8",
"size": 5584043,
"upload_time": "2024-10-16T00:00:37",
"upload_time_iso_8601": "2024-10-16T00:00:37.559529Z",
"url": "https://files.pythonhosted.org/packages/a1/ed/e1b409756cce2fea65053baaf16b07e8615176b9c64fb26ad5116f8170de/pysqlx_core-0.2.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1dafbab901e93259bf3b7e92e0bc78b0199b4448c6e1b882e5ab56d8a8fe59d1",
"md5": "e15c4939b31247941c04547cbf48d0f6",
"sha256": "10e6a957a1ca57db1b9e765f1d607d743abf05b6b6a75dfd079c673333e95f89"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"has_sig": false,
"md5_digest": "e15c4939b31247941c04547cbf48d0f6",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 5160201,
"upload_time": "2024-10-16T00:00:39",
"upload_time_iso_8601": "2024-10-16T00:00:39.363584Z",
"url": "https://files.pythonhosted.org/packages/1d/af/bab901e93259bf3b7e92e0bc78b0199b4448c6e1b882e5ab56d8a8fe59d1/pysqlx_core-0.2.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07257d41443e25ff13f045ca5a1859710cf35d7def144bbe61c40e1d949abadc",
"md5": "d37ab9fc66db3ec1da5a21a9ac396d47",
"sha256": "a8561d9308660e35fe5f6d02b5484634ba756e5d2ccc7a80e91f7110a5f5337a"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d37ab9fc66db3ec1da5a21a9ac396d47",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 4789702,
"upload_time": "2024-10-16T00:00:41",
"upload_time_iso_8601": "2024-10-16T00:00:41.756200Z",
"url": "https://files.pythonhosted.org/packages/07/25/7d41443e25ff13f045ca5a1859710cf35d7def144bbe61c40e1d949abadc/pysqlx_core-0.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2dc6c5557f9de810386a3b485caab0ecd29406d224eddde655134ce61e9693aa",
"md5": "220b66bd42f1f6f081f4b409fc258cda",
"sha256": "793f4f90756d5c328e8307ad0e3600cc83a851224b645394c386e5312976fba2"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "220b66bd42f1f6f081f4b409fc258cda",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 5139531,
"upload_time": "2024-10-16T00:00:44",
"upload_time_iso_8601": "2024-10-16T00:00:44.546579Z",
"url": "https://files.pythonhosted.org/packages/2d/c6/c5557f9de810386a3b485caab0ecd29406d224eddde655134ce61e9693aa/pysqlx_core-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8217bf9aaa3d30f036e47cdc32a615e3f825437f688fc2b88afc365113cd4432",
"md5": "0d5d18d121119b4d58702a662f4f5d75",
"sha256": "3322b033775bff818e66216937f76e2d49afbd1f9afc339604c77fcbe0644b09"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "0d5d18d121119b4d58702a662f4f5d75",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 5502486,
"upload_time": "2024-10-16T00:00:47",
"upload_time_iso_8601": "2024-10-16T00:00:47.025302Z",
"url": "https://files.pythonhosted.org/packages/82/17/bf9aaa3d30f036e47cdc32a615e3f825437f688fc2b88afc365113cd4432/pysqlx_core-0.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04de9ac7042cd11d664af11c43cdd051858d988da419217818779e13770f55ff",
"md5": "0bfec5f6338d97006f97ca1b09e6b722",
"sha256": "697e394204d9ca0cd2d81d65f555e3bb9d5c4f7282b2006db4eefcaac5457fb1"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "0bfec5f6338d97006f97ca1b09e6b722",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 5443336,
"upload_time": "2024-10-16T00:00:49",
"upload_time_iso_8601": "2024-10-16T00:00:49.017327Z",
"url": "https://files.pythonhosted.org/packages/04/de/9ac7042cd11d664af11c43cdd051858d988da419217818779e13770f55ff/pysqlx_core-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1d41794d4b2af777e34dc99529292fc05c8c1a1cb45547aae07720ed1a7f613",
"md5": "21225d8684bbbff136997877a667531d",
"sha256": "1d0da074f36ec01770104ec78a70eefa3dcdffcc15e24a856444b1d10976a116"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"has_sig": false,
"md5_digest": "21225d8684bbbff136997877a667531d",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 5432224,
"upload_time": "2024-10-16T00:00:50",
"upload_time_iso_8601": "2024-10-16T00:00:50.984427Z",
"url": "https://files.pythonhosted.org/packages/e1/d4/1794d4b2af777e34dc99529292fc05c8c1a1cb45547aae07720ed1a7f613/pysqlx_core-0.2.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "858129e64100f320cf10b77dc2bc7562024d53adb2f0ddc860868766b9619000",
"md5": "2f230454225f78d88f3bda3583c21760",
"sha256": "9c2d63ff0df9e09d3ccb0b0b893282ad0d6b4bb0879b6c078059e9a61b6e500d"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"has_sig": false,
"md5_digest": "2f230454225f78d88f3bda3583c21760",
"packagetype": "bdist_wheel",
"python_version": "pp39",
"requires_python": ">=3.8",
"size": 5584930,
"upload_time": "2024-10-16T00:00:53",
"upload_time_iso_8601": "2024-10-16T00:00:53.024730Z",
"url": "https://files.pythonhosted.org/packages/85/81/29e64100f320cf10b77dc2bc7562024d53adb2f0ddc860868766b9619000/pysqlx_core-0.2.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b00c06a11b27e2aded8b8735c7556b17f28a5ef2d4779d76bcc954f0cc4645b1",
"md5": "59cbeb5a48aebebe172d791da39037a4",
"sha256": "d2a1c52464221a5c31db3d0f4e57f1e72f25345833081db8fe33b0428477f49e"
},
"downloads": -1,
"filename": "pysqlx_core-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "59cbeb5a48aebebe172d791da39037a4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 210849,
"upload_time": "2024-10-16T00:00:54",
"upload_time_iso_8601": "2024-10-16T00:00:54.695302Z",
"url": "https://files.pythonhosted.org/packages/b0/0c/06a11b27e2aded8b8735c7556b17f28a5ef2d4779d76bcc954f0cc4645b1/pysqlx_core-0.2.3.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-16 00:00:54",
"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"
}