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
    await db.execute(sql="""
        CREATE TABLE IF NOT EXISTS test (
            id SERIAL PRIMARY KEY,
            name VARCHAR(255) NOT NULL
        );
        """
    )

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

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

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

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

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.1.51b0.tar.gz (208.9 kB view details)

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pysqlx_core-0.1.51b0-cp312-cp312-musllinux_1_1_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (5.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pysqlx_core-0.1.51b0-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.1.51b0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.1.51b0-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.1.51b0-cp312-cp312-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pysqlx_core-0.1.51b0-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.1.51b0-cp311-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

pysqlx_core-0.1.51b0-cp311-cp311-musllinux_1_1_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.1.51b0-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.1.51b0-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.1.51b0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pysqlx_core-0.1.51b0-cp311-cp311-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

pysqlx_core-0.1.51b0-cp310-cp310-musllinux_1_1_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.1.51b0-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.1.51b0-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.1.51b0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pysqlx_core-0.1.51b0-cp310-cp310-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pysqlx_core-0.1.51b0-cp39-cp39-musllinux_1_1_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.1.51b0-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.1.51b0-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.1.51b0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pysqlx_core-0.1.51b0-cp39-cp39-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

pysqlx_core-0.1.51b0-cp38-cp38-musllinux_1_1_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pysqlx_core-0.1.51b0-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.1.51b0-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.1.51b0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (5.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pysqlx_core-0.1.51b0-cp38-cp38-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pysqlx_core-0.1.51b0-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.1.51b0.tar.gz.

File metadata

  • Download URL: pysqlx_core-0.1.51b0.tar.gz
  • Upload date:
  • Size: 208.9 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.1.51b0.tar.gz
Algorithm Hash digest
SHA256 e89867ef5c2fe7eb8497cd538cff8ceca9ce5f88a5c9e14ffc30509a190d4081
MD5 01ee21c6240e38819c6471068d8c2c13
BLAKE2b-256 6d255813c9d78d508d35c918f752b487cedbbd7a5f18f5f9968932b1ee5ed572

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a2f9c01810f901d21d0490ce72e5a41d2d75981bd003790b277e5ed241df0381
MD5 1dc3df1e0d40ad59a21b153dcabdc87c
BLAKE2b-256 3c4140e52fb4cdcb36f835fadb084221fcd9bc1f69830c877cd6fb236a1c58ba

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7062c2a66ca36c7a59a24d157b3c3f92e4579d0cf3d002c6c45b2cdece036360
MD5 ba19ca89121868890944fa28c4c9376a
BLAKE2b-256 249f26b94836d75320146cf48c510c355d57e8bf1dd5815553a63304ad69c898

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bab527e768d0cb739007cc282dee5157ac5dace86ab376bce5f05e75b1cd45d2
MD5 2bc2da6c552036e7d0a2d5ad0fd888e8
BLAKE2b-256 a330d1c224cd5c7ed6268388d9f01d0d38c29c2daa6cd07b916c60b43a776cbe

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2f7eff2aa902a267b23f107e9392aa30cf8e0eaefbfa16d2780d3a96466585df
MD5 84743e82041cdc034b9a8913723ce701
BLAKE2b-256 f486c867707dfe80a4b58d7f8c186fbd272282ad631ce0338c96f9e29c7710ac

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37b759a378c428b7f7498a19ee567f1216aaefd58a34b5bcb51c3480051d3e9f
MD5 97775a50c88934b55da5c7bca1482170
BLAKE2b-256 fc09cb0a9f5e6c7f2246ea3ed24b763245aeb283266a19e5ed2d43b1bb80db8a

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ed9fa337cb568cde25863fc1ac7cb65e0b69cf1e586c9f8b808a7c9926e5cd4b
MD5 69d9b60e3d99562976fbebe748f18c32
BLAKE2b-256 454d04304657b0702218eb8574b3765b27a80f03df9fe6dbb6f3dcd12242a48b

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae75b9317d6de6d39bf49a82d30287f32fc9ddf720882a6691dce78bb2e9ce71
MD5 fac0a57b7463fbc4811df55659818183
BLAKE2b-256 97770bee915245be732603cb493ed6c8c09f3c0e755814ad28303a180e421b2a

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c63a317af0a2b742af0f6926a4c35784e4e8f56c32e71a4d879e563055dd9eee
MD5 aead32f7365eb566f4c74628fb07f3c1
BLAKE2b-256 17c701b4fe4142fef2d7029b31895020401df5279f97bb51eef5a8cde2de9f06

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 679c000478720ace76c5871ddb89f43b39805a193b9cc6d2fd5dc0e401a03a4e
MD5 fc04d27c9f93ff4043aa7d449453a5f3
BLAKE2b-256 ded60e240616a43a63f1cd6f230d87a5cb921d4094a831e6187c60c16d369a36

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 060144d3632850eedee9da7fc91595def74d36994d3fe3bce07f6b5f90f85861
MD5 0d1a9d2d01ec7774b4f93085522c0115
BLAKE2b-256 ce52d99e4384614bf6e607178224618941137400f8ba1baf431f3bc50309a33a

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40393896094c7442848e3f351899ade09d758d440a13d075bddd30aa2ef17305
MD5 3ff281a96dd2d0880e4b752f0d8008ac
BLAKE2b-256 26ec11c5c4a194c0d66e4b1507428dcf9c93d35f4f6ae5ee04804280dba4df62

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ad83789c33e0e9a2debb18831b92c71626e0515e61e022ec5807d3a78688967
MD5 0fede272f5b086de728354826927294d
BLAKE2b-256 dcb8e99fbede963831763874eec2f53a2cd5fdd369bfa60838f908d4e34d51d2

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 83ad9609349ef65ce6ed3a2dcec0170723a340254f3d96c60b13f33eac0a1622
MD5 d44501698806e3be9f2de36a1a0ff977
BLAKE2b-256 9de3e1b29d0b940526d5308c29a440a8cce227d6ff41ef48cb914e3a42b1c1b2

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e079d1b9005dfdf2a0c2d783ceddea4726d09274acdb88c3dad84f6a44cbcfaf
MD5 f2c33b2aab4a7d3b96cc5dadab8d73fe
BLAKE2b-256 80782bdcd4459c4e61902be9326b6ba03536eae9d605841e7c708d67f67a070b

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6283b0645e898a75ea0644fdc421cf7b1216d014d8820bcaa3de37fe050aa8a3
MD5 106583b50917dbde3e53a7c5f43ccc05
BLAKE2b-256 975e936be2433616dd64cb020bfdedc2467c0b1bd91bf769647f996fefe63beb

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eab8006618a5667cf3b29a0acb5788b06166408aba43dda8520293c3421bc69a
MD5 0862294ee903cb4ae5335f8244a64bd8
BLAKE2b-256 9a013658a9c603e3f1d50aa98adab31f41b4c9541c75106e6840dbff3e84829e

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfe15547c7a610fbe8dcca4885dc8ef997c38bd01d6aa02fcb36ce0f06d48d36
MD5 24f9d7af25558245c6b63204b96f7ef4
BLAKE2b-256 8e7f1a0a3ceba6ed70106448c6566d3de5527b29ac995013012afe7ac75631a8

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 984201b1fa58c22eefe926011811d710ff4d5da9dfdf9046079b4ffe6a715d1d
MD5 0ede76f2bdbe2634da40a9ca74ca90ed
BLAKE2b-256 ff3f433d2cd6efafe795ffc20fb7b96b743df3fa48ac66c0f34a2b6ce0a5d953

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c15c6fc8ca52e828f0252f2345a9f2d93520c8caed5dbfd602ff24e50aacd853
MD5 c072b4b1c284cffce004430441601934
BLAKE2b-256 856890d99b176b900624819dc530c668fdcf70c1ef36f185e55b6d09bca557c6

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bb080373ee686087d3fa7606a422c6e3a48a33191375fce13e1d2c2756ed9536
MD5 9f872243f3d153bf5bd760e6e1f26c97
BLAKE2b-256 469c3612737d988f370995a09b8affa4e3f597e6fae39a1542ca3b1f4e07936b

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dffc2ed9992a829d47bf114a05d465212bffcf4c5c7ad56a7195d65e1ae79016
MD5 9d84c17e791c80a18760dd2ce6dafc2d
BLAKE2b-256 e14807153ada2502cfd949009308210d2ab3fe3ac087e7ff767e58ed2db384d1

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05feba96ae0142de4f4818267f0e7789ecf691b9b3aa2075262ebfcbb63b250e
MD5 3caad25f5ab34954f67ca906e1f3aa66
BLAKE2b-256 112422ecda3e581af65d80edf6fa7c6fe5bbbcdbf9176b4aee21e433ebf159da

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2c8d089f297fc8b854291793a370e87177c4fb1a65597e9f44c29d597e6387d
MD5 dbaf9b61b316f87a36f23aceb8e00b9e
BLAKE2b-256 900f0ed42031d0400e6ae88e5ffb9ff4d1878c147d7554152e6905a6c48d790a

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9538ed4a55c5d6688ee0a3c2791808eac0da18f2537d75a87e699687ca33306b
MD5 2bb79d86e4055153f19218af0f2df28d
BLAKE2b-256 dcb41835b954ed7ca110c8522f08f8ec5341d7e229f9adcd69249dbce5388bf1

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d115d4db08036ddc46ae9d1d899d2490723a060cd76ec234a97e3471c9829ce9
MD5 306154bda674cc7ebfff721acca236cf
BLAKE2b-256 e4825abc20f5908e4e06717b2f292891c30b0f4aab784684fc108e2e9b2e2e33

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 bb74a2a7199549854068a448e604f2fb72651ba30cb306d2dffc91435457536f
MD5 2f7ce96f19eaf0fdb4606b69f11ea3ec
BLAKE2b-256 2437274f35ae588169a816fbdd1b25bea730b6c65c3ffa771d62f8687dacd6a5

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 33b37914b0b35d708afbdd1fb6cbdebfd695aeae2d6abf755fba0bdf3f99db40
MD5 874ed11d24c0890862f40abb469ec4c8
BLAKE2b-256 dae6d754d277c38239a7a80ec7c7ee9099293bb6de1968203198e37217cbff2d

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4635331a5468990eaf453ddc140c3895b09a96db83f6f3754129e5e49adc01fb
MD5 1c11e19428a5b935fcff4a8fae3839e1
BLAKE2b-256 cbf8ff085a99d879b4223d5167a6fbe64c75725c1673c124fb0077826a688f24

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9b61f9c4d61d7924e38e1fcaeb54599d2775be216b7963de6752ac118182536
MD5 970965a131abbe60c664dc3f3a328218
BLAKE2b-256 34cfb7cc6a2b2c5c22ccaa129cacb4640118cd9a3b7ce9740e122f5e1640069a

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ee5b649a484bf283d8368ed6aae15fbcc05977b41040200f135f3f3f55f6ad2
MD5 d86285c3426713c1ef1e0cbddb6b8ff9
BLAKE2b-256 7fb3a61a27f26a991cb86ba5a9a02f96345987d7297925555fe6c249f9c7a6ea

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6fc3a22aa5fcfc9df90894ed99ce30104ea38b39020895be2c30a7ad906a8f99
MD5 4b6e9b27b9bbdfd49fc3499fabf15824
BLAKE2b-256 0c1ca86726c486a353cc714518319565322ca7a7ab1e09a046a5367f7098e23d

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e8c18b59b964107716aebf65f829c0aea91c8a8e5badbbbc7b1956669f145055
MD5 4e8fa744163371a03aad268f051b1f7a
BLAKE2b-256 69aa64a1362f9e6ec5e9c894e8a34cfa2d81bdfba27c3a6b52ab42528aee7085

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 825fb759b29f36c3f61fba27373d2c580fb140b86bca8a193f8e350ba1a54925
MD5 b28e02ed66815b1f33593fb5b71cd7da
BLAKE2b-256 ab1594d036a405d1995fc37de0933516189cff53b3deb40d09849a0dc0b1c594

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d785f4d88172837a795a2ea65f13d665caf4110e4d86e2345d5455fc401e93db
MD5 2bcfbf73d78bb2fe8ed4e55faf4b27cc
BLAKE2b-256 2a0dc349d3bdb1552abaf39ae162c2a71ddb275cd1c2eb08d2932831817d2e77

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d403fee332e8b1d0bf6b4807fbaa269536d537ae8b6805b2399cdba971b0c4f
MD5 dc45e2194eae03ec545a421e0fc74bff
BLAKE2b-256 2bdb0c47e85ee11b04e4e6c0b95a641ae65e4a99faed40de56ac632e4b4435f7

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7a7d634f7e8633ab33218d22c7e44b687c9d8719cee76f49849762d746dd1a4e
MD5 83b0546ad8765242b0835e2cbf9edade
BLAKE2b-256 9d20312a4f9935e159fded2b05a770b490bc638098e312187db0418132aa2ce9

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8cd70d0cee9fb4298b768d769ff8198e523a08f2e3e359f5658b1ba19988a374
MD5 2f26f527c6b147ba86c5af18747599ce
BLAKE2b-256 95914f8c41bdeeffa0fab1f23300a30faf721aaeaabcc573856f67ddb86025f1

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-none-win32.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1888fe99f81c701ea65f0e1ddab3c4d4fd3ac434ff396edb880bdfc2c3c95772
MD5 43be1ee52b3e1984ca7b0d7d61dd8a05
BLAKE2b-256 e1016eca55c28151b4dc4cd25d59ff33df7d231b98d124f14d731366ec72b661

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c65917c66862e987ec17b4c5f03216db0562fd29aff74e2689f0b5ceb406273f
MD5 9ca746b58ccb62c044ab88d55f083fd3
BLAKE2b-256 f7625a428d8d2b0938bb58d14e4659c8f7bd45599e18b07910c0efdc301c2ab5

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 63110d0691fc5c9f73a9a7cc8ce8fb2744696e6a3559d0ead076ea0dc3b11a88
MD5 9b4868c726a8915a0ec083d2553763d3
BLAKE2b-256 8779dac8c511b6a2c2b4bc4aa482999c469503a7e9bedf2ce582271a8087ff12

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47c61bfe6c9ed7e2930f9837558f96589a15738742a87980b89bca587ef18613
MD5 79fb7331a750b417b77fdfcbd44c5fe0
BLAKE2b-256 1816cc8350c6244e55bbe7e1039c8b717751c79481ad4d3b61ac2b17fc3191b8

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 729356610f2e576f97351fee543d460242de61fa6cfc8bb9ec5cc41557e7b952
MD5 abe09ab06489e3bb373a905ef77c8b01
BLAKE2b-256 babc0b994ac07393df66beac5b7f90a9af9b8639c13df1437c9eb862c16ff862

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3db011fe2d7fd7faa12012f9271889dc8cc1e4f153308eb6734aa016d244db66
MD5 23b46c7f8b89a68aab1123378d25a0e9
BLAKE2b-256 531845e491cfde70e39c293a073f118e4906f4ad0ec36f8d92c434bbe8abb399

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 72067b11a162ce4f9c3676696ab7ce1e1687a40bb62b79e97244b3e166e00ee7
MD5 270816c9f0ce1b50f5881f8133da2fd5
BLAKE2b-256 b7a44974e95ae88744e493e954aee71f6136b962654d6b41f2819815a4f8fdd7

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e6e79b9b78ae8300dc7667f34cf3f5c09fd31aa7798a7dd62ea7d636d803ef0
MD5 59286d391e406ee811afba3e999c925c
BLAKE2b-256 7ccb420dbf7ade93c83018d357ef5f8155d2c0e000473a61df66cd9a2e90aee9

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6854d895faa3fae97d5ddc555ea19a0e51dc9a9ec0000d2c836ac231daeb9c2
MD5 c82e45a1fb4c9a3591a8b8f778bd9466
BLAKE2b-256 4fe2ad04da70d6ce614dfc746b24fdf9a753a3108bc32b6f9f6e688e1bc58067

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ab32332d5961fcef85fc4cc8bc8883f2e251c1faac91a760c354d80f811cac8
MD5 9b50f6e948e884e4b7c88c1f7dc3bee4
BLAKE2b-256 c9ef6a2b18048c0f90ce31d9112b616325174e1c678693700b15d598bbd6f39b

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02f6b079082cc2a2a5f398dedafe1f869e448057c530aeb46d66d1bd6cf27307
MD5 855f99529b2f1fbdda88e80fe9f17626
BLAKE2b-256 27ead573f225305bf257622d60e0adba3664c67e18c5ef2f607a3ea779943c14

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 0e005c282bfba698a2a9a37a9eef42964c41e2aad5b1e0bbd805405f6b7c542c
MD5 a4ba1de4114266df0afcf7b01982195b
BLAKE2b-256 0ec658703508e65b0ca8297eda2a160570c5cc714b19ecad8fcb367dd9f90720

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-none-win32.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 983ee528f1208847d70f481147246688d77446a9628e88b00bef313b48223d05
MD5 c5a77ebfe22426db4e5b74653f3309c9
BLAKE2b-256 b4b98bb93dda8d3ed4ef015d70b3d280ee2e207d1da98e45f8df9684663e6ce4

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1df4ceddb62f1dc666707d259f3962eb7477fab13105c7fbe6d3a2c5946e9fae
MD5 4c452ac45b878b2f3e1b0b7d9422dcd0
BLAKE2b-256 b428039b69247269f2aefc56dd7587b8298989d002a46251f1abd28102d83f23

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 794aecb9957c67561484e82ef7f221469baae3bbbb0ce157ff5027c632b93dee
MD5 13b5959dee7b1c2546252c8906a27247
BLAKE2b-256 777b4692eadf0d7e083ef8827eb310e8f3b1631cf8239f1bd445ffd28fc7ba62

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4a7700e7351cb7dd9286137f8c7d255043580293e58aebcee241b482817c582
MD5 05cec50feee4aa35b184c0bc548826c3
BLAKE2b-256 9e330f8af1cccdb39f281f5dc148bd68da473c26d993313d9a29f20fde48330e

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33b9998b656b3a2ee331503c3cb911387986360c487f3949689a4093e2fd3e5b
MD5 8a96a6b3078ff00e3491bfa5a2ea9c36
BLAKE2b-256 ec840f875a5d26eb05cebd68019cad097943496c2c48de8d63911f0528c347f5

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69ddd2acd29899c636757ea7aed8157318ab8afc63f858cd993664b17e58d83c
MD5 5fac144ddcc89a325501753cbcfec3de
BLAKE2b-256 bbba06ffe51a159f4c931c08b98cbda6cbaaeeb6ba528b31e04581e07627a017

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebca387485fd4c357118f436deb04a30be61f0148c29cb2a7f07ced6cb6bb0fb
MD5 4bebceeffadfc4d73de531670251e878
BLAKE2b-256 c6216113817611cc7518027116360d3054af126e7a02dba8490cd6609dcf98ae

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 573bcbf57d4466b14c42fba9891e1ce8d577e06daed6f2dc583d8f17be9bded4
MD5 db719cb99cd7939bde5bc9a4ee920ff6
BLAKE2b-256 114601b256fe67f1febe9c90f87b64bddb228bc9a412e38706117ac8f5b098e8

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87e45f8cc8e987b4af52ff64e56c654dc3e6ae33513232a6c608e1d2d7215fe1
MD5 4ccb856246f349a2ae0979864508ecf5
BLAKE2b-256 3461db90b08773a09be35602348ccc51bf8337bf946bc8320c5bc864654098f8

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c018259231354d646c82d617d440193a6e80ed46d711959722458a2b109f321
MD5 38e7ffca97f15c0d955ea14caf485fc0
BLAKE2b-256 cb42a62de02c9a8401ab5e5eea9ffc233796f78a8032012addb4d9bfa4bd5b1c

See more details on using hashes here.

File details

Details for the file pysqlx_core-0.1.51b0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pysqlx_core-0.1.51b0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5434b662b75b98787f66403724611568aff096ce1a6eba91b4b8cca2b5ee58cd
MD5 5fadb9f83c357a400e2eebd06a5e3b57
BLAKE2b-256 a89bd6175ca6ddc9a2f641394d9b5b37969178b8cf5bd06ffadad56ccb669041

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