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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

pysqlx_core-0.2.3-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.3-cp313-none-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.13 Windows x86-64

pysqlx_core-0.2.3-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.3-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.3-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.3-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.3-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.3-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.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

pysqlx_core-0.2.3-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.3-cp312-none-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pysqlx_core-0.2.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

pysqlx_core-0.2.3-cp311-none-win32.whl (3.7 MB view details)

Uploaded CPython 3.11 Windows x86

pysqlx_core-0.2.3-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.3-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.3-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.3-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.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

pysqlx_core-0.2.3-cp310-none-win32.whl (3.7 MB view details)

Uploaded CPython 3.10 Windows x86

pysqlx_core-0.2.3-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.3-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.3-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.3-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.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

pysqlx_core-0.2.3-cp39-none-win32.whl (3.7 MB view details)

Uploaded CPython 3.9 Windows x86

pysqlx_core-0.2.3-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.3-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.3-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.3-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.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

pysqlx_core-0.2.3-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.3-cp38-none-win_amd64.whl (4.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

pysqlx_core-0.2.3-cp38-none-win32.whl (3.7 MB view details)

Uploaded CPython 3.8 Windows x86

pysqlx_core-0.2.3-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.3-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.3-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.3-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.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

pysqlx_core-0.2.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for pysqlx_core-0.2.3.tar.gz
Algorithm Hash digest
SHA256 d2a1c52464221a5c31db3d0f4e57f1e72f25345833081db8fe33b0428477f49e
MD5 59cbeb5a48aebebe172d791da39037a4
BLAKE2b-256 b00c06a11b27e2aded8b8735c7556b17f28a5ef2d4779d76bcc954f0cc4645b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6c2071724f9dce989d7067eb44549cbdd5a613edfac8f5ab84ec6fbd42650682
MD5 f36d9ab062014e8c08728374d83cb607
BLAKE2b-256 a1ede1b409756cce2fea65053baaf16b07e8615176b9c64fb26ad5116f8170de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a69f264f4884b0b7b0bb438cc5ebf9529009a5170f20020b5569011dc9669dbd
MD5 5839391ec745cbbd30156fa8b8cb9399
BLAKE2b-256 f70c27640df2bdbb6d9c33ec1f9d281d0bca0aee88718b845990b393216c2721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0a616ebeb82f2feefd0d2f7f3c215ae5e53756efbdd4f0579f19bb2209bb104b
MD5 6fe707ac4f80736d8be7f6b0279e6273
BLAKE2b-256 fe98344158cd88132cdc91d9bca3b74a748a887ad18e1a879b4aee51e7479103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8aaca0bc2169be405f72498cbd4de1a728d91cd2dc11c325e6a8779feeebae03
MD5 c91390e6f5d1f3803c83713b1dde984c
BLAKE2b-256 4b413bec78e273d1c43821c63f81a12b8e76fbbf10fd6cc8677dbe1637b115a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f596fec2a53cf73546aecbb5ae0553966211f7a179d390d493a33ef5b1a3f56
MD5 d2701a2d044828424a446465315d84e2
BLAKE2b-256 0479947e17d53454270a28ecf4e1164d5d7d0c84c37e3e2c082cf429ed459436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5c74aa88296d9736c0a7cb891a31f3673e4d94fbdbd8b0b12a5fdf219ff2210
MD5 285dc7a574be6879f8e6f27f18f73d23
BLAKE2b-256 cbc24e3c45b8d66c77236dae53e90703fef3193d0b31e3f28e49a104141b00b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bc0aa2bccfb8bf02ca4a99ea81f8fcbc460d8e3bbddcb01ef4fabcc4f62633c
MD5 a9c5375ba99bf679962ebc2cba1558fe
BLAKE2b-256 a6a7d3a249a3c1a153555d66e3d4121e57a3fc6ba76ec6cb80400f547ddc7ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9c2d63ff0df9e09d3ccb0b0b893282ad0d6b4bb0879b6c078059e9a61b6e500d
MD5 2f230454225f78d88f3bda3583c21760
BLAKE2b-256 858129e64100f320cf10b77dc2bc7562024d53adb2f0ddc860868766b9619000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d0da074f36ec01770104ec78a70eefa3dcdffcc15e24a856444b1d10976a116
MD5 21225d8684bbbff136997877a667531d
BLAKE2b-256 e1d41794d4b2af777e34dc99529292fc05c8c1a1cb45547aae07720ed1a7f613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 697e394204d9ca0cd2d81d65f555e3bb9d5c4f7282b2006db4eefcaac5457fb1
MD5 0bfec5f6338d97006f97ca1b09e6b722
BLAKE2b-256 04de9ac7042cd11d664af11c43cdd051858d988da419217818779e13770f55ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3322b033775bff818e66216937f76e2d49afbd1f9afc339604c77fcbe0644b09
MD5 0d5d18d121119b4d58702a662f4f5d75
BLAKE2b-256 8217bf9aaa3d30f036e47cdc32a615e3f825437f688fc2b88afc365113cd4432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 793f4f90756d5c328e8307ad0e3600cc83a851224b645394c386e5312976fba2
MD5 220b66bd42f1f6f081f4b409fc258cda
BLAKE2b-256 2dc6c5557f9de810386a3b485caab0ecd29406d224eddde655134ce61e9693aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8561d9308660e35fe5f6d02b5484634ba756e5d2ccc7a80e91f7110a5f5337a
MD5 d37ab9fc66db3ec1da5a21a9ac396d47
BLAKE2b-256 07257d41443e25ff13f045ca5a1859710cf35d7def144bbe61c40e1d949abadc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10e6a957a1ca57db1b9e765f1d607d743abf05b6b6a75dfd079c673333e95f89
MD5 e15c4939b31247941c04547cbf48d0f6
BLAKE2b-256 1dafbab901e93259bf3b7e92e0bc78b0199b4448c6e1b882e5ab56d8a8fe59d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 a256608016c2d334c6b21c64f52ad4cfd5ee880a72baf592d46c7c14e2aad21e
MD5 42cd29839721d8cc102d02304d4f021e
BLAKE2b-256 85e9e3281cd34100f9d8ecd94d6fa21a35b99d3aa1b17363deeec14c46f3f7b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f117974fa23e5252312ecc361877d58e43a8e8f8afaf59bffdb8ad42c4251814
MD5 a8dc56b915783d2e807801c54fc6e303
BLAKE2b-256 3dc029effc89134c785bc1d3f09808c313b79253c941c3ef19cf9f6c46e0c998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9b2fd794dd264414b875f4235fca0fc8542091cf55787cef584d2b985b20d447
MD5 2acd08d900a5e122ce07e43ab807f2a8
BLAKE2b-256 641489a1d19a12792e62c5fa411c03e6e63e03ad8e19c64234bf8cb1177aaed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66438532f37f1b65527e448f7cc0556fff0ee5cc65c651969580870025557bd8
MD5 afb0d2e1fd2f1df3b414fe18acd0ce2c
BLAKE2b-256 ebaf27f3c46e91be9c9e73e86ac6b902a6f01ec68a0c42ee84c4acf0d44eb4ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a359235df85f7cab2591f373d5d475f442932ef643485e14af0fc27314ac19ff
MD5 c513ac0278ac6645aa0e5d91a73c9087
BLAKE2b-256 1001386d362c423ea37bcd55587fd667bc51acf3c720dfc83c27c06a4997d3d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b8bfce176665319d7e0ba036079a6101b5573c829b043f7e27734f42fbe1ce3
MD5 2f839e52b991586ca7e906ba30ca1747
BLAKE2b-256 daace50854ffb3c7bdd30cc0985ad7e64ffbadda3e8938834f73618a8c0db252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55465de7ec917f2ccc6c2d2fe4deae7b90cb566cfad1fba11b52f13bcc9e1b96
MD5 919a29272ca38c36ab9a19394b5fb272
BLAKE2b-256 a0eac0bf6d6db5aedff5d07f9fc92b89f8427d318c8bcb3ddf2037d071b1516a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57ea4246e6ca898aacf3ce861df1dd6c8a22a1fd66cc7f84145ba2ca46332448
MD5 db33f8a370967147d6fd6007a380fed2
BLAKE2b-256 95df9bdedf499e2a79330e81e9e1a3f41d518294dfd51872636f739848a7c12d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03247e2692feeabb833c46c34df5d5b9ec56cec7b504aee88db3ccc9f3b077d6
MD5 a8019cffa62ba2f8655391fd22c7ce05
BLAKE2b-256 d9e7409e616118ea450690b07a0f39b36fb3fc8388ec1719cdf076528b570da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0751b521ee413b569321d18fa97e8d1512a3447e2eeee29c29211258fd19cdb2
MD5 030524a106dc85774f9a00b1ef4642ff
BLAKE2b-256 317b76ac6363a95c8ef3f9ac582d1a5d209b0e469160beadf8f2b8e47cdcf02b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ded92261cbe3c792ae1bae5f3024fb22ef8ddc59bcb8f38b71d69b5b89533053
MD5 0b4109d487eda7f8949214982c6b9168
BLAKE2b-256 a6a58d040a37548d32270dbeb4c3082b5b09708f5019b8fafab7d88c43f0cbcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 bacb9935d20184490b85d165c965c859e6c09c5355b0bf0a9de73bb9ec4a2fa4
MD5 3dfd87d394f0a0a639e4c98db45b1b28
BLAKE2b-256 e2b115706cbaaa13374c166f9c8f3c0f51c3aa8fccf18aca19c14471a1b619ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.3-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.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 ac74ccdc5a71d8eca791a8796f3acc73f6b5fe36c7d3ed5d6b51b9def08d6295
MD5 8f4b8c9e6921084f5aa1ac93c80cded7
BLAKE2b-256 874a069785a136878b5cbe5fa005a295491d9a8f1655b1503cec957d5b94e9d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0339306e4c03b21009f010266f8ffa1f93c2a4b25bb70f737b7d08070584dd16
MD5 e9bd5905c9bec1e18dd10222fe66ee1a
BLAKE2b-256 664d41e885f5b58118ffe3cdc3fbcc30e4d953a6e913c5e12f5c0351ddcaef8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9227c0ccee2d03dae03e5eefb6346ef94f1f816cb759ffbee75bb57ad563ca12
MD5 68d75dfb10562f27ab35f5250fe547dd
BLAKE2b-256 68cdbe0257ab783770cfbb4a52cf8cae99600ed42211a4fd375cdc6609b134d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8bda9478168c2056e511d25d509294a1a4569c298a2ac38080d7e94701b5c44
MD5 05643c1adeacfc47ff0d5d476e5685a6
BLAKE2b-256 aa830cb1c8ae4044d3651deba7f47a419e810a08b212705ecf45bb133da91099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bab86bbc7842afd9fea2b8315bd3253d7ae30262456bc91a1e435eb120cdf743
MD5 e76621f0c188c942941bc0dcba1f87ac
BLAKE2b-256 68371b56b4da9b219b545e2a7c2f7608e217f6731896d64f82c6b2a5c90c81a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b167ea5b22e0f971b8fd11448f585473e9c43fcaa8d77bc4041b6a77e7089cdf
MD5 24a45d53fbac5168173232a38b7933b6
BLAKE2b-256 3cd7dae46e4e3d46239ac68adcf809ca77a3f76ddbd8b3aec2e28971d157b9b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a6e36d00a3c38c5ce1a4383d627b1d1b34f21556e33d90706d04bbd48a82092e
MD5 cd98eb7f52db23e4bd1b5f5c4142d137
BLAKE2b-256 235ba53da9a113ddc5015226d2f51f3052e1b8b60207b0b74b03cc85a64d8905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b0599b9ce934a9712413daaf78250b0e65693e560e155bc6590b12d47bf3b82
MD5 15908408060c40f4e002c82f3b1529e2
BLAKE2b-256 e5332f3f6acd10dd802c0938533acc48de384161db2c54634124e1918c0109de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76739dafbef49992152dbcc0d82ad1c62a94521133c041769607d31194a438a7
MD5 205838a8717f85a460cf7c774091f803
BLAKE2b-256 dd9597146d9d2d08a60299fc5513f16cbdbd829ab9cb47c1735b849ca20b7274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57021ecc0c14cf3e79595afab7ff2aaf22fbc0ba9a4777508a95aea488a8d7cd
MD5 f38291efd05c8745565be1277ac3f1bc
BLAKE2b-256 22a1716fca5b1009d4fbe87bacc453362c7a8e99b483f82981328330abaac3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 375513619817ed4b56a1122bc66ffd4473476ca1609ee4cdfbe33d2daa700767
MD5 1600c125cd93916f2968052fbff9a785
BLAKE2b-256 cdf81cbcdc60c358085b5b2716a8611e695188884b72bd84a197f427692109f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5d9fc8d0497c978b9d03ef544c63079e0cb2743200e90ef02f4f4da88f426f9e
MD5 205a6df940897f55796875197a93f7ce
BLAKE2b-256 113c9ba110e02308fe6cb2e767ec11eb577fc4d543c9ddb53ae32efb2970a817

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.3-cp311-none-win32.whl
  • Upload date:
  • Size: 3.7 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.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 58cee7bfd36665a7b49ce2cbb61691828c6b49720e0807cb575708e068cdba80
MD5 38e5270d55473af8563ebd209af9aa1b
BLAKE2b-256 ae843e758e2867e82e1ac39d956cb818f308edfc1f79b64365a5b07178066b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c46ed5059962179a299df6695c4149437dfdae8745eeb9ef5e2d6de2eba3c057
MD5 b4f0d6d8e2ca47cc9920d3112a550ab6
BLAKE2b-256 8dc82462432f402f6013a66442a46d79716acae145bb0e892ef9d987609455d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3df9d546b2dba37d21ca87d1ae63ec9eaaa6b4dae655627ebebec4522da508bc
MD5 89e95c711bff966fa7c75cd8d44527ff
BLAKE2b-256 d926828d6881ec3b509eafa2805af7f258ce44242cca92c3ee40b29b325e9224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1286b9521199847e902a12a1c352aafc7c1c08d79f2ee56e7edbd066ac29da4
MD5 9a40d192b8441da497b7abea46744e69
BLAKE2b-256 19cce38095e4932cba4e241d3a96d632d0ba3f00c1d2f550acc6337e8fc26c17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b66627c948916c7dddcf89fa3bf780bd0d32089498ac350ad2d045cb6a251cd
MD5 befec0c2460a4b41471c37fd8ac86a2f
BLAKE2b-256 a51cd734f0f73db21a5fa9fe86728ac2d644fe61b7234d08799c32f3cbaa3c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9da9c73f0c0c48862af3841f9364fa264e9bdfb42e68ea686df1ef8689933049
MD5 6512e68e5035cf5522840f6b1b9099a4
BLAKE2b-256 af8d6f7650403c17305da593230dba8d7e1df5dbb7edc4845c694600f82fe44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 352dc1a67703d7a3d1778e04f219a4bb5e08e5afd67e5f6143bf0fce78c4c949
MD5 1a56bec63ad2192e85bf74e2e043405c
BLAKE2b-256 ef83fec3477cd700f0573a47933e1cdf23283f914feefdd6f81785473b5f9027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 062c8a86dd7331632603deda8491f535bd70b05f1118436450117b86e54ad178
MD5 1681c2722524670f8f9dad477ce78093
BLAKE2b-256 37cbc2b0a42388d8e56d49cb75b04bf86452cc090c4d3d26f1cdb48fc2be7d02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a357f9133870a370294c7299445810911a69d9e488d1861b49930bcedb56b73e
MD5 8b46f9d449308841ccc8aff0fbc4853d
BLAKE2b-256 5442160a4589038f409cab2d0d0c7f1ba80a84f243e919920a290e8bfb33cd6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b85b4686da1f258cd75bbdf9928ed5e631bc87729c97a61d370a6a57c47168f
MD5 838f642d9da26a8a9371e32bbd6dccd6
BLAKE2b-256 d6b33ec34eb79baffd0b7460943e1ec49b0eb1c7122fd51f8561c8912aa52c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86e04f6afb3235485618a36a0448fb66655634cecd929687fa99036acb03c255
MD5 d504c5a5cc4e3f7cff22c7b46e973816
BLAKE2b-256 a61b21f0ab62916f2d9c940de81f13a35a2c7ac18a79e50deaff2136902e653a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b4881c700873b221c2c9f43c14bad9026989447bc9e719db6602dfe64348fd1b
MD5 317a544c2ffbc2acf88e9af85c19ce00
BLAKE2b-256 66437b6b8821d8d7865245580447d1d3e24ea174f80da664850397fbb459ec97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.3-cp310-none-win32.whl
  • Upload date:
  • Size: 3.7 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.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 38c8aeafab5c923b6efbe45e2f975b36ec6b31c89cf30728ab125db2828fbbf6
MD5 24a74269109be03a9a0bfddfd27802bd
BLAKE2b-256 277f51e301a2005c5272871ea8a721c9b458c0b67ba7b616f520f2ae8abaf1de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b99447755cb9245a0f5c424e9cc6c17ab6a991fd80bdc07c22645201a91e3ed5
MD5 d4d9131980af14c8ae0855c84d86b34f
BLAKE2b-256 125ad7106ca20e3b63829a2568020a3a02b08c1cf081556ad1056895be81b17b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e6fc5b7bb1d09305d01de43e791283a2d4128e64f76f56f32a973fa4144ab078
MD5 c4c49c74f5761041fa9161ae3b14f621
BLAKE2b-256 d08fd162a42c3205f740d898eeb5a5008ecaa469fbc30260ba778b6b7fd282f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a265adae75f6b0e6bfd31c4db32c985407224526a748fe2388fd7db9836798aa
MD5 4a9095a16d393db628a739464931b5ac
BLAKE2b-256 7af6cfd8590bf2ae6f3582f4e97a7894768b6aba0deafd02a4d6ec789213c717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc0e1363318c091ac50b70f329b4380925c7e232b9d521afe7be43c383d9bd37
MD5 46321396f350341f1741bcdec4d4d59d
BLAKE2b-256 260d3c55dad9ee1eaebb50bce0eea4bbb13b0e0f1540c1ae895f107d850e44e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f93fceb30f2c12d7505ef923889e892025e19fecfab1044a441dbe902ec019d7
MD5 21c257bf26440ccf306b3d95df95a6de
BLAKE2b-256 b4d55eb75e06822c998bd8b09e8fe14f52c043b925073eccf09ef019286a2634

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 88bd82c2070ef19eabf4a82b65ee0ece6675619b497f153905ae7010521dfc92
MD5 2c8dbff14ef9c4edc6765fe9d0a0d713
BLAKE2b-256 aa461a8c956cac19de07ed90b2ed30e69e7d1b9a04242518e124fb91d656b3ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7773aba157ddfc8f0af0ff86e673e34085da7765605e410da376feae5fb94925
MD5 8a57801ea2de31566d96e542dc794b2f
BLAKE2b-256 5e81d568478569995d2ef0b7db1f0d981dde84a5cadc93bc34867ed7c45c28dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69c8f3545f2ddc8817ba548870fa2624a7e4edc44157485646c00f719271d53a
MD5 b1ac5904fa5833322d876cd6a7f575ce
BLAKE2b-256 37e36bab4ab0cf7dbe9b236d786b48ef46acdf29e867c91230f46df1fe6ba65a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e7aa6bfd0326bd5699165c223f412686e45d192b278a435d39116cba3462cf3
MD5 24bf03694ccfbb399b7fadd9ea8c509b
BLAKE2b-256 b31cbd4d3ed4b56342f9490123b3e6330576e32c36d81848807ab7b675b20cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7b9bebcb2d33cce04d7e6fd4a8c7a3e85859e87361331f1af9ec7b09fc6e1d13
MD5 af6e58b77d6591b7721538a373e2ae67
BLAKE2b-256 3d4a1b386dd172ea962472b5c275087733cb0a29e550f90d9364a2c18661234f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 e8d90b8e12d9df5a65eb784465140239f6ce723499ebc575d3224d67eb68ce8f
MD5 e8278819abcbee9ae25f591a5f308547
BLAKE2b-256 4a30888a3cf0787b0682cd204a8aee2e80003ee52f6848d12601d917a010e92a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.3-cp39-none-win32.whl
  • Upload date:
  • Size: 3.7 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.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 0a693a96ec7cec9302bd59e16e508cef63387527d4d12921d9695325df039bff
MD5 b588c2768a6dfbd5c6e41d9f03470fdf
BLAKE2b-256 0607a9158667e423a5e8776bc1a81aab3813ed88df429e1017dd9ef9f78b6206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6c856503f6eaa096ce69b398ecce62b91edfd68604d26ade59c90c21e368e0cc
MD5 86ab4c8ab1b3bc289d068b2c100c8762
BLAKE2b-256 8133ae041fd33005531c131e4ed78a930ac4c849055a92b8d78e376cda965e43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 802c90bbb2da6cd428ad3bcd2a1c3d619d453b373acb9c1cba2fd97f3f6a9688
MD5 f4101ea31d42b1c19c1cad8e2136125a
BLAKE2b-256 8e89c39b00db70fd592fc9b3a51a32f7f05eb00d065593a986d3c6063b84807b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d24410a6be70779f33b3e50c856339c06651634e338bd354321d78faeda93eba
MD5 5a21286c9830bcfe1c7e6c1b9915a357
BLAKE2b-256 bd397e46d4d07196097a7f351e29a40cda485c2cc697435d667513e96f9d4bb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20165f4d4eff23285cc1fac8775447caf3892ce36704e4edc515d3cd0638fefb
MD5 6393f009f9614a60a3f3d70dc6187ca4
BLAKE2b-256 b830b032a3e4228488dabbe20ff3cc78fafd021db8bbacfb04b6f0bdf837df35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a3ccfff1329ea1ef13c1a0707ef138fe3869db68e4c78823c84ae96c7ce2858
MD5 45600337304d4f63e9d480f886f9a518
BLAKE2b-256 04f72d48d2d8f76a91300a52dc6de6731590ef067174d7c885baeddc4eeccc60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91ecbfe18f55e98d5393d13329452172656086436d40847a5cc2fd6f8e623bc5
MD5 dfe3b6e50dc0fbf85ea5735ada5fb304
BLAKE2b-256 c1ba50d46afdf295f8d2395208b47b3f3b22823ea24519ade4ba584d2392526d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8651a3e1fb2db627ab448384f75cdcaa2c161537a1d22d4bb15bf1d2593917f
MD5 015e5586520d9268c7fd4ac23f6fed3c
BLAKE2b-256 ef38d7ef525782ee88a9363eda228faa085431c07e15d55500c79cbed5189b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70febd8aff873a2d55474b19e8a8591367bdb50021d20bb4d7c4c616ddfe2fec
MD5 e6d90726ef5b234c058d80c8042edb20
BLAKE2b-256 901dd8318a016aae305731037d56ad296b7feb34b56a04a969f942f649782c23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f762c4fc44cc234bfe63b9cc2f9e3bfb7769b83837d45435b1b52f44929614d
MD5 ad8436fc5a185ed105bc6b39fa4dbe4e
BLAKE2b-256 0195ef830464632ede43d07966aa7d1dd24b0686ba894eab396427f348fdfa73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 565c2fcf06b5cbd2327cd678ce192137d2c97fd673fdce834d905ef682da3656
MD5 681bdd4439dee496df559017ee2ddf35
BLAKE2b-256 96fc2b11dc86d2366e63dbd213fa90d7eae036fed2ecf37bdc33181e2c31adb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e5bfb85b81e0b839987fe83ccd5a434b28aeddcc4712609981dc7ee1cdc41b3a
MD5 0468b07dbfc033b0fe5fbc09e1d4853a
BLAKE2b-256 faec9884d58fb9ede2389801fdad9f0b46c927d71e828dd7281ea74e559f325e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pysqlx_core-0.2.3-cp38-none-win32.whl
  • Upload date:
  • Size: 3.7 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.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6c0489b81e18ed604f9700b900d67d8e7f8587e35e1b4cb2f9936a424bf2a470
MD5 0df0df7912c0e5a0a36da36598ef504e
BLAKE2b-256 03b3e6578e03b3d4dd27bcde56266befbaaef828120875006cdd52d39e30aebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f2c218c6c4438003de1964b35946e026f462a6b7093c50280a2a0c6be012c0e9
MD5 bd013b050657a15e3e48c8865d88d63c
BLAKE2b-256 e9214727c0f3047ab65164fbaf526d5b14d90b99259a54b311856f58944d4f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ab4c7cc2bff98699bb719dd6cce1a09fff965cfec91893ea5bb02cf6c244bb1
MD5 b0a12fff10b1fa4d83c71422bdd5ee56
BLAKE2b-256 7df5a775e6c4835064168a89fd0a3b864618fc3dfe599c57cf9de179a9959524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9595e0e717861bed1f8fca940cb23b56b07440c4888dd08c505667de9f966044
MD5 e5446e3394dfde26670e9bb41fcf34e1
BLAKE2b-256 df9b0f6eb8a92c5a59e1655e391fb1fac2335f94560442eb0a471c1ab894b9bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d1e87528358e12bb4b6ab32da9e6818ff415e4340dee6b0f27cf2bce89d86e6
MD5 965a5e3e86bdc9dc8deaac104acb9c76
BLAKE2b-256 edf040464ddb462160c5d7a412caca00e2252fc1e541a8d6bbee8ea031a5a6ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97b77b53ca75e4a821e35ccb9805160f0521d446a94ad20748b70cba5b8d3e07
MD5 b4ccf06d323dee35114653ba1435e00c
BLAKE2b-256 bf089c6659c35c6a379e65bedf873d99e78e75bff418bf155583a65e8b7ed5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60dafc48ba20d94e4f5b997ba86664a687db68f887b64e078e074362c766e814
MD5 4f4ef258f3fc9b42dda100148b2bc970
BLAKE2b-256 59cad37c363687b74840ef68f3c260a4ae111528843d6a1c376d8062b2985bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e186130c107982219f516161aa2a0ef7f293d3815833b157336113c52dcee46
MD5 9d844ecd28b60c881dfd2ab33d90f7cc
BLAKE2b-256 930e8a121b7262f51dd274344795d9cc7e5c0bbae26f16a6d09bfe3bd6295af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8465a8c50fb99128021c3ea0539e6d7c494fac924d41b8fac6aa8d03fb543cc
MD5 81f1a7e3d06fe9613283387523acb6f7
BLAKE2b-256 87d40c72fed72e9f59caf8a73210e9dbbdf5812fb3c8e4b818f01db517cc5c69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1af44358ce851627e28ae8bb84f906c4c3ca5f424671a11495a6d8621f161070
MD5 444fcfe3ec856888523529edf3b43224
BLAKE2b-256 15406003d6768db5b0dca9c985c9aa1c2be9d2bd6e9ad1aea6a025b910cbd70d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.3-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79406cf24820b3f5176de085bdaa5358ebb4d634eb25ad660d233c6f7990614f
MD5 4992655ddedd94f24a1d60295b19e0f6
BLAKE2b-256 061c666d70edde853447bb1ddcb39d025d8a80f459c7b04022825566382c1fc2

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