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.1.tar.gz (209.8 kB view details)

Uploaded Source

Built Distributions

pysqlx_core-0.2.1-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.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pysqlx_core-0.2.1-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.1-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.1-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.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pysqlx_core-0.2.1-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.1-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.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pysqlx_core-0.2.1-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.1-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.1-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.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pysqlx_core-0.2.1-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.1-cp313-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.13 Windows x86-64

pysqlx_core-0.2.1-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.1-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.1-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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pysqlx_core-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pysqlx_core-0.2.1-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.1-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.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pysqlx_core-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

pysqlx_core-0.2.1-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.1-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.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pysqlx_core-0.2.1-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.1-cp310-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

pysqlx_core-0.2.1-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.1-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.1-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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pysqlx_core-0.2.1-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.1-cp39-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pysqlx_core-0.2.1-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.1-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.1-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.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.1-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.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pysqlx_core-0.2.1-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.1-cp38-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

pysqlx_core-0.2.1-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.1-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.1-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.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.1-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.1-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.1-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.1-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.1-cp38-cp38-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pysqlx_core-0.2.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for pysqlx_core-0.2.1.tar.gz
Algorithm Hash digest
SHA256 7a9c7cc8d1e3249515dabb76bb085e7d6f8b2bd451009f894df3a18ba8573856
MD5 f2fa5e06a02d8468d1930a4e137d957d
BLAKE2b-256 2cc93c6a61b69727431b9a14db5e4fe926fd332ffbc2e2b19e548adcc07372c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42afb9b108cfb4b628f726fd15c35326be02722163c0f69c57629786a178849c
MD5 423f0af2be47eb795c726fd878c208a8
BLAKE2b-256 1134ce993936582c0a7e93f596660245fc6be6f09a578b75269ece42b15a4ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 66cf29360d90f802d5ff417e3256c0429d61ac61cfa1604098716412cb693da6
MD5 c6622b32138f315122b11f71ef0bb197
BLAKE2b-256 f13c278d2e489b39a89fd76ff9d471bf9a8da178ab11a99a7d47546094d47353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edc11c2f09fbe486e02f9dac2359355b1bde7f5cecb38db91fdfd77869d790bd
MD5 2a09952e3b131ec0d3c9d00b39ce677d
BLAKE2b-256 7e2baa8d3cc59c171daeccf3b8b5cdf83164698f9182afedd87d92e412ac238e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 49e866cb3484b03a751c9420544f9cea5d43d7074443d481b161325e92d57fc1
MD5 745a00d2228af7331bd53449f26c4d8e
BLAKE2b-256 7e1f88fff570d5bd6c2609cbd3509ad30d2e9eeb7122f0c947ebd3767d51af04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 766a2ce7b104248de91451c159e5e6c8637f688375309b52eea4822405607606
MD5 8d1a8f16f9a805e4757408bc50acfe5a
BLAKE2b-256 c7f1f081f6c4564a56c840ed85b7eb69a5d32856d50b6fd4d540cda5c5af2a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3272f9549d59134ab91b3d1336cda436737848e790013ef28b81d77c2622ccb5
MD5 08c846edd7a2e12f52ce31157a77c436
BLAKE2b-256 0760129bc6467406b6263f4df9c18f4a4fbd3098898e375f74dfb2332dfb4f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1080a8c897709311f2e0d77eb13d6f3336b61da9d85b93cdd8a7c7c4960f67e8
MD5 a685e2748e872a54bb1585891fb9247e
BLAKE2b-256 3a9e1c235f2c966d965c865a97964cb1fbd8acc3f6fda1b3d33ed7c3b7af3c9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a6be301d89916efe071a4b50b7c28fb6a8df1e3fd6c4c42d9f366f1c1dd20c49
MD5 52fed777e638935728120f9d915ea234
BLAKE2b-256 882bedf584168aebe47690dbfb39b0ac8d75a1a7a207445df3d649aedd0a5009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e065e8c431e44d185432857b9f15566fd2e37d411d29236a3de769f70d6459d4
MD5 b1463b7110bf63238533e067aed00de2
BLAKE2b-256 4b9a68d047fa99baa5ead466a7debbf1bbf6b9f76f67593a2928cd943468c1f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9231d8354c08196fc14bed76cb475ce9c09a41d2299a088bce04896a25c8bc2e
MD5 5b20c90f59c55ea3b5f0e9da7d0da753
BLAKE2b-256 6e0afd0e9cff761238dbe7f06e9ca012f1c97c0478d3495cdbd014f017bd66a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35c676b1b5d93e8d824afdd6c5c68d485634dda73839332e96fabdab83b85081
MD5 801601e61d054d50bc575a41e720f20a
BLAKE2b-256 be6f2711df42e098650c0126d98487020e40dd09bf9f51d5163b93d4e2b1dda7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6e62b7863afbe2d961197356a1c3ee05404906da142435f5f0b0428c27d16a8
MD5 030654f0ba3202661f261550eef275dd
BLAKE2b-256 023904e24f747c3010461568dc3bffd3d1bd69e60d4954fac05554b42610c90a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c8e218113b2698dca51a68bba40ba15167e2f5f911f45017e90cc883c0ccc29
MD5 a01c9a106307d0d6a4628eb1a6b19ffb
BLAKE2b-256 3b6efa882efd0dd44319dc642b75ca81fea8e6223e2f0b6ed3d25345eacf1243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67abeb6710036542fd1bc82b9b37483a00d5acebf845a6ebfcb91a377f681f81
MD5 4761253c71b1ecfda49c85280ec89ae7
BLAKE2b-256 c91b84cb8ba16861a5abd4ef07e6fdb53bc30855f005a554adba43d38a85f145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 a7620971b8241ce2c5fdefeaa6b4becfaebcfb14e0df871e3097ba4b2de45514
MD5 2aad323edc7c6987f77f3bb4f7092ec6
BLAKE2b-256 55c5512ac4aac3dba818fa3d411f3de5daf25685a4d712bd431ce45af7613133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ff41f1bfd9d4fc9d17b22829c09aa075415c456773efe6d2ec3b973fe70d925d
MD5 8767fed874b2b5315a729859520b0554
BLAKE2b-256 85451b5d37c564f07304bb85fccca59cd3052160cf4ea8fd11bd2de8a71e4148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0474e3b4f6481b29e25feb13419a6d8e5c58d9351ecca8ad7c9b6841d38e4416
MD5 c851681be2b82c3bc26c0ae9ad26e7d2
BLAKE2b-256 e24ea9d9b6a68258b4200239be4728cf722ff5a2d2c35509bf1d74f66ed9f727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a88435dfe4db6eebdc4f8d5bc9ef95854a3241f33b897c8806b1d3cd3c06c296
MD5 4462314cc4a08ee38f219d656d09122a
BLAKE2b-256 f7eaed96757e61a09efb6bcb40880b7102edfbe0b8f00d411953f9f1a049f400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 13c4445dbd47fd323576b1a8c141b5a6f735c8055861c8e5e9483e396eb1381d
MD5 926061ddf2661b4177f8d237a45c164c
BLAKE2b-256 337eea7c217b6f2c74b7a37fe9d834f8a618a52aa1ea598e3fbcebe422776ab9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08fe7c42dd70956bc8a135379a56f04d4bc34a63c997338c84b5647970943ba0
MD5 95e56e660e9340953ea460d58ee5fb48
BLAKE2b-256 3ee0d08e49d0b8021ddc7ed501fdfdbebe3043ec7d4962cfb5ae3a9eeb6c6580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a9c01051b9ab8de65ca67e4260f827d9fb7135cf68912350be60e64fd756c82
MD5 3533a5c6c6863164cb3d97535e056675
BLAKE2b-256 56e27b26d0b767b451b29e12282aeb3293b4da2ab9e7b2f4002940776dcf641f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c6bbc23232d86f003faa809e44bc05760a89fbe71ed983c51211610e6e0fffd
MD5 0ae9ed5b4ac5656463b3a011545093a7
BLAKE2b-256 d456d9e87286d3fc3219a06d5938ec222e15a3112f33f4496442189b69377788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72bacc11ba40a755bdb0d193e7fb5549ff9777a184d4a30414e4230fc7e036fc
MD5 899fd2e127f0bd84c9662296f6b18ddc
BLAKE2b-256 65674984d2f7918eeee4d5995252fd6ea46f646fbcede377b9173e87dad192d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce308a7142837cc9e3a045abf070826e16471e839e8f4f7e164cc5e794f4e2d6
MD5 9222258e8532b07ddae92c8720d98b16
BLAKE2b-256 28e92ae3c7d5adfcb3cad0f3e14c1701c851be2f98613570af288fe91f54b10f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e27d1fbb9a895ab4493e7afdee5ae88b0950c9c19eb7f457a35ad79e1b779e7
MD5 8d4bcad6af96a1bdc76e8dc018a28ccc
BLAKE2b-256 ff403cc4eb48e3331a961bc14166491230733d961d9e1878229d8fb7bae011dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d3d8e8c090f57f8939953540b72e433fe39f13e598b264c0457b011b85437551
MD5 8466142953e86fc05babc5bb16b4c682
BLAKE2b-256 dcb4bd6222ca1c4a765aac5147b5a9e36877b171198b8d372d7dabd9b3475cea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.1-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.15

