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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

pysqlx_core-0.2.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

pysqlx_core-0.2.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

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

Uploaded CPython 3.13 Windows x86-64

pysqlx_core-0.2.2-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.2-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.2-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.2-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.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

pysqlx_core-0.2.2-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.2-cp312-none-win_amd64.whl (4.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

pysqlx_core-0.2.2-cp312-none-win32.whl (3.7 MB view details)

Uploaded CPython 3.12 Windows x86

pysqlx_core-0.2.2-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.2-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.2-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.2-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.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

pysqlx_core-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

pysqlx_core-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

pysqlx_core-0.2.2-cp39-cp39-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

pysqlx_core-0.2.2-cp38-cp38-macosx_10_12_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.2.tar.gz
  • Upload date:
  • Size: 209.9 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.2.tar.gz
Algorithm Hash digest
SHA256 cc47015feaa184f23d97671138600573b7efa647c5508f5dc64ceec82fbf89a0
MD5 497a961165ea36f708673700b3d697fa
BLAKE2b-256 a907190aa26c2f4d7b405b409acf3f82ed958184ad46bfee78fffba315bcd93d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7d9af1decb6a604fdd45b75aeb62f0bca21acc07e19f06566388d479a8692ae4
MD5 592e3cc21200076f572233e578c3bf4a
BLAKE2b-256 915a6ecb55872b1b10d0eb5dff99bd416e8edf0f781e1d61fd9f9330e8ee4a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fceb9b01ac8e3439b8d6019798d9b25fa534f71a87a729b89b2380610253d2d6
MD5 bb4d615fd9f32b8a61c4792d1156bd02
BLAKE2b-256 54bff09514208ede1bf55ad9756ad6f66571ecd9ce4fc327fb99b09c5e7be2df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ee9b619df121c6d7ef7764f0ad4beac01f362f153a8a57228e899468270a20f
MD5 1ea0ed2c7c401dd6955894cbfd33046a
BLAKE2b-256 e3f700a260dee392c31f4bd1a0f6ca04bb3081e91a8e22b34b21f85d2c56cc63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7b7c8d2b7072d5f1ef4fb34f58dc4dc3270fe897852842a500d3d20d7c839ad
MD5 16f26c68d88a5802df1b360af9c345da
BLAKE2b-256 013f5c2f528c08b2aa88e861832c2f55b8b418070bd91e43079d5c9e199b7547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97a62fd6bddfe8c6a525bb67090567056d3d979f41da233289e49d44bdb990fa
MD5 df94b16fed6e2f952509c53c48886c3c
BLAKE2b-256 cd5d13c215db5fff93580b6131deb6bfac8b44851a169185d58d9510f44d21ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9bf3fbcb68a9a3ca6f256280578a1bd778e251f16c4e15756fe5e0fb5de9a86
MD5 e466290a180e6736eb5bd707c4da10b2
BLAKE2b-256 ac485fdbb85051a43aea26a924abcb02162b82d8e99a750323d7da62fcaf0b8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 afd898f3eaba6dc16644e1d6ee9438911ef8a6799a14dd517a28a53f601bd93e
MD5 5b8f93c628ba0d2096aa6e95d65634a6
BLAKE2b-256 f724ab8bf0cb77896e60e62c97db322249af52fbf6acfab66fd590cc41d53544

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8d69b20c74c2fd49c6f7e91ed4de0af05800c003eba3ca547afb47e8a9f88454
MD5 f9cbd5dcf6722e88a4dd995284918454
BLAKE2b-256 b7cd68abc92671056fb23a8cf68a68b1fa0bc590e753964749f7bcc8d230f538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9cfbbf260501fa11c2d9a9670fb48cfaa592a59669f3e191e3256442fbe5624a
MD5 9c394253affb8bf7972b63683c790ade
BLAKE2b-256 6900bd7a02fb658bb610f77dfa6c2fe682cfc5d9550380d942b4d8e57c78790f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aaa99ac3dfb1493a1b94ce6beb48bf3a4a5f9b6b3aeea4dd88374b2a42a6810
MD5 fd177ad421d5bbddede03056af964a33
BLAKE2b-256 ab5725d314421e89c35261f9412d4c5eb80e591977acb43450f09ac225656ace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cacc2e983cee219862c6dfc369b95f1a2bee32d7b5545137921f5b08760a1e1a
MD5 16d2b14b7dbd539d32730c3408c117a7
BLAKE2b-256 e2ed2cef164eb48ae42f3101b2c8bb4e55824d6fbd549dcb2fffad8c2c5c5e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d5a4bca3cf208284b0a468dbd9a0bec6669e5c12f793eefc6c2129c07aeacce
MD5 d75f5260a7952a305fb787afd37defc9
BLAKE2b-256 e3f980b25d4f40e2f570ec36506ea008494c9b26b0fed6242f48174dda514551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daf9178e97d4a1d87cf08cad07cdc9bff81ec45b5e7e8a0450e40411fc267aee
MD5 dc4ad51c0253ceb349610e1c8ac42db5
BLAKE2b-256 20d38f002429773f82d156ec4ca271582d4b0f9fe49b96252bf15389121f1142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b50624fcacb8313238d57a6199c67fd91d36bfde7a346dd2b181f794569e531
MD5 2a2f001d71caf2426ac992e428a0ec34
BLAKE2b-256 d0032b2048e141cd4a5198d07e962df13c65e3b88a6f74ec53ea904f57fa8d86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 43fd3e2c17c2798a3f7e0951c9b27f2a48839836719e4b0aaf9b67dd2baae4bb
MD5 d72e4f54979b111e27d3b59d7d1e7118
BLAKE2b-256 8a0b36d46e8021b69d7a8d58f4bab226ddb3a8fcfdd092bf8080edbfb520da51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 058b4bc7f90dccf4007ea2d0f84ab6748d4dbc0fc9d632bd209886563a4270b5
MD5 01ebbe976f1aee3d03f9d32bd02e8000
BLAKE2b-256 3fa6ad6af540775005b3c71f228279336e00f0e161884eba63cf75af865e0d11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de5cdd5174d5120e2012968cb69af099896e0d34be02ee545450d89a9052cb9b
MD5 dc853c056ed926f3cd2f993ae78bc434
BLAKE2b-256 df9d72d176a3f15ce806306fcf5670822af57045bccd0ce211c0fe69cdaba754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3455e17636eb784683a02025a277c9b0eaa9a397341fc9467eff99db5ac704f3
MD5 e8499cb60c74f8784c0fa5985d67987b
BLAKE2b-256 cdc9a726c4fd4f1dc1123e43b3599a1303e98460f34c7cdd575410d333eee866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5c0eb5ea59d2803595205d3d4bd655354ae43791e044e41a1fe0fe0d9f43dde
MD5 d87ebed049e985636c5366dd93a2dae9
BLAKE2b-256 28341e68f23809ac89a36a3b33c6ccf602945d20a044cef4c01c7ce547310b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74e088d206c9de697b1cca196876f4b649471ca171e4be786397094842e7f546
MD5 4288e82a3169286265f200778b6ff39a
BLAKE2b-256 bbe376c918eaaef03d203d45db1f4485bca29fbd08374c680a390aa9b1caa2fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b23944b4965fb6f7715e22013e881efee879ca365ca3b2f5c8415b0ec0d63fc5
MD5 13cf1cfa974733926a70fad3ba943651
BLAKE2b-256 c24fb23197a5810b16767d6233546aabc1f0ad7b1c5bd06269a2b83319c89d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b8e270bd354993119e6999b105e078489c19c421f15582bf2e5955470512b57
MD5 d5580c1b8b538d349c7c5cbc0ddedadc
BLAKE2b-256 6c29d67e39cef0c9d2a3e011b98226064ae6a5e048380678639773830ed0c1d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5bfbd18d091ff509c4a5171c4485db8390a5eb4b23aa107a69195e9abfd5f74
MD5 041d662ad2dbbe4aa82c23537c060094
BLAKE2b-256 f6ed99aecf8f76d4b0fb85e26c7457a951ff3d83bb73a466df130696ef9369d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d58b74da34de8c33039fe700331943744d04ae5d07636bb67fae4e8520cff6bb
MD5 898c27d532aec9347a14e42c9550d8d0
BLAKE2b-256 e445ea928a76ff22ebb0940df19152ac32b3fceb1cdfed4ff888f09e72fb68e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d1491503c03d6600e8a7722d2c18a86f02aff37502f8b128cb0c7af32c93eab4
MD5 2c2f3e6e61639a43615b4295f0bfd8bd
BLAKE2b-256 b608818912a331d3654f6a9f3b92f68889661aa40bcc039af5260627272e03ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b682f00535cd9685355f5302a11a58c1b7c756dbe5774257ad22e411eaa17721
MD5 aad6fee282e134f95b241dd7ae94ae00
BLAKE2b-256 f6c99db35b2ef73dc5cb9fba0e92d42c691f0bead41ebeb9a338fec258888e23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.2-cp312-none-win32.whl
  • Upload date:
  • Size: 3.7 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.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 bd04cdc3a45e3aaf241406b1325779af7c9d67f9f0fd6262a39ae3df3dc76c30
MD5 09964a82367ba37e4fb1d4977d36aea0
BLAKE2b-256 bfc65b24702baeffd1a0648d0ae89310854b3ff7fa5d5e10fb1b2a98571b6ed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a1a4c8821dd16cfea4d397f4efe59fadd907ca6ee556f919782610f9453b9ac6
MD5 56ff4e657c3cfc48e743f19f2f24761b
BLAKE2b-256 fac64641c74a493c74771581c91ece3d42b1ecec84508e0738907a6aa7a7a8bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ec27050fa297634ad6616a23798f0919cc2ccdc3b08d6d53f6285fd62062020
MD5 6a207e7480765d4a224fe14ceebd71ec
BLAKE2b-256 f7569af289ac63708c4d7b60e77667182db9b8e1a7b66a77dac13ed09ed1f599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a375227de8842d9b27f0feddb12226a835dc3cd96420fe35c1b797bc118ae00
MD5 4209db3fdc71056c582c0063aa0fe6a4
BLAKE2b-256 834d77f578fcbe36a66e11b0a8469b9744f99850e23dc4b7170e0c38609486e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5467aaa0addfdafba19c9fa83700d56740b1b3c925bf680ba1341059fbc036f8
MD5 79c3c2e5fd0c6d4e16a7a70daad4ee7c
BLAKE2b-256 fc6d03de7f9bfc025b2b297006bf5f18ba73899a3ebc58fe91563ca3258dd85a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70dcf72a7b71d73be2a057b8256ffbc775426433353f41da12fcba232360d0b6
MD5 cfa8adbfd469e61fb0a2fe8cb03b993d
BLAKE2b-256 cd9ea10d4a1d03383d9d406177becb3986b1e87a4c50aacf9a32e7ba5c0f28ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dee051d8d781faa7c1b005f2c1f9eebcb06921163b7696e0aaeb4a6a85e00128
MD5 503168153f6208910190cf37b3b1a1da
BLAKE2b-256 08266443d7f05a41adb61e28261eff16affbf0d09f522d2c6a03a5be79f81198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e45c443c9045afd79f58db1ba56db2d3fe144e5ef21b72058172ee6d8ac1aa7
MD5 69dadf65c274db8b7495a0635a58d5be
BLAKE2b-256 fa4aef19e74e1baa1a2b4863282962d22cc92656b8df937afaa8bc1052309701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b52449110ec412deb06322049559cbccc31e4d7783b1b142c1cb6b957c6494e
MD5 1d7987e70a9e82a4c76b352b4ca2adb4
BLAKE2b-256 91777a469c45f51f36d94b13c8c4d7aec64684d173f9af855b25fe0146fe2ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4765a79a175038af03f499ecfe45ec6e6ba9c5ac469056d77d299a72151fe97
MD5 ff92e44011be29d492ec20e31812b369
BLAKE2b-256 7ef850fcf1e3248faab045b8857ad9bb2a64894977535fa8a876c612459349d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bba503e7a5f4acf592246ed5c71fc87dcad9cf5497fb946ec12ffb9316b8d583
MD5 414968758ae28e9a84c25f6716bee8fc
BLAKE2b-256 de03945a905f301916a4a010061d8381f3a46768dc10066beef7282213c7671c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 0e859629d7f3476ebb46c21f7fb0cb9bd92649810285eb4efb0a09f2699fcfcf
MD5 3fd3b83b0fbb20c46f986ec67962fd86
BLAKE2b-256 551b003489b065468adc62b2fe0e40d8eee467765c9cb9c08dd93588d8e89bdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.2-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.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 bbb57632623ade311c98f9ead99ac6a13a460860a228c71e6247ebeb7f6b1de3
MD5 c4834b0de2ee77d056ac64642b0b0634
BLAKE2b-256 82821de40fd8316669ed5fbd6c49205c387436abc016116fb1d85e2f0a81e9d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1d198af4a73fdb16eda4c8e84ea6a0541753bb3e17d510b285a00d3edbed7369
MD5 d282f2ab4bf3f0dc6101480254692ef3
BLAKE2b-256 7cc35b17eb5c7e9a1bb1b2a2d98aac4666ea3b8bf433b476be256d511d524aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 edcf4ee938e297302b503ba2381d8375ed40c40a1c272005af7972c8f42e1946
MD5 43a6e39c1e294a477dbc5f7b87c492fd
BLAKE2b-256 2c2f305a5236ef04c91ca42116572ebf9a4f0d9cda5a1137c890d3be6d9f5a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ecb53867dfb37a2702d93f2e896b2760e07aba859bde25a6baa27b6cfdf3a63
MD5 3cbe63964080290d706b9c2fbb039487
BLAKE2b-256 56efd361e570b26ab9eb7a059bfb7e894f3c4cd291a706e4ca35e96afeb54c52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1423e15a41649c18f4f07aba51b5202a4e3526307bb58281fed801e3252d7d1e
MD5 6ebfc7ed3eae9b536e26ecea2a348546
BLAKE2b-256 880b12074e008ae09c27bf440efba7cce1cb40c4f8b1f983bed1b3ab7de7e284

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56ece7e09378d9e09b042359a18d3479f4fac045e597cf66cf8e1e7b5df22f1c
MD5 c6b7196a3f3822d918a422e75107ca73
BLAKE2b-256 4b81a1828fbfc3de97ee7127fa8e3f2ca21aa5ae3c2266d5e024246621a49671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dc126d3962b6c5980fd5cab9811cf4b23161fa111787df466356a6fb1568497
MD5 a796dd5d82becc7eb15fc74467589d5f
BLAKE2b-256 07b32359c19e1312199d42b5b8e8608087da245756768b6c46b3ff1aaaab69a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 29af9c5c893e11f2ba22d303d4fe5fe0892d1d09c8b78072f08e5b846cedb887
MD5 477785eecbfc8061afc992862489dc4c
BLAKE2b-256 81c7f8b422bfd4c28ab38873547655043c1af7a84f1bc56cd2eb9c1e601b8b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cca5e68977ca61210a7971352a2df6f6bb64d8b60278f1585e62496de1f5c0fe
MD5 c586d84d8d62c346e9b2a8b29ad9929b
BLAKE2b-256 c91dc271c80837475b39e725e5d1c1cd553b166eb0c0046769b93c9338fc0121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bddb91a2908ca5cb28cffede55afe98d39fdd8fd548bbccd8e7b8cfbdda7d1ae
MD5 0f53784f712af0090988877a51da818e
BLAKE2b-256 3cc1f92adf7b9445f2dd2c5177e6b3eb5499a237200ec3272f1359f02b388ac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cde3c987707984e798db44c8d314a68bd3989c7989f5cb48e55415b3f20dc05
MD5 ce286cb9b3846899285ed012ee23af9e
BLAKE2b-256 092c2a5e1d95ae951b0af41471e0f3db1324d4039f312fbbf6929b0f7a9c9585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 88ec74e98d162d5a29ee0d5e266c809183d8187583cfb05d69c85f2867d5fb93
MD5 c55eb0cd1dcbb98839bbc4ade260b45a
BLAKE2b-256 0780fbeaa8c9bec498dfcb5bd1ea7640e5fccae33d07049d1d46ca88c51cba86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.2-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.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c6583501f949a0fd2cbdee80fbc35706a4280f6c134f8c6caf1fbf1272958f0f
MD5 cf7b7daa065c603e6183705a1bd4569c
BLAKE2b-256 c5361fbb6ab5c3b95e8c64bd158a05ad79f590c8feb8fc32db331ac6b2dc9ce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e64d868f7681962e2d7d075149de1ab8f65be2a1d83f59106e42c911349d5803
MD5 1ca47759337c13e1b96e4659f46c9155
BLAKE2b-256 f6f53e3e220425a33f9448293cb147daec47692751c0c5c185e1c3f46fcc7fe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8efa653a3c248901a03dea3a6feab83ceab9aa04fe2594ce339714b765d6c63a
MD5 0269330fb268c279ee1f04537155a79f
BLAKE2b-256 1025a71767c9e720ba9cb525de81cd69f87df43b9c2064dc514b51fa883af9cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac98ef61e5056dbd0b0c0ee27705367631fbac66add971495761e507292b65cf
MD5 8afe8e0996437378d8237b9a3022e4c7
BLAKE2b-256 9a43bcd366c69c6c346716e59e1d93f46387a10ee02eb96ed90e9cf0aac4e2b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ecf38ea38e031fdba0975cfb5912ffe8ee3465ad093389eebd442bf4b702b0ed
MD5 d398210bb04ea634dfa691e812027157
BLAKE2b-256 c6fa45ebd16fa384c772f55097016e8ae7b018d438cb936e37cacffafdfb0f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ca05cfeb69c890a3e6102a5c537a0c3f0e6e8f63029be55d011a61eb42642c5
MD5 828a7937ea87d5356184acef589a3b5b
BLAKE2b-256 77ee25b1af7f48a5484b5465aa04ae935020a2e6ff731f688fec00355b0a1e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 923a022557592f6e0946f838b9246e920fbb1860c0b620194ca1a381fe8a03f2
MD5 ec44ac983380e38abd4bdc25b570390b
BLAKE2b-256 bb3bb8a8763e5a668598f22ec5c0c7f9eed99d3f18427265ccddd587bcb7ffec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a9a5d9fa5779e653a97a39d7fb216a30377cdd50c848782592e3add39ec1156
MD5 fe3446dc91b3c814ecd4446de4871320
BLAKE2b-256 6700038a27f65eacbee5818986aab97605703bc165e08fb2cb9b1cb40ca0c0c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6494752c389aeab988ea80e13ede046401f73801031291b7a262e62a35b8111
MD5 d85993ebe2ae75f25cb1e83a95eaa445
BLAKE2b-256 55f4fa53712eb24c52b010612de5bdf1193744abdc6e037519385d02131fedaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9123ed9e8cb6fe2c74eb3bb32dad17870a32ad20ebb35fe97659d53870a4d655
MD5 29fdd08abc1b5405624ad7fcafb9b620
BLAKE2b-256 85818f54f85e993b55e9a7467e0cbf4b881de7e61db3de6db7520c92815dc990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c85b576cf3378092aa7b972ea54e096d33f56e38be81943dad613d199e097b6
MD5 d86a40fa1dda284585735d9b8564c7c2
BLAKE2b-256 7fd45134020f4b83bd299194a9cbd9fd2e9521e5cbda363bbba6a6916dd99052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 90623a42714671144bc57bd16cd2eafbff0b4dcf24c6a220196514d2ad993630
MD5 7a1913e7aeef163c7fcd61d98f09c61f
BLAKE2b-256 51f7d15e44ef9c01e369401af5f705eb2726591045aac7f536224a75de035c87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.2-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.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 3f052e451af23f675a8a2b316444382f648f7e390d8521663613b173c579fe44
MD5 feb223ccd0ae4c79eee41ae140615f46
BLAKE2b-256 d06694014d38a80a2195980ca944090777497873d87114d5b0a948e821ae2180

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d934d6d16c39d708e60b8c9b9c2cd71ad37f3b5d610c3ad93466c761865d3120
MD5 94e755eb1e2d1df679b4a92896f04929
BLAKE2b-256 00c4401ff2232883521518b6668068ab83b541fa663ba38fe47a3f21d8be08b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 72588e4df2baa14dce8a53c3209c2150f1f52ad0cb791624cfd6a659b51805fc
MD5 1c71901676e77c69d14136ee11fdb598
BLAKE2b-256 d4601936923e1da1b462361a21d80510c945a78b4390d58e8a29c410bb4f9dbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 294d9c4ef33637f50e4ae8cb643c46a2d4b419e06d48f4666d492b09641d2da3
MD5 e8d6c0acca9410ff91f0306844da0f46
BLAKE2b-256 0db01ec141c82bcdbb95d05cd8997b98b37b6381ddb5d0ba2be44c3f3d5fb0a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91a192c4b1b0b8fc7df837d52d9168b3d42f31f0d23152b6cf824f266193a958
MD5 66a6549278a2205dd979e37e1c879ff9
BLAKE2b-256 60db97b1981e7c2067bf3f6dd5cbddbefac6a3fa1fdb1e0b425aa8c033a6c8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad9700739acac4df9f48d06aff8a08c09ac0b8c3a8ccc0a2c6d10775ce79fd2b
MD5 423bce0b2ffa3ce5fd5c5954c90827ab
BLAKE2b-256 51d709b5eea6df0fbc9fb9946e0b26880d00de68cf8af15e45a80df58ea4de20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 339f9474ce32b838eb50600ca8fefc369e3ef7fd690e9e7e01692f88cb567b87
MD5 516a19b4e86380dad581ea61b99767dc
BLAKE2b-256 904188927a7fdd04e2a1b9ea24a885d3aa0e40a3f27639828dac69dd1da2eb96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fbaaa738820adf69b48d75c3b77c1faa7897428cddc77658585746d7183fab07
MD5 1ff86f03aeefe1c5a61bdbdb9c3ca53e
BLAKE2b-256 1ef2f8e46ac537bfcd0c93dbdd85ec8b91acc243a9c1164e367672d594ba48d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a26c54e196702a2feadb49aa33afe21f3b9868783d34f1739b4b8d231a9a758
MD5 e333ac41cae96c93325d06b0b5127311
BLAKE2b-256 27d7deaa5ae6c2341156db87a4aa0630c917d2259d9bb4e2caa549a7cd3f4933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1994a0616af04ecef99c878b74f8b74a5ee147c98fd96df2d7f4d3ebad1e5c2c
MD5 2fc80b601da8bcfedfabaff17ca3637c
BLAKE2b-256 e79d78cbfbb0061dd32386fa99bea9092312b8c33d9363b38806be39f105fa93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eeccaf7dba7f3776d1a7f26e95aa3f208171d32ad31adc4205f1eb8217e11ddf
MD5 c8b272949499a2ad23131e214941ef1c
BLAKE2b-256 dad94f49de0fd989f889576f55426293d71bfca437f06289fc979255d4415c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 30538c55fbc6c9ee32a5252ce89dff2530313f7d93d6306e97e4492cc9e3b1d4
MD5 6403a9d9401a9baa10f1034c1807e2df
BLAKE2b-256 8e1f4a2245e79aad3ecbbd62c3a4b49a0010d113621397b50783ded62bd493a9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.2-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.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 63671cb0a2533bba619b28bb126a3b7d10244212b5123fce90fe3def4ae705ed
MD5 408e379cd968e66f76724c0ba6d97130
BLAKE2b-256 1f820bad122a5d3790be47af1ed442f7d3045fbfff4d2bd205a4a8493499ea65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 482b6386c1d0cc46452e5b92ec2b0a845aa2d7f963aa57c6584cc04175bfb61b
MD5 750dfbdd7327adb72aea501221c5368a
BLAKE2b-256 ae9814dbd505234e2906c064dc854f25a371ad3f3d890ef50f8ce185959c230b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 36eb906756f0cf8822f37386331df2ac4369a35cd08d3d58bce99a1620a2cb1a
MD5 b98b3ce584f13c88cf8e7b696db3e146
BLAKE2b-256 b77782f7e4a263e9b3fe3646e935232ada600a80cf726d0bdfb74052090b67a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c44d2fa42cc4127d1e91cc6b6dc88fab6236663794829e82c2762d44728ec5b5
MD5 8a34fe61b07072f7d6458c9da6e09710
BLAKE2b-256 c0f1f2d0394834bf3402bc6fe2574569a8f999691a3246a678afeba92c230420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 86be793b1f5118522496d4eeffc16599b237f5a3606c2d1f81d06b63629f6b09
MD5 fad331a93c62d454ac2365424bbdef57
BLAKE2b-256 8f6262aeda8a231f0010e4f666d1a8f970a1b3f212c23d44fbfb398442349a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d404f20102942452f5a5ae29e68c1640a7169bff2852f49e8e05d040946e39fc
MD5 74b9225ccc48ca049bdcf29fb013dfc1
BLAKE2b-256 435c72d91fb2611ae97e3feda7b8d650ee956acd7eafca6bdfd2130691032f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fd2a23fb17b7fb505016f254ba7975348989174f2721422f2dabbf7f99d7341a
MD5 ee2d7cfca2afca3a634eeb8693327af5
BLAKE2b-256 0043019866a1f26acaceb595707544ace86fb5a27742d378c5179a27dca9811f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8a9da41d753367ef8cf9500ed197dababa4869ad0cf53878d05273b93d22f11
MD5 b9888b1bd8ab7f6f96428cb14ba61ad6
BLAKE2b-256 c2b3d5b28ca21e1d53d2257acaa86169759f0e7a012bcd66bb5cd2f043bb638a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b433c560be61be82b8c67d4ef006f4db97112bbf22562fca42f2599ba16402ae
MD5 9c1f4b6cf605fe07d4a9c145ab807170
BLAKE2b-256 1973028a1491331f4fc999e5d0a6d22c936ced50ba50dc002b6981d2d65a31a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b832551b76347f8a93043e9cb332997c8ecebe409f0fcda9e01789a398a7ddad
MD5 74db1965b35d84a4b28ebf2f1be29f43
BLAKE2b-256 9364042b0f7a7087af1917a72772907026c6bea95f146d12b563c34e4a144b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 534aa6302a408e567e2dfd0c6b11f6ca5b669baa7e89f5d0324cd1501d81d68e
MD5 ae589629cd42edb93bd599efcb231a8e
BLAKE2b-256 0c5d8b40b09252f9c24502327e3909758904605fd0abe39f7079fff4a9a595f8

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