Skip to main content

A fast and async SQL database wrapper for Python, with support for MySQL, PostgreSQL, SQLite and MS SQL Server.

Project description

pysqlx-core

cargo ci pypi versions license downloads

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

This package provides the core functionality for PySQLX-Engine.

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

pysqlx-core will be a separate package, required by 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

Supported Python versions

Supported operating systems

Example of installation:

PIP

$ pip install pysqlx-core

Poetry

$ poetry add pysqlx-core

Example of usage:

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())

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pysqlx_core-0.2.0.tar.gz (209.6 kB view details)

Uploaded Source

Built Distributions

pysqlx_core-0.2.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (5.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pysqlx_core-0.2.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pysqlx_core-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pysqlx_core-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pysqlx_core-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pysqlx_core-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pysqlx_core-0.2.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

pysqlx_core-0.2.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (5.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pysqlx_core-0.2.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pysqlx_core-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pysqlx_core-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pysqlx_core-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pysqlx_core-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pysqlx_core-0.2.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

pysqlx_core-0.2.0-cp313-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13 Windows x86-64

pysqlx_core-0.2.0-cp313-cp313-musllinux_1_1_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

pysqlx_core-0.2.0-cp313-cp313-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pysqlx_core-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pysqlx_core-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

pysqlx_core-0.2.0-cp312-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

pysqlx_core-0.2.0-cp312-none-win32.whl (3.6 MB view details)

Uploaded CPython 3.12 Windows x86

pysqlx_core-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pysqlx_core-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pysqlx_core-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pysqlx_core-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pysqlx_core-0.2.0-cp311-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

pysqlx_core-0.2.0-cp311-none-win32.whl (3.6 MB view details)

Uploaded CPython 3.11 Windows x86

pysqlx_core-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pysqlx_core-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pysqlx_core-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pysqlx_core-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

pysqlx_core-0.2.0-cp310-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

pysqlx_core-0.2.0-cp310-none-win32.whl (3.6 MB view details)

Uploaded CPython 3.10 Windows x86

pysqlx_core-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pysqlx_core-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pysqlx_core-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pysqlx_core-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

pysqlx_core-0.2.0-cp39-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

pysqlx_core-0.2.0-cp39-none-win32.whl (3.6 MB view details)

Uploaded CPython 3.9 Windows x86

pysqlx_core-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pysqlx_core-0.2.0-cp39-cp39-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pysqlx_core-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pysqlx_core-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

pysqlx_core-0.2.0-cp38-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

pysqlx_core-0.2.0-cp38-none-win32.whl (3.6 MB view details)

Uploaded CPython 3.8 Windows x86

pysqlx_core-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pysqlx_core-0.2.0-cp38-cp38-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (5.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pysqlx_core-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pysqlx_core-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl (5.1 MB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

Details for the file pysqlx_core-0.2.0.tar.gz.

File metadata

  • Download URL: pysqlx_core-0.2.0.tar.gz
  • Upload date:
  • Size: 209.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pysqlx_core-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f5186616adc35ceed205bf240cd445cd70df6b2a10557862457771f1a2aa7eb1
MD5 0637665a7fec93f9795ca114051a8b0c
BLAKE2b-256 1c629f0fc142ca6a2ae6822996b9af3b52cb49e17185f80b01aa4e2c9d3a1451

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39c15f004d7d398eb2b57b6d8f1b31bda1c751fbc7b2d5278b9d1f970eb2da38
MD5 0ccf68bc1b4c203e278c842e1b09a172
BLAKE2b-256 33b9eeb63b443cfcddd229fd933676204e0e8608684f6894ee69a23cbb311dfe

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 af7aefe45d07cf26e5ff1cf5fdd699cf488bbb416141f5ab4db2220c05896d07
MD5 9d364fa3927b10691fed511f641d2080
BLAKE2b-256 bd4dee382264ae77f2d30b4a6f9c9f2f5bc8cc5111bd32bd6771283cd40cdeb3

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75391e95d01e384924b6f07c09d2d219fd39976162f3009683c6c51ce9fd41ee
MD5 d55e02593df0cee2fddafdc72b89dad0
BLAKE2b-256 27e05f0bf963968273787135eb99f6045ba2182909ce7374383597f5d65e2a22

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ace4464bae6fdedd45382be62c3facb6fb3e0a90055d78261d24116811a40597
MD5 fa317fbc850c97fae998ef09cbf8eef4
BLAKE2b-256 6a12338fe0d7fff9e023d4f1a6d45034585d9bb348e8f43f9b53ba430fef992e

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29405ec62bb9174d9f008bbbb336a8778ae37c30395ce2a864f623a453d4c611
MD5 3e33b4cd69194f6c5012e3fd6a7b07b4
BLAKE2b-256 720a67a7272bb562275cbad2a0984076fee0ba9ab4c7ffd04b7401db0615a1fb

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3322f42fe8300a6b27b97ade24f03705d199197bc17ad098a40887262582706
MD5 c2da18ca12c47f1519f39d44146edb6b
BLAKE2b-256 d66a94d8d979eac27ca99c87b9692b8c873a4577b28d689d47792c6afd071dcf

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1f660068515604d49efb75e54a2bd03011680b9eb991cfc6761f8b39d05693f
MD5 85efe45d5a1deaed08cc2d6c0bdc5b43
BLAKE2b-256 a21e644761ca786b7f9cf360acffbd0946478d0111a722107af41635c3cbe7ca

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 de4652ccb211a7323f35d96b4ce8e017b424984b79ceb7289e8271514fcc20c3
MD5 037d2c84c7be3f2c5e14731cb4fffb32
BLAKE2b-256 e9508b6d741af046bc329c83d7a162101dadcc35e29f04e54731f63ed83b154e

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c665a0c5e1b2768af495fc02f706103c1bc0bf295d22dd7263c72b04caf66a8c
MD5 bb17a7a60d72e19b2a4d127231f172d4
BLAKE2b-256 6c598bf2a66d78d44ee994ffa5b2353b14591fed6d3b27a830b57e3e54763514

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2afee9efb931151881db524228f2bec59a53c8bb4cd863190edcc43f5919b587
MD5 b8fdf5066f0361597accd7182ee37459
BLAKE2b-256 b19b81ab2772fa903c8d86739358abd02ae17c7a9bab48d576bf3b7b0701eafd

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72d95ab61661f758205f69274c5ab115283a9bea0bce1cf74c36016a5edd88b1
MD5 b2d4d17bf2a155fd5f35d5add9cf05ef
BLAKE2b-256 39756c86574690e6a537449bab71b0e7cf316244280dc600b4c37f7b2b6ed5ed

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2eae11b8a0eb363ffdb5ba95ff3694c589fe04669e596bd7b3231574c477f269
MD5 dbfd00e7bad3786a1660b1aa61b2d5ab
BLAKE2b-256 23ac2452e6cc3530d0431e3f326f9c95afe5d1d374367cf7fad8f88ae9344c9b

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08fecf4ac0c6bd9b8040240bd53a9914d364be889dd89c05e00e24f3a77b6c29
MD5 30da9faa77bed31ca012b2b6b835ee84
BLAKE2b-256 45509e6d987c8ef7302a45381e2f722cabf1896c939354d1f471de5a4ef30575

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ddf3455fccad273bd5c51c488229744641a5681ede0e684bac75a4f53b3c5fff
MD5 563aa65b7b0baaaf5c217f80e55394ab
BLAKE2b-256 cfef8d835a2a3c0130caab85bf4df19975e518808e41d6c53d9c54c838be1c4d

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 488dbb4a5afd313be100bc7af787674cf6cb47fa0e59244c6d086b863c50c42c
MD5 7af946c8ab73fe5b1c81b9a1d676783c
BLAKE2b-256 5ba8e37aa9fa90193d4b589ef01392360383e506f7aa0a4d87d359093e346cb0

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 be256ead63fdf91950cd14630c1d2dc85101dffe7e383204a64914d4d95e1dd9
MD5 558cb22fd39737030cf85d946d827970
BLAKE2b-256 19ad6e7d4fb638a8a1acab58a43b38ac4c901898d4619e5253c4e4f74984e3f8

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1612941fb16dfd913079d854242f028ee3ccae269185dfc35ad2a0cb6f78acc4
MD5 6cfd584b582e1b7ad69e1de0686cb58f
BLAKE2b-256 5b055b8ed0f2dbd77376f4a63dc42ecabe952a15bd85e8baa52faa436b2c4ee3

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 623bd863e0d2fec1b26b0b61e3c2c5817e2909b909e091159007fdb10f20ad37
MD5 65b7823aff4d4231b07fac789d185de0
BLAKE2b-256 488589386e0618fc81591078ce2828568a2b5de8d7742fdb7410be6b16892a49

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b5a6d2fad6b61448287432574e4d55246ab0f558ba99274f718614c225363638
MD5 250035929db9a939d511aa4e634ad378
BLAKE2b-256 02484fe1f00b1e7a1d531c77e977a6d15ea0f2c533fdebf22ce61f9e9dfe0876

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eb6df951f4f9a4a244bd007f52de4652330cd3d12295c9fa56265e9b77e3f997
MD5 0c923db072721732de7ddce5a40b2ff9
BLAKE2b-256 a532203f23aae89ca72757c99bc89a6ef7a8bc004036c41e366e2de82aa0e10b

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa6a8349f1378e5d48cdf4197bb85c3554b46f03422bc63ba21fc652f0902b9e
MD5 b24b6bed82dc87dd517eac13c1e87f72
BLAKE2b-256 0e2866f697c0358105e0a1caddb4fb28092b79845464ea3d1898e98e7a78c673

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cb70bb1743afffb7cf90b7254a9a774a6d3457d681b6f8d1c57dfaf77987cc8
MD5 3b715402581465ac15b964be13d95eb9
BLAKE2b-256 2b39232cbd66bc2f74ade029918723ddac1bbff7eb2b98b0981a507d8d5e573a

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb4ade84828b8e816aadcb2679c9f8906a7611fc0193d45a10592f4922236c62
MD5 468f663db24bd50e4c167326a33df0ab
BLAKE2b-256 9c1797f86b2de5a5f52f5adede45108f5c3f08fa4443f7d6521cbeb91edf0856

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb73ada879e69443a0ec7a784509dbbd892428e56ed987267c784c7938d009f6
MD5 7efcaedf36223945552df983494710ef
BLAKE2b-256 907d582aa6c24b233505ec980707a1e7e3a64df25034d03ac7dd48cd3cfd4943

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 81034e51a2621fd8113d0c24e9c432f8c344075260844f6102c237f67f4f5a9b
MD5 e69dea517e838d57ca5edf6438dc7f23
BLAKE2b-256 87904812940baab5769b5842c132c94fce1ee96a179d8bbbdaba86c2e4f0ccf6

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 ea40c0fac8b6195dcd06474c5004851f4681114da1d93a3b34f7a7139d87accb
MD5 fa6ef941d3723464d45ef3ede699ee7a
BLAKE2b-256 63f5107d8c6ddb67cc6a48c0b543b85588486c6786aca1786202a0083cebf2c0

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-none-win32.whl.

File metadata

  • Download URL: pysqlx_core-0.2.0-cp312-none-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pysqlx_core-0.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 e77dccba6f31a6e47e6c98ca5e2b2c3500b4166d771cbd46566140c4efecd7d2
MD5 53316567900d7b94d7ad24d23d65f1a9
BLAKE2b-256 2ec43bfbf26baa15ae94aa45c934d9a0838c94729c8e9787e3cd0873c6f7d926

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6b3b4ae6b0819a63488cb78871fc2f49345b3f2866bcb6aa125bc4cdb5a5e004
MD5 26df11d872ade350dbb594b73275d530
BLAKE2b-256 d25ba83694e45b8e07064ac26d237767aa63f1125ed593ca60b275212d900d96

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6a7bb24c349b5600f2ce064b64ef79b036c709b9e231054c453361e19ac01753
MD5 449a6f091d35c245fd85156f14ee9469
BLAKE2b-256 be8adc49b00d3fef0c98116af8b54058797f6de1b47fc1aaf72c72671de00d6b

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 496dbfd215a93e0b722c9aec5225623a0375209b30f97ff0c6fd5f64440184e3
MD5 1f44579ded17acfa215a6d64864d9678
BLAKE2b-256 7c7312844929a442d07ce6f376d0f3093a867a29039e5f1d08a5c8411ea2e4f0

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80324f990f2437a477bbaa8213dce9728903681fdac8c2bb91a5a3c1ed1d0953
MD5 56db1a9c96ac52b0c2b426d7ea520b27
BLAKE2b-256 64c23282f146164cbc8a0668120decb1600f10aaaf3690ac15432191613e033a

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1322479860dfa2ffc24a718f2e38a5b89083dd437834d9ba74e2865ce2311fd
MD5 62b7196e2653011c102277eff8854fcb
BLAKE2b-256 fec5fa1f63499042d395e7db41e36f20004ee70d77e6e8331e53abeeeb5c98e9

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc6ee34e557b88035b0a22ce1afb3201b40ce04c898cba81a076e0ee3c76247f
MD5 f23f5dc4cbe0482e90a49b0f97bc4417
BLAKE2b-256 130b7c0201e717ce41a6682c0b8a2c9e3135e36169df82ad25bd39d386764250

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62972a218be9e636fca6848a3b2b03cac0b6de640c9bae7f8ab023d83b95cc2e
MD5 c4a26a334b11d86ab7be29b2c42828e9
BLAKE2b-256 721ec9566b55bcfce0e1df3e9d7e4ca8964a209b1d3e805668a2487d89063b2b

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5290bb2d0cb7726089f07f3d4fc3e640465850c29ef9692c4d11a0459b170102
MD5 d7eb9aba1c052731b770e381129a8970
BLAKE2b-256 33e1f3692bbdab0df36b4192aa52c1d4f3b5c521d691c572dbd8174ecf35b4db

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5565dcbce521726b67620d83fdcef71f9c81b900cb2722c4f07cc692ad8eeefe
MD5 1e0a65e7cf663c576dae21b72b96ffa7
BLAKE2b-256 0665fecd57fe359e51ed67f88da4f550a398d6fc1b1e5285b79b05baff41464a

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90b09b154b8616cee467bd912cf1b453b15ad88de43669b58dbb78b0ebeb512d
MD5 84dfce99dff97134c9539d4efee6b78a
BLAKE2b-256 8bd24e0da94f874fcf59ae339ac972d94d63f2a9c07880cb9a89b1e7b730c983

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 68e33d7316b7c25a2e6cc9b6f6287d82304acc2c701d4ef20503a890026b6093
MD5 305a81d60001372f28432c1475ec123c
BLAKE2b-256 c362350f5bc3598820009722d48a7f7aa33c821753c63b10ba79316c451cd49a

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-none-win32.whl.

File metadata

  • Download URL: pysqlx_core-0.2.0-cp311-none-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pysqlx_core-0.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 acad850506486fa7d59c6bbd8b9649233e54f6fea268359e84211026aa30989a
MD5 2548b45da61f19395f01428d8cb8c0f4
BLAKE2b-256 0432aef3a7c5a6795dcb683c875bfef068cdb41d0416dd92939b4c390fce9f1d

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eb75d696980bca5fc8c97c25ed6ea9ee7ddfc51a8ad2b7f41b28c9547df1aee1
MD5 82b367f4c1add181f3077974fa4b88ed
BLAKE2b-256 bae3434099dd6a46070b8cb698ecf673e1e637dee7aacb72c8b764eddcf2e686

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 594d573f3de10d29235a89e8623a7f2cacee2b7372a7974feb84bb698af3711b
MD5 d534bc0abb6e4f3bf8c6000dac824b15
BLAKE2b-256 f6cad8df98328a8d6c6122e93fe243bf272bbeb14263aff831c45e0080118a83

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08c8fbd1041c7f57da43b95d267a6ba40ced8c3c0a6e53278c3ffddc51849a88
MD5 eb4f905ab656f85d73a8ef2def7d0e70
BLAKE2b-256 f861fc48b38331f1ad700057b6c7f9c06a1b47d479c34ce30ecc2e0698ebc57e

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a739edc4d95054b690c42ea5469019ad346c03d38711763cfbed1bc13c80cc22
MD5 e4f21149f5386a4a70361dba5604ba99
BLAKE2b-256 c070e881a388fd7966a7822a4057887bce738aa1e533f8c4ffd3a15f3e9bae02

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e8ad1378629283b2a2fcf3c8299c4dd18e1135b22866f9ac9d21dd978f3ef41
MD5 039313e19e8c3ed7ae9c591b3d24111f
BLAKE2b-256 0c2d2597153304766d1a71bdd2b7724cd4b07beef29ba17d1655e8d6b419306f

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b0b6056e27e71a484f8da96ded0a4c5bbe697d58211e747ccf9e6485e4996596
MD5 c442df7dd4bda3fb73e8bf67c8942b77
BLAKE2b-256 84a403697ea38816901a374d25203378b7ecb1f9d404bb504b5ce88458e55ff9

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e753e362b769a638d2b01a5623c549706a3da304c9d6b99d0664475ea79767d
MD5 8d6f525ff5bf9caaa66cb25a881b2360
BLAKE2b-256 f22fc8801e7ee35c0bd2c92acb19d4cfcc3bbc304a3ab196d727762e738111fd

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f043cd08f88fdb99627558e8057fd200ce60c7f90cf4f87a0ae2fdc474c4258
MD5 984377ccb4426341edf61dca30a681bb
BLAKE2b-256 258d4335c262472339d70c8dd8d3848a37991271a2229c7a30e1b4cf73430986

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c97fe86f11a5ee4810d9176290d3df4a42415cc676c52af8089572dbec8b2e1
MD5 f06aae11a8d5fbbfb487893d80cfb468
BLAKE2b-256 51beb8c377c47ea17183fb114230264cce201db910021d487d70177c9ec7e773

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b97242aead28961da2f045b436ad0ed7a997065bfdb99d75bc3615c9a4aeb611
MD5 5030326f1cbef4ed062e5dc55b79c884
BLAKE2b-256 be398d5b59ed2bc83b12c6c9f550dd5e0b44b2b9426146b9117740212da2a002

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 868e40c4caf697166e837f2fef0afc354116cedd019935c4321003b8c854ac73
MD5 7c51f876735f4e5b318e6304ff9a29d8
BLAKE2b-256 6ea54a6cf744f6b4ace3456b73d740033729233dbd1227ebb4e4643ffc325f1e

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-none-win32.whl.

File metadata

  • Download URL: pysqlx_core-0.2.0-cp310-none-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pysqlx_core-0.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 9c1deaf2a0f7afd687830dea49d84c2454b158e5e7a8196e0b16a731523502eb
MD5 87a9130ab9ced379128c992c688fa15c
BLAKE2b-256 28bebdf79c6d0bc1acc27e9f8b969d7443bf46b486420362860fea8beabbcf75

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 776854af9203ed84157a6b6fed989abe523b65c84a9af1beb23758a8e58ebd1f
MD5 e39ddffd26a9921db0aaaa86edab53da
BLAKE2b-256 41ec0d7f6572e36ba0c09207bec490e8eb24de353834cd787c2de1980ea85e6f

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d9e859570a4eb09bdf8124bde79661b01698b2f3dfa6994e70c324f79c735611
MD5 d3fda1db95d0e79a56753f2fa28486b8
BLAKE2b-256 bc2f5256e96400786f582bcad8ddd101bf4f4d294a2716c17f5ba913d980ea3d

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 996c93bada91668dd1d23e9df7757bb591bcb6890f044f0570cfb1a8607cb1b3
MD5 c850a2f167b55ef0b4da62aed3ab08e2
BLAKE2b-256 2ca4c956fa73869251ed1395dbfe71cc56c27df49e8c79e1d8ad719b4a8003bd

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fcd4d6b3c87a6df4de3bc7deb1c3e4ed1e22f8140b8a3b04649e047b3328799
MD5 92c88d07d1e0790729baabfdd6558a77
BLAKE2b-256 e6591a1c36238ccee94caa75bfc3cb79780652a879f194822121cfb9d0b4f524

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01658faebfafeaa325532875f7b01b75d8420f7c77c69bc17f1a58d9f6d24e69
MD5 85ad122a9247ca7931539a356a74621f
BLAKE2b-256 021fda1a5581d56dd27fb2a1fd94f20fa39c8e4eb7da0df76f026546732687d6

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cabe55321ace0d36b8a57ba76189541b365da038e210d955530c038812526c40
MD5 f4f5377bbc624a798953c080476a8b22
BLAKE2b-256 a676b1f6e5d01dc1979c60a75856868bc1717148e557cc8e847a0cae245959e8

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5facdd44994e93b0e14b10efc0a5282db02c589b9aef31dd63e5e4cd0d088e86
MD5 00f80847fe6b401501db654cbe49a993
BLAKE2b-256 4e9588ae4bc6b1d85e16594b69f8d6f4781e5b275cfd03d9a2eeccbd4f22f4da

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 107f44d541062f4c54094636bfa73a4a3afb5eb84c99a8aea6e5f30124d11397
MD5 07ce04bb3198a0a4ab96f41982c6414e
BLAKE2b-256 86b946af2785a24ce65b95c597ef1dc74a5df09001feb5da0e75367d6b07d61d

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da4b5d2bed0cd493f81b9a4a30b4d6a865d01cdd61eda29c5f021044518cbe44
MD5 245c4b4fcd9c9670b6176a5dda57159f
BLAKE2b-256 3d2748eeead1d6786b1a27157ce59c5814aed6d1333fb8faa308ce945afd8773

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b24c274a8634fc8abc74a4bf0b93c0143713882600d88267263847736afd39f6
MD5 41c67a2a278d0b69e1f3c6345acf1da4
BLAKE2b-256 a1eaef8c4ef40b4cce78ed2adc148106a4430019e8469e3818985b3c16c4fb21

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d02ae61d686ffa0facb7b46b7c7866a1c42656b25e8d12c2774df280071a4182
MD5 1bcdf74e35073288a09a891167598c79
BLAKE2b-256 79844e18edf44f8aaa3d616d6a8e9cd55dad9c8487c6d2beb62c57172564de57

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-none-win32.whl.

File metadata

  • Download URL: pysqlx_core-0.2.0-cp39-none-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pysqlx_core-0.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e022fde34d0795548bf55bc44999c87976f9b9eb5098144f9140fdd343ee892f
MD5 d1330ef1a57dac8a204d6e47cacfccfd
BLAKE2b-256 afa3d2c52ab386cf15af45968f8925a0d6378dc8c5a78d459c778457890cee80

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 906672627eb2ce16de7331706a69436f0d00a10ed3878849e5a58e1958719541
MD5 7ad4c1ae00e3c77a96d145600db86117
BLAKE2b-256 6cea59d1f17bb80edf76fd99eba0bbc814e5d5e8c597900e55b992fe1ad86855

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8c145d95499801aa0b4e7644ef657ff3504f22c256b58cbb60c88e7a94c12178
MD5 645e5357845a3bec85d1e53edaee432d
BLAKE2b-256 309564132f3edca0d04e58d778c30e097b35bc70477e41b7d93aad1fa5a95dca

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 806c804e2ae0dff311d823e8ae474a9462bf77bbd27186287015beaecada8b03
MD5 22b06f4e12a0a9bf40d5fd7c94150a8b
BLAKE2b-256 5a616a75834012db77d620f5cea97e3d3aa8d92f480c094253294f676df30291

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1378eab1e40ac400ab18a378c34d7f51736ff1fe288b49721a23b29256276f23
MD5 c53857b1a84f1ad218da65016c174713
BLAKE2b-256 b231977f5c8bcd021b788cec209bd86e65da06222ddf42d67995f525950e4869

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9415a2e2dc28cd161b641584fc6da1f710281956e3f274d6971608621ee8d83c
MD5 d5b35801067e2a3fc2d0b3df196aa915
BLAKE2b-256 b2a9594ede757402686b0625b80a5448c70f38fb09151aa5304b1087d472e654

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5b85d1f23c307bcbccc6da63e2e42c37f468f343e5226fd76459f222d079e26
MD5 557499a8fc24398bb5665987e1c68a77
BLAKE2b-256 f1f4f2e0d5a59d7f37fae105098a97741349058e08c078696ed272b3d6776a05

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f10ea12d10ecea92495be2135d9c63df2d8b8456841932ca0e7f107a904482c
MD5 64ee6c66eff142ffe55e69879fad9cf0
BLAKE2b-256 b6b5b13a70b217eb477200de9d148f2730ddd796c2a6edd88bd80673776f9e2d

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07a59f084fa49919249b366ce45c6a07596789cb87b338320f62ceae833135b8
MD5 9fa564e723ae14e607396ec26f43d985
BLAKE2b-256 2b302866507f53a069d66798ecd26660576354f7a72567a01de81490a5bf5e23

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8da6d3297abf37a1dafa02109b98a90a9ef2e1540249955a372afa5b0e4f0a2
MD5 827ae1791de8a107e1f02713571c0250
BLAKE2b-256 02df146896fefe8ccd3b5eb498428f4ae4543f89fbda1842930a84bf022c6eb0

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dadf26ca5b6e04598c62a77c4d765d40447607418a548d1e8b6a7374b52e339e
MD5 e6149b8cff621f25cd1958b010e7b1df
BLAKE2b-256 6a6cb7f68a7a0a49d0b35584054898f7e6dec7fa95c1a451138f8cfca8e64e92

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2d57d073aa81902054afb34090dfe56c982c62490d936685708741d70bc55349
MD5 844f7a8b56e3c1bcc12b8906359b5ae8
BLAKE2b-256 281474784b0e7176a5977f9dfddfaceb2cbca6b1e834de0b8f8ed7865b715583

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-none-win32.whl.

File metadata

  • Download URL: pysqlx_core-0.2.0-cp38-none-win32.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pysqlx_core-0.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 9dbfaa8da53a71f5c67f811e1239f10ee7cb5dea94e2ead5c90a3d0713309f85
MD5 71e638dc2e9fb244329180e55eda1072
BLAKE2b-256 61b99790206d203cadc1ef17e1ab67dc41d869ab2d8a8e026a16a6ae106f7419

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a909cfef0a5924971b57ad0994332729f72826de46a3c370b14846baacef44e
MD5 0b239172d2a8f82acc1bbdc2fcfae44b
BLAKE2b-256 ebe4c60c8ab8dca9006192300d9a879be0899178e3b6bef3beb254f7200d578d

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8abb0f627bfdcd333a8984645b6ce25fa74def7f399cbea008cb58b3670ddcf4
MD5 8dad9c985ddbe126be2515330189339e
BLAKE2b-256 f3c8bbd5505a4a39de1a3103cf5798120c01be8fbf797fb3f23512d28aa80bc5

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50328abd689b3f1539b022f283c4ad32006f0c3a3f621efab89b3bc2e48d5c81
MD5 5fb4a019ecd6eab742db360b40a5bbd2
BLAKE2b-256 0eb122310462d249a83310452f5e1cfba1b9fb03e1ea5a319be7b8b88970a6cb

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f9fe9a76c2a47606d7b6a76dbb1ae5fc2354e23dc4a77c6b719d9580fdf023c
MD5 db82e5fbedb77aa55b37a48c0f396e78
BLAKE2b-256 925c82eb9975a1252e97d65155ad8e4494866cb6f951300986137d9dc2c1e670

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1524bbf850ae3b5d7f77e89df32cc41c44fb61a3fd5673fa04d1cc0df4ef1654
MD5 18b938eedc6d32b3faffcd14ad4b4fbe
BLAKE2b-256 baeb2d1c02d6eb34abde6265ad26f77bf87f8b42a01e290f194985934d3b6be3

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ed4026fa7e4712577ba732b9c720e75b134bebed518b30fbda5479d25fc3bee
MD5 b6dbeb7fec63c6085d7c14693d47a169
BLAKE2b-256 a610ae98d30b1bf0277ab94427485e0960594dd9ea0b1ec7f03b99acc99ffd15

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bbdc2f952673afc6f1ee915bc5a881913959785e307ecede78b6b70c88e93e68
MD5 9d10649ec32dad65b726d746795c9ed0
BLAKE2b-256 030269dc9664da6c90a23711baa33fde3e730f8ab91d610b8a407074c46e648f

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46583f90dedbef5a840c468023676c6906e925b30e9608dcac17aa86534ce9c2
MD5 a8a66f3da339608e7803a47dab581e20
BLAKE2b-256 5dcbe02e02e734238a9ddee314572070c042baad3b5c6eed221a41969b74e0eb

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e29c0aafb0f00710e3f696bd9b82bfb54d7f12c1da5bdbeba9b77baca4ca3a00
MD5 c6a0094bcd98c6074f0e50c7388e3d05
BLAKE2b-256 4a38f6a7777186350f0d0c527a4b6dda6ca15fe6f805b73e56dc43735cc2aec5

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.2.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83a28d63b72fb040ae3e01f59b247d44cb930e3d2458b7891f23ecfa87fd172d
MD5 651ba7e688db5bafef96a2836e24a2f2
BLAKE2b-256 a2a80a624ced07aa8242d6777506b6f7605e53b40366460797b49e0bdde6be15

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page