File hashes

Hashes for pysqlx_core-0.2.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 1427ee740eeb1b85729f5db97c95f9584e2959fabc0ceedce141d6d0472f6093
MD5 9424a9599971e1f6479aada2c156d97e
BLAKE2b-256 922e2af054e05931b0291fdff182fbe7cba87546643ee7a9cc61120170f097fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 925ca86f15b4a2540fb49f55ece83bce64ab543a33dc5939e088ea6110be6dea
MD5 597635e12d8fe600c8a6ad6b0f6abf11
BLAKE2b-256 f6da9023dc644527ca40bf2ce22af4fa3f20cc41e326bfc8b4738c3872132e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cd56c52a91a976001ca9f35f82e6946683c924c5fdac9890608f3834b956d3bc
MD5 3e8b077996df695de617c0852386dc34
BLAKE2b-256 ab89d41993cc4488bcda40eefaf8b9a2bda2b8a5d475efe7ad5969395c2490a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76c3229d75ae82fff6cfc88b873dbefd40d9c7db140605685a0e171575652791
MD5 49dc115fb4cc3907a6f2c95ff1af6864
BLAKE2b-256 8829f1a5edd01da0e1ba07a3e3de640fbeb86507799410b10d541a54a3f052ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc0442728c22a6864653b0091f8f89abac5719dcd4233261f9a2eafc4b099c07
MD5 111ff65f38da3238c43447d954806f5d
BLAKE2b-256 dae359606780d384a6a7b858c8cf9c51445e37206f329db0314337bbf9ee0e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09a3d33570fe954ba311d70a3f98c7228f49a285a6426611b50fdd7a45095e9c
MD5 8ba4fc3cc10d9b539a070dc61d98b437
BLAKE2b-256 6ddbab7a0f44c4a85f1f53c7d8f59e549848fa9fd51144ad48311e06b34536bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 781ecc445167b2613a20f6cd6c014d02039476fa5a462ceeb555801f167c35c3
MD5 5defbbf2b84b3083f7fa7455142a01c0
BLAKE2b-256 be04381de6823491b27f5ac61fa42c4998a36d078033125833114ae95e740e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8bac470bd268e9ba671815db71900018a8100c185c16c9941c33d099b990433b
MD5 e9db6141d08190bd23ce2882bb8c88fe
BLAKE2b-256 9dace9f2ae28c06e47e2eb0759043eda505ffd0c647be14fcd50a8ced5edf3bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d9fa5dd8277793915c1dff2435f4e910eef574dbc326251c7f1604e1babf569
MD5 d9a597c3424cc1c5b77cd3acdfb3c0b3
BLAKE2b-256 e45d55b037f64c8b0de07bfebed10b993663d9bbf4ece02af6f8c69202f1c646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16196c8024bc87138ac38984333f9ed491375e7ff71843d28d7d5c74015d54c5
MD5 73517b64027d432e28aac0d0c657f883
BLAKE2b-256 4f6ce6698b9aaf9dcdd2f029ca842899d522495330b7416315ff65fff8187272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a26842a9bfc9b36aafa7095aa08260f4f193eac86a2a663f97706355b07464e
MD5 7e82b4d4b63f38396105a78b910ebd3f
BLAKE2b-256 af946093a0675e87ad62e8a0a1cb85c52fa182cb174532c541a33a25cbb6c183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 08deadea590bc23f69fa8f9ed953a21bc1af290315c6ad6d37bcde09678be3ee
MD5 9edc1bd4332ce4c842d0ea0fa6019a90
BLAKE2b-256 06f33ca4a5135f73fcb35150c78c760460f124f9473453596b5052864f772f43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.1-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.15

File hashes

Hashes for pysqlx_core-0.2.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 23016cb1783b65a971f3fd92ba02f2a78ba20fede2a098d491230f474d6df327
MD5 22e45419a299d384927113201ebfe153
BLAKE2b-256 c7990e1353cd086ebbc1592dc9b77442a016402f29543ec2364b3eb77283ad9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 70a11a13a41fa68d61bf9c39bec9377833bfd6638b047ec84d29d9664a38051f
MD5 99ebeb6f348193ec241164ba460dc8da
BLAKE2b-256 91e1f08d2fbb45f4fd0307e312ee66251c9f4fd4e234c083ea1ad5e25d6fe419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 46eda318d619129629f5bfb75d284f3ccae6770e1f42d9c8ce5d89c29a948414
MD5 b9fdbeb5481d57db5e7df29ca24f8fcf
BLAKE2b-256 651cdb0017f5acdf4a8028339c447942957a542e32cf0e35794286ce1aa132c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6be1f5c25b977b913e63e3d3e3b6421a99cfb2c0f74a21dac295f9f0d4ec59c7
MD5 66ffec966328e7ab82c996946760e388
BLAKE2b-256 e4437ffe35af906ef1d0d4d7cc89fc9cf59ea56e936fb7d6a2609796f108d4b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af98de6a9c251ff0bda15f8bd5fcab8a15c16949eaf13ca27ff724ba4aaed388
MD5 3699679c1fa8b26170274d4839f19f76
BLAKE2b-256 fc4e10fa1a620d10b7ee23ecaeaeb41dcb0559f093e319556156b3f848ba0254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5950fd18ba6733b4f578ad8e0be7248ba9516e0a8447e21ab7d3e70514c985d2
MD5 ac3fe338da723207a834d994ba2bbae7
BLAKE2b-256 4e0abfc5b1ccdce828962369d8ccca776307f2853a4d1fd499349c9c0e626f31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2ec3a2cef7cb3ec8be951a9fb91b401f14e34c03e717c4bd055060b3c214cec
MD5 6bcfd197850d7e01d60864ad6ca788a1
BLAKE2b-256 8b303262db698adcefb1dd7fd979b9c4cca6004266c6293f21ec09d554938362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4fc63dbcaf7eaa429349dd1b2f092184fafccfabcd4f17078cc3db02fa90192
MD5 b70a46b9bc7c154ab0aec320a0b6ad99
BLAKE2b-256 ce6d64a1f21faa00ada5a24ffb6ec6595396bbc3b529463c051ae920b76ab4a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 212862869aedd3a77a1ed0ea4b21ebe95d6098e0cda39d007ab6c76cb68804ee
MD5 b8d97f7f5913e15e2e34a7067e84854b
BLAKE2b-256 6e3e5a40f45345725362ea5d5dbf189ceb964acff2199afd40e0db66efa334da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e88c4420f3ed9a51fbe33f9b2cbb65eb5727765d214bcc2e1420fa2db95b2422
MD5 2efd3e43103e2ec83a992927b7fba4da
BLAKE2b-256 5b43ee69f8ab2cee6b55bc762aeb3032a04d375c8fb6b2114da70c62c2597985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c22ebca0cdb3c61c8c32a2adbc9288610b828446f13a67e857d2794e30e51fcb
MD5 bfd2a083789a251404bb8ced45e6f072
BLAKE2b-256 f00a9e8671478b80af3de7b1b05608c7ced00974e29f15b006d1b598a86a2a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 4a72e4e835c5b7336ea4e705a35301050c448702b6962cc89aa87a6b6c9bdc37
MD5 636f5485ee3ef50201d27906812fc3b7
BLAKE2b-256 908747f5e2055b11867c75cf706ba6c2516b73cf69394e297ad684aa1a1f2b4e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.1-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.15

File hashes

Hashes for pysqlx_core-0.2.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 3947b0cd3eefe3d00ac9b157bd5b60be433bb0ba4f0f5ef8b6c4f1e70932a9f7
MD5 844016165dfe5ad4c1e3b8b156848f8d
BLAKE2b-256 deca52c9187fd1c7e02752517109558f6193fa076394039540d34aef0587154b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 894f4770a1348931a2d85417e098609260f0598703119dcca4288b54759ba024
MD5 7a4174a1d6025b4fdad92265e6e458ef
BLAKE2b-256 d4a2ea029ac7a0ffa6326b2e362b555973dedefab0b0c27ae4852d364c875041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 65d13f39558f42ed2497506e6bd07344cb83bb4d5e9b3e5d098136d8e375c925
MD5 2979b3fe59cf6141d0a3698d594c324f
BLAKE2b-256 93d4473ba5a417f89ea5be48572f1ab4bcb8ca69bd79a37529c10823f4a3e27f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91f6c38c4fcdc193fb6aa14edc3f68c24c2f8c21c703b75870c8b80f01112298
MD5 c44d5baa2a20fbba9fa1805e50dd01b8
BLAKE2b-256 68b151e789f5861fa81623a49977fa8f080ec12512c5a72f799e121ca05d1287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6aeed4208f48b4baa541e8b472026922e52e9523e697032e6407149ee534434
MD5 5ed1448bad32774def1b041d4bd0d361
BLAKE2b-256 9d513607f5f8af2b5b0aa885c63347314d474d5749c4d5ef5d5629329fe0eb69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08b3b6f666582226c1d3fadc29793a201c7f4a1a74e1b617fcd3f99132666a6e
MD5 d8e6f91df627acc77897f2c2428019e8
BLAKE2b-256 ad9a2ca21de80fe850b93b8a2e2b4f852ee5dd99f0d160180926ce3a448ec4bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45b7d9a700d2657a91a84ddb85793b67d8cd52280613b8969701844c524e2ea7
MD5 e1158c2ff5f585c38aee9e3391b00a8f
BLAKE2b-256 1706a7ee9b4af5c51cc0cd510e846666710b5127584fa3e026d3dec245cab2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1124c98ec2f84778f9eafe29fb6c8a1bf30bf14ad1a90b80a09f4bc91c70aca2
MD5 e3af184020fed2630d793555eb6a3d39
BLAKE2b-256 1b03835875282375cbc59db72e4b9bbfa7feee14994a22b8175ddb7d957e9356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b13c9ce03e64abd4679837648dca4c4763be47ae3e3bb18eaa9525fbd32a8c9
MD5 52435affba23ccd3e2a8a39d3fc6463f
BLAKE2b-256 e0ab7fc0246706b24e58b998f341af18d76c7488675434eec4fa0e09ec13333b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd26633bc6d65544121c2b60048d8a3212b5aa8bf9ca57500700bf426b978460
MD5 3899c8b426c8c12e0771074ee20da6e7
BLAKE2b-256 e0e3acd78523994ab1f7a12e802f26a91de5979e707d3c239cacd72edad785b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7043eb61acac0f0b41ba1ad63c86526ba8c7a4019654441c7b673c4e8fd997d4
MD5 8ee1d357033d1cf333c1e9ee5ea10b20
BLAKE2b-256 eebcd178ee5bab0f14acb5a9fc6021d4cfbb7115b219c4b6fc243f7f32f8dfaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 dd4cbcf4ad6690c140006fd0f3c651f5f44c2b83f4d6e17f12fd049f7c0b429e
MD5 a5717595da5c16a9b0be37c58c1a7490
BLAKE2b-256 c508c42aaf6087fc4c3d8af0fd4e475acf9064f09db8289c5a7b8ee30b4ee7a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.1-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.15

File hashes

Hashes for pysqlx_core-0.2.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 5fd3e4ce4a2cf8fc9ae4ce18bba4923648853cc0a4fdf0069750cf62f39e3fe9
MD5 901b6853e4c91c2dfc8684efd032fc98
BLAKE2b-256 44e9d1e0e6c1d7a50db7f749030642e69a9b4d6353391d1e1f5c48fae0f7f958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 03fb1395f89511fcffb7e289a984820ad53e672542202a2a273ff05d76c73489
MD5 5f56aa31655c7b77e0d1fff5d0c72239
BLAKE2b-256 a1d9c3e570fda639c51618cbe34fd6a8630f95f264cda236b41c1beae6fcd15b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4e950d6b6aa574297d063cbe93482be6899e85c9b07e99074f754c314a437eae
MD5 ed0a0dc20daa63aa308dee072604b761
BLAKE2b-256 c48d2647564a0b4fc03da37aa70d7fbcde7bcd1ef07273c30ed0dc2c4a045e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17fc29901ded9df28c74cdebc3395aeb33a79f9f352da3ba566aa8f3337d65bb
MD5 578c860140440634fed787fdcb89f5cd
BLAKE2b-256 21bf3d7ba9db983abb3bfb39973b7c02605271b9f7089ba789b24900631eceea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 337316b4c32df746cbc9bf0ddc45fe06e06e5a97955fce221b9a82f05d989bb6
MD5 6cb70ce3f27adedbf7578e863ea30679
BLAKE2b-256 f9274040928d36639a4927bad9104cbc5fda0687ac9f90452f80f4e21102488b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 881f7acb067c12047c44612b0e22a6772d1751099ab1d45b1f0e75bf46817e01
MD5 8015b3be1675263eed53a981f270866f
BLAKE2b-256 880c6d011fff0b63cabd9526a4b31999616fc7ffd72999210a4c600888b6c97a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a6fde5824a5e9b161e2cf2dbd73208b15e0a30cae25f530b29d4923bc6b05cf
MD5 2a432a3a65a67ed3f18ebd133e191216
BLAKE2b-256 a8aaf4237f9cbea97d956483f03351fe665a22695778c72d53b7f709aca13764

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ff013dd45914f529d6a4ad67903870d14da53772f127e0f93c148eaeeead1b5
MD5 c1190040e9baff8667d9089a91ae165a
BLAKE2b-256 84a1d013a26f35ec82fdd43efa4e472901536af7308f008b4a2bb5a6552e12ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8972b70e5a362247d05d9054140179638c97f25e2a2652ead588a32687fe92d
MD5 988dbd2cb7e71b1b510fe8c157078be0
BLAKE2b-256 2eb51b897d57a5bf99eeb0a542d2c3241be71aab298e1441a18956714a955c5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d5b0e1124289c347edf643b834bd68147f4dec5c7bf26f94cefad3d6e3fa5b3
MD5 fc43dcb5f6b6da903afd6f8205a71e6d
BLAKE2b-256 b0a1868872030f6f9f956b635df7c167b88e235e0c93ee39edc5c7e4eaf16241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 77cd51ec945c8ddaea8f43371e7ddd50fd451f4c7c7436fcf1904e36f670c6f8
MD5 1af0d1e2e13bd1cc8ce0ff39c4c57889
BLAKE2b-256 834b8b7dcb9029bd49cc283410c183c4b4c1f420ccc08bce8b9791ea24154ae6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 32d2a1605a470cd8e28433bfaa4a2b6d0a362dd661d53f08ec2261c4e635197c
MD5 b25d5f8d4a66b721f02bd2df49b93b75
BLAKE2b-256 10597b34203967fbda6a7620cfc12856208e96a60cd16906d9066b586fe10e4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.1-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.15

File hashes

Hashes for pysqlx_core-0.2.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 9dd7ab7b772da7cc6b06a1fe17ded8b5b284807fa944d260c7a8c846cdb4acde
MD5 4eca874bfe83bb3029fc61cf82f03b4f
BLAKE2b-256 6c3ffa5a4c9daafa9240c5e6bf6a3e536552d79f7db6f6c66c100b10629a930f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 23d60add2809a9204fecd966e62d22a88b287bd1ff6b94d6824c282f677e230f
MD5 19a9b2380cfacca05cd662a79b7bd192
BLAKE2b-256 bd6907e54497e0cf8169aba0e2c486e7dd74efa3ab2966fe121de10b06f6d49d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a91e866098ee61e17097de89ef1efde245eb89e065067087bfb815256500dbbc
MD5 f8fbe9bcadd9fa7c765e78911fd3089e
BLAKE2b-256 e546a078089f56b7f716e943d6bbb3dc7235ed1f480e699c285f0dffd1751bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c819641e216811f249dbd3fbf5fe4fd17bc1409bd7df3f9182515e70b308c604
MD5 c6fd2f3b75c662573a9341a9610702e6
BLAKE2b-256 3a8bc56c600842c948bfb96366473107e4ada9b13dfe7045387ac237f8c2aef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5e4b19acd11d633e30f65e03064c1132b5c5f4b18da5b0df6910e68205c2b3b6
MD5 a5543ad20732eae4f112679a8c31a1f6
BLAKE2b-256 7f5c6bd9363c3c7c0198afb8ffe2d478ea5bffcc3d800b867e924d5bb486b16e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b5efb2063a8660599c280105294f04086ccbfb1840e090e7fdba7ea2226fb7d
MD5 350f89b7a1183ecf1e44e5b938efa2b2
BLAKE2b-256 0947b471c1e9861d653123ca82a37b5a5c6271d71e7fd480067130ac54a2f53f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a10292d04358f14d0323944f635bbc4fdcb7ce498097557cd574f47334f2a0cc
MD5 1255383a18dae9c7e17f6b0d27161c31
BLAKE2b-256 4ad689e798260df3246b4fc986faae23fc34731a6525ea2cbacc172e599db90f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc05520568d0076bbcb0f31561a498a8c124d8380f091b00fe3783bcf96574f8
MD5 c8a120e3ee81bdf28cd376e3d79416c3
BLAKE2b-256 ef9f8923d23970f3724fa147de7dc8fd4176e1cb937e2b0011186f86fafd813c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad22240d33d5efaf1142334ba13de5c5ce93dca00bbd9b527a3812d76e81c879
MD5 8f8a765be4929e60a2647bec793e2324
BLAKE2b-256 a0cb0b5a5bc1bcabb4740ff668c55867a87672edd0b397ab8a029cb79e6290c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b624c2dee0db2629bc118392d4adaad694000c29bfcd81ddb6b8915cf62118a6
MD5 36e9f791d0deb20cddc89f153c970f1f
BLAKE2b-256 8e81985955e9d3478e704fecb31be58a689792a0b1f20e2316922980f3a2f404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07102ad36b1d9e916f8467698558e79dc1837f8cbd16cf92631b079531b6e1ae
MD5 f05da9bd4adb9adf57a8dfb201eae529
BLAKE2b-256 f3696d361b2746b4b1406e56cd0f9aec8d907be6a967588c00588fb059af960f

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