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

Uploaded Source

Built Distributions

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.12+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.12+ x86-64

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

Uploaded CPython 3.13 Windows x86-64

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.12+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-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.0b0-cp311-cp311-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-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.0b0-cp310-cp310-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-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.0b0-cp39-cp39-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pysqlx_core-0.2.0b0-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.0b0-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.0b0-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.0b0-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.0b0-cp38-cp38-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pysqlx_core-0.2.0b0.tar.gz
Algorithm Hash digest
SHA256 89ab5e9ccfc02836deb29b0efaa91f1ce53b98300896c50bd90c402b8d7b662c
MD5 14e2c0619eaba3694658ae97294bcfe8
BLAKE2b-256 94fb03d584f22d79459c145069a5f75530725f5b0e26b024523fb4334c7c4480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7fff998f7584e0880f8b4fa8f4b46b3a4c3caa17423296d03f778346fc35a899
MD5 afdaf513182d7ac6f31abeab51085e93
BLAKE2b-256 30a14d03d691406a6797547eaaa8a1b4fa81955643dc00a695ade47248993d58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 601436350e8efd3432a68ec3f5e4f81f7ec7d273d518b86f10bebaa0ed6c3b8a
MD5 d218c09aba9f071c8d71d58a57b0c201
BLAKE2b-256 ff1be2ba9a93346a1d0f9cf534da46092e8f6e16bfc71baba91ba0b16e09c480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 930f897a4e04d836788e4ebd26e4cb45e35a58a46a01364a9fad2521d79f241b
MD5 b92ba085dd0a708d538b66922b58405b
BLAKE2b-256 86b59269234b596beb059ddcfb45e2d760479325bc38ea8f6ca28fa9b5c52bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3dad606849a1c0ec29f98a1a861e8239a54ace6f28b880239c48684c2e46303f
MD5 6b936ac2ccb6fa92a4d4d7941cf5c09b
BLAKE2b-256 56d1efa5ad7213484a7b8c735f0f84d497ed566b07e33c10b32153aec37257c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7a8429317598b9825ce41d7cb4e6f95e59450ca43956aa16a03090368d6ac80
MD5 00cae4193cd0c734774c966fb46f8f36
BLAKE2b-256 357ba33b7a3d5ce78e1c88787b1a38b681735c7587318df48d3c71accf2a8fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 627dd7a9b5720e68c230b847a1dd1df481407ea665460a14fa24e0914a1f17ba
MD5 3c69bda1876e93821721ca0a9d70b4de
BLAKE2b-256 a4c63e4f25707a2b0ed5a4ecb10fbe545a554af1d26b3f798ff7a8407cd9d7e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 743eaa8a8101d312f92f057197e3c165b1102efe1ffedbc5473c39a0ad8063e3
MD5 12b27a5fabfad22e982f32855ac5d93d
BLAKE2b-256 c234bc7e321556d9fee1ccb52bdf04770b9cad2000f67dd54cb97d62b46ec449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 83bb4c0829924e4ca91582e5d7ad12a4953f32f51c5ef119ba9abb05ba46c1dc
MD5 2acbf0a66e92af5c36460821f700ee5d
BLAKE2b-256 7a5653cba186f6fd07a654ead7cd2ee0820389667b077cc79b451c3c8199468c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 43d8dfcdad7817c2859447554cb3222e253d46d2cf72b7a4eaca31e3e9cb071f
MD5 dcfae0082f01fb888a2ce16eff9fb4d7
BLAKE2b-256 e551f1d9b53f047497c5956c2e8fd9fcd09ced6e6ba8b377189de7327c191afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c843c4e54d6bc040b145488f590a634c2299f1f839b6308466ed6b1c65e03817
MD5 5200904d5e220769a5f50c6d33676aaa
BLAKE2b-256 89103f4e07de7f0f711ea4b0f137ea4c9d8e2558035da479c8b08f58574f3077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 10b9c406503151a791cc06b869c5b9e5012857e9e75cab7d1743c321f0f42258
MD5 994d7c0128dcf0c166a7108265e7a314
BLAKE2b-256 ad10e299fa3ec346eacc86cca4d47e2309e7f0411a5d399019a528144f5ed9ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0fec08803069c28053b70970a6e179051ee70e63c68d617189ac4d924900d91
MD5 10bd5b861edc00c6e4364c0e11868233
BLAKE2b-256 1687836efb499121fc934e53b6a3aa328c9adb86f43fbee385ed1e95776a0ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87800dee64b3955fb1d6d887140ec672244af55088811fc226d86805184a7bec
MD5 6d398829378ece1a95dc965edd54dea3
BLAKE2b-256 aa7169abd2b5284c0fbc679e211001b8d2a395dbdf03e23d4f1a7f4cbc6b46e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 597bf044807726455ac48f9e2b5bc757bb16d7e9a074a159b1ca8521e56eb4e0
MD5 63e3b83eb488abfb8b411c2fe1632a94
BLAKE2b-256 1697383370c2923af285945ee9b75fa0ffef9ef9ba101a2af7a04c96f4510d42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 7c8943d2e4bbaa941a2e8cf6ae4cbfe688f891d6b73b758c6e07dd25ecc9fafd
MD5 35f36af02be65e787c352ac2bda402ea
BLAKE2b-256 dd2d07db67fe0ff5e22f0b6cf243cefedc2287c33a4b0ea92135af044b7cdf0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3478d3331235fc7b4e3d4c094f80aee0879439523d8428dfcba6531d6313f42a
MD5 f477dee3321c1e978a7752dfcb1a9aca
BLAKE2b-256 8183e240c700294e520b7269e7999a530ab1bafab7921cae3afc50d2a87e1dae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a1d002db08a20ec4431e97ac4eb5275d4b796319effa43fbef55d8f17aafb61d
MD5 3b15fee089105d56ddbe58629b7e59bc
BLAKE2b-256 67d8b90def6306a50972c1419b1880509170071372755e705bbfa173935bbc65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c92dd6d9f9b4d7ecdf0379c73c6ff237f88835b429b63361062158576435814
MD5 2f1d81fe0a32b8bbc3196cd4de409748
BLAKE2b-256 3d1ab9be55492e630ba72c40b8c1f99b6125524569b6f6b83ccb5cf91a6c8ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19296ef41d4a2f6aeea3f28d7a7e57b26c49c0c4647f8d6973baf77790c14cf4
MD5 01edbdbc7cd87f49a67373c727037457
BLAKE2b-256 ba536fe21cb419ee285215f3101e3c4ba03e63a3a730068aa9fe16d2182ea373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd5fcbc02b519d7ebb4adbec6015cd80c48991fea8c5effee01e06d1fd5b2b46
MD5 756866a6190c02eeaffb2f49e3351361
BLAKE2b-256 bbe6c4c6ef571901920455935b2f7a6e4148643a2939248ff9e4eba198744d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 91852d60eeb9887b756dd3b0d3b82390d46a7fa326fed7f92e90fbd082fbf92d
MD5 fc4ef914cca7052c7754c74dc54b5b15
BLAKE2b-256 48a09e293e255829c83604fa9feb028e7ebd6781b8b1c953d20cac8f3a2faeeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95b55e774d81555fca828bf3d7c93efff75a3afa06f9343452669897b7e7c9a6
MD5 49860d7ef987c70ccfa6674357606b64
BLAKE2b-256 218bd9ab2d75b297b046782af08d569f99ac8103b6390d913a0e1e7302c7f3e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd62a4439e2b7007389de69f3a2b1fafa88dc6c57157d3877182375fb186d0e5
MD5 077297d603078e7d1bf2ce671bfc0ad9
BLAKE2b-256 14b6048d6de3bdfc99c8fd20ce1b1cc94af580c702d098521ec9d19ad32f1cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fe62a434c2ace3d0d76d80f99ed1afd21f8bb8111f6c32644871a489d38cf4e
MD5 4db0a78d9f7ab8f4924c5994a4184874
BLAKE2b-256 479421e9831183862c0f766ce81a5e6f5660fae6cab99c9128562aef46cf0792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4fb4403787e63d0da3db980f44f3596735d5cda0a60c42c7bd26fd4ecbca90dd
MD5 dc989856099f556e204a7c05196317b5
BLAKE2b-256 c1ffbe22f89dad98f37aaf0a5d935a9c65c8d5cbe93983081b3664cccf6e8e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 58187e1d1cb2fe20d503be3dd9991954924ab952c5b2884bea10f808bc255e41
MD5 d41b14b0c4f22be1a31f0d96205ffc0e
BLAKE2b-256 a0028421b7f8c4c0ba32b168ff3513a1f974fe2464a9ea7facb099f1c23b5c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 653fc635bf51afcaea1597fd42b90fd3f77ece35f56c9c6df670c27ae647035a
MD5 acb89ea11aa3977dd023a751d122fda5
BLAKE2b-256 40ef95e406ba56a842ab63a15dc1d1d38d53bd8d2a43dbc2ddb1a2693886b64e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c4d7593849817523f8ef37bdc5969e4248f0609453354902530877e093468bd8
MD5 83b6e91c4d08c93e2256376c50ee89c3
BLAKE2b-256 064d607db796a3499181641665a23c8bdce677187e1ae547f0c82aa1b0092969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 96ded3a9ba7ca5e376bd204a2a5ceb5f06c505688e256a53b670673aa24b9767
MD5 8ab472b92694f410e5306b0bb7470271
BLAKE2b-256 249338e56e7ff5ecfb96aa50feb508d5d829d50feb1352cc88ecfc9ee00803e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 546103832c6fede7077a839967bceaa8f57484cb7fb6bcd47e64ad93062a7518
MD5 04441ec32a3d828069e6c67a36308dff
BLAKE2b-256 ee8bb64a1be12aa85a35b1dae716814decf1becc56dfef24c7f9dcce52fe9c86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca050a836fb75f2e7e6d884eec6dc07cf970bc8c1fac3d0402b387d497d83216
MD5 b0758d4f0ca467b0bf56a3ef86e6e5cc
BLAKE2b-256 67169c1512903784dbc0640c984129d9c5c9cd4245e52d4b0008051eea7b9245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2e0225c85574b61c1e1a3f341d35ba37349c05b7e3165b2d7f21ee95179e62e
MD5 24237c58e830b43f8d81bd2e30b6df22
BLAKE2b-256 0fb4064768b58caabf2826e391cc5635040ba2c8e529b43711da7c35f2a332bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0447c162a193c06da974448d449e74180dca66d46558127a23b9a82e7654790f
MD5 a771fe3dd5f24746b42c00d52018c44a
BLAKE2b-256 a64b7a3430a0e39574e536a5772f0eb9ed075caca250e52c846d73219c34503c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d2aa52aed8426e6f5ee3ac79ade331ec4aef8cad7e5c78629fdd853058eca37b
MD5 b71a57a8ba4519bcc885eb01699956f1
BLAKE2b-256 683d2576a4fd4be18d290a20688fd7c4dc93f977658b7b9e820ee2b0d5c783ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7bb2c0ff00afc2080bc0c436392a1ca94a965d54744428da6a2678443e5688a3
MD5 7fb9551ca22e4895ade03e660a200caf
BLAKE2b-256 64444c9a534c23131b2d2e303800b3a5d2411ad890737df443e62fae1256ead1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9190ced545ee64e69bcbb5232d80fb8013a2c4a453aa007eb7ea7ea3494691c5
MD5 b4b1221c454c43f83958d91336ad9162
BLAKE2b-256 c7b9ff4a3739de6450a00350ec9a135393f54632e749745a9eced96767c0efb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f617232410b9b0dc327aae2ee5425c172e152dbeb062195277aeae1f3b9055d
MD5 ea8a1b9e31781512644626aae938b7c1
BLAKE2b-256 07e6689731e737c356fd5d552001e3728af2a50834fa7c31750d900c4585b3a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 04c0f6ba8c9f0f207ee383e7f0cb2417f05aa03b829463d8fb0f8bf3a2e6e319
MD5 c39c79fe4782142be72dfffd6d146e30
BLAKE2b-256 f3c4cc2e2bbb19a0c5eb7ef4794abf7cd360993c2044982a3ae45825195331ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ef6f07f9816d2e55793a6b5d8f38ecdfdb767188cd9a1fa610c2d8b9b061cdba
MD5 40894ccfb78e4c25ec43d37c68926333
BLAKE2b-256 b684afa1358bab3de9124e5012e3aa4071b7477aeb39ecdca30745392fa268fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 66ffbe63c1f430f7620ad65b053de19789d1d100ced2a2ef80512d7506578677
MD5 30177b35f3221a69550fbaf910d43d5d
BLAKE2b-256 c94c616879b81cbdc277a91e3c39447eef79a972ad7ec85f07ec2cac103d7ca7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 556aadeb125ce9cd1a655a80e0a905961b2f3476f4395e8a06f2c59ad3cac991
MD5 54823b0d64172753c89eeb7f31770ef3
BLAKE2b-256 980ffa102951b174977ae2c313319953aa30047db43cf495f41cce302145c8a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73b46a89cd097e1f1562eaf0e1b9671c5bd6bced4cc23f0a7c7b0370a86dbf83
MD5 b5ace0201801863d099e26cd7d395c2a
BLAKE2b-256 2faaaebb3bcb1ae7972395e6ada4380984521d7f5dd6930a9560e6c423ef6bc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f695169eda2fb01f99c383d415207aa30d791439b4274ed37224b72c2be4c343
MD5 7cee3ab338d9ad84c1c2d8e6dfe1e7f9
BLAKE2b-256 7c1f92bd7aeb8d2526b1333ba72e7fbdefb50ec83ea24da9821d432e5fc07716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8066f9d1ea53fe3997d03fad270df4f4d4717c3f037556536b5780c4838d57d9
MD5 2b71277cf4456df65f4f5d48e43b9662
BLAKE2b-256 f6668f08bd46c9ed7965c8b48d4e1ee7716e300898894d65ea1da5ea1a31e83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 523ab61a8bcf366110ad0772f80c48396ff4aaf523eee1e179ea8a9ac42c6d33
MD5 0f610f2a516448bdc8afde3cce748d06
BLAKE2b-256 e5a49288e2b2cdaca0ee94b7f26e39fd8f350481440647fdd328a248a518bf5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01c8ed705a82f1fdd8b909e6d86ea47f99291d2989ccc2922ebf9392e78db6ea
MD5 38567d2b25d04a5191d8c6ad219ea4f2
BLAKE2b-256 ccf5687b37c3f28b269904c14d8430330792b326388c1e5d06ffc168c1fdb9a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18fe83aa738aa375a21302a2a5dd1cc435da354c05ea32f9b3c5a1349d6b2432
MD5 2aa8302135a4358a5edd3159a29ba789
BLAKE2b-256 300ed5b284b08893356aee95bbb97aff61ed1c464df0834065612bc1059e81c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75f74d007032907530d0413c04a1f792b4baff1ff78db48b7f89d08edbfe08bb
MD5 bf3f6e8e0a9442d0d089fb8f132b1172
BLAKE2b-256 9ab95ee3dffc69f06094277cc682e8c52cf6ac92b3b1f292770283cd8d334992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b4fcbead0321b212492dbfe86b459a7857e863462e6f2136f42e2162820303c
MD5 a23d7c6dcb772e96b28ac436207b3bf0
BLAKE2b-256 3bfac18469641dbf23f0319a1d534642e4df52dc1fb6c1465cd1ab965bd2dc6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 4dcd4be81d1c7f0e49e100d1c64542d53e4b8160b69ab85146ce6f7d25462668
MD5 25224c032afde01e114c5bdc5d34f79f
BLAKE2b-256 655cccf3bc5c3ae6d603e3d97989c7fef75bd8908e72a04ea0c7c7135e22f81f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 adb807d8a62255e0a34fcdde469ed5cd0a996e0b08e2a258cacdd3af56657930
MD5 a183757c3a8b4d16e6f64338255bf4ee
BLAKE2b-256 e3cdf145202032c9e47d76f36b6ef1ec7e9f571fb62f50df8333113f6f9c2d38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7ee7ca22262c529fd7b7a7e355b815d60e9c334b5ad101146d548b3752484208
MD5 8a6a201eef4d616b77f1530bef67de3a
BLAKE2b-256 1062a14e2e97154665b2b33c1f5a3de1e16ae7e040bb0bf91d5e8606aae9db62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c09691d0d30e5c969a895d98f33303525e80640d08ca2c57da11cda233086e74
MD5 816afc357f53ba854491659d7851b7e4
BLAKE2b-256 fe557ad9a4bd0a6d728540c9ba4c855e11601a8f02fbb371b66c94dcd68ddcce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 763dd7d0ba31ed55be6f117b9c4c23614a1cf637f9d6218b6367bc5daae3bf80
MD5 e057a1120762112393aad8a251181585
BLAKE2b-256 577f13e94df8f08ed348d38eb6d2a0810f196ec34ac82b8348ce619a38ee5396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e8cc454f544d13499b374f9f9792274ebc6626946e50f097b1fa1695b65f17e5
MD5 077d54002ceac8bd8cd0656f4ca02499
BLAKE2b-256 0e3757dee3264fadbb05b5142a6195573ae86a7c1c2dc24802ad74c8f8e718a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c0a19588a63d82b15ae702836383ad1ade4e67c1b26d075efdd06aa79e54d93
MD5 5c5a778f0b5f8362ef7f5038686c11b2
BLAKE2b-256 b7278c25d462a5825cf576e9503bb2ea9406e9cb24d473e8177b10c381785062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1cfd213248bb29687eb8fb450770c0706b03092127525e5eb7cc8c3bc5dfb12c
MD5 f52a87a1578e0fd7fded9080003b578e
BLAKE2b-256 b933a9973babc9b37b16d957df04f25a10fa79ac436509206e1393b74dd8e8a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e5c067ee639b89dbb684678ae0b94705361946b08f011c9ea4115e59a7100424
MD5 1744f11a89bafcfb07b294b0a946c8be
BLAKE2b-256 6915e6f609f1f3b71e845c338478c384709235909e8eed9789743baa82a92579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4a12961978bb884a1dfaa4a29d91c6a1a20d568764ebd16a12918fb10053f78a
MD5 9587943aa1e8a0056ac96fc211f137e2
BLAKE2b-256 44c6345dfe52af57772514349906544e79a33b287e93c7b0cb9b8a72debe02f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 525ae7f25f31a8bf8014405478113c278e4bf1929117d6930775080ac589828c
MD5 efef03662405a48876ba3ac739973b04
BLAKE2b-256 c25a670a40c93c748333689273a7c61ffb5b229d013889f68508fcbc2bb09772

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79d80ac38f9d4a5bc77deb35b502a5874af779ecdfba5d81326fb27e175fce2b
MD5 8b0e18463df5a033885023e40020ada4
BLAKE2b-256 6273da859f2b809b8068f651b7b8636942aee8eefacce1dea8fe444a7f53a588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 237fb14999d6552fc663ce1eee9420ab2fa67b82ba8187d779de5997335effef
MD5 50ca01d5a1a706b873987cb1e97d4910
BLAKE2b-256 b036f6fa57317d0e455ea8e5a379522beda243df1536179adf6190fa1a57eb6d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 8e6fc4e076c5129cd223a572d65518325dfaf3ef667044186769983c4e9a20e9
MD5 77d451e06dd7c250d49e94c80b453862
BLAKE2b-256 ad7a84a1352959dabf9000acc448475e30404a3b27269c931bb91c286c29121f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ae12a2c95efdefc326bed0bbfae99fa1b90e9379f0338364dfbb8909afc67324
MD5 305a142e9778df08d7f11a047b80d70c
BLAKE2b-256 128354e16fb88e179a219afdb7755f99a3808cb54eee1cbf235194eb7af776b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8fdd0e30a0efadca8ebaaaf9eeb6b8ea74d0ea785dd8c7cdafe0bfdbd4a802ca
MD5 00179b4b4d9db71e39f9dce7e5c12194
BLAKE2b-256 a6cf1c12c9b82eb4177d37a59d5a2bdf6c2d25760694dfd755096bd40067b1c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddff4de824e15213b9ba071f579828f61ae42d9b6001140b6087fdabee215c64
MD5 701c9bfddd2d96bd665282175885d013
BLAKE2b-256 6a2a790d356820a79e9bd582437df78575347c1d5399967a2f7d181d1be4762f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbf60f3c3fb12e8676b03b6792c8da041d26357fa7fbcdb2a9beb4933dec2123
MD5 73bddeab7806971855938595213a6801
BLAKE2b-256 85fa917b481a8fb5f9292d725999f13a90cab696abaac2df5de2fa5f4478b476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93b29dcc5cb911fab876cf92c1a94ada7dbf959f4656fd7b1e70886c42f01b39
MD5 ed9420e699abe38884dbe2e955c90bcd
BLAKE2b-256 75cf631d83f9de2e0988a1731dc6a3aade88f33c366e635552e2af382022645f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cacdfba283144f50c1a65eb6a19a663c679b14424a23c46c1c6b27828e650721
MD5 478d26cca8b3491be09270298775ca70
BLAKE2b-256 7385cf4250884ab7c51cd40f2118f816b6df5abb101686bf9b0eea146ab53376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4a6ee7be5f738622a3fe863c685b14132d02be7bad4974a2e28f78822c9a76d
MD5 5fd84084a37930b878625bb1b7ff6b85
BLAKE2b-256 454cbd4e03f635ed7bc590ccec6d8f72126a1653f89a12b22ea5f5fcda467aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7133811ba71d022f8b1e468ffa6b94e258946a9b9690f329afbb79af744ed15e
MD5 3eb30ae266056adc9feca9d9d58499cd
BLAKE2b-256 9317b19c6a67476919311cf2be195bba3bdf9250d4081b6909fec91b5d762994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6576303066554bd861dda1fff61548f36491ba5cd24ca2b330ff39e500128fc2
MD5 a630942db63e6c54ec3d67fe6d7dd132
BLAKE2b-256 b2d69ea4f61fbc28475dfd2f409a81cef6320c39d7e5c6f10633ec6209d8857c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57bd36d6b5c68e6d6f5176fdca906d1142e1becd5cece1069ca3d2743de152e4
MD5 0156ad5537d10b76b06ae2b207b1e1d4
BLAKE2b-256 403da18c25bd49fe2940ced5b86967f31c722ffaf7aff867a57f9532f1d803c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f878a8ba95eedeecea10578e2a0e2f3d95b77ce5659cda0edd0f2521fd527954
MD5 0b63a695e47d19f563ef62f99dd4c1f8
BLAKE2b-256 38c9711faf621b68e18c881faa893ae12f44f6624c42b9fae42f6f74af4978e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c90c8d984c2065db63b2ac9eb2995be1de8e04424c03fd06c9425d44480470d5
MD5 d3c0ef1b6efcd869460c99b3b34f7c7e
BLAKE2b-256 5030c6db7ce09a8a047abfa697ad9ce25d06b7c32b8e2eb9f3ffeb06693ad66b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dbd851369b3e53e89419e4420940d0ee0265534eb73129ca2b405b0eac9c32dd
MD5 73eca5a4840c530b2ac376d4c8d9616f
BLAKE2b-256 8715c7fcd0122f0cff4d1bcbb8367ffd755e5f29e29a66f4b40622358d484a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 df3c9b60ad57282bdbad77f6f51af4e9185f0b5fc4dc519b9916c595b171aca7
MD5 4d53068c8ba4fe5e18fea656ac5794e3
BLAKE2b-256 e55e394b5e56ccc9cd19ee9d7ba2244bc8f395b3b5b973fd72e3c5c0a97cd94a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61a6cb0fbf4a7d56d225859eeeddcd0672e52dd77987304927773dac13181ac1
MD5 db63e1d42613831dcd085d5f58c7ac4c
BLAKE2b-256 b7e579c5385d9b694eb033e0bd0f99a694dfb77783d950be9b5ba868fb8b1412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a188b7d617135d8e6b1854f552d50cdc2e2c7fa8b5d2975201e12a637bfeada0
MD5 c3b9fe5aae5b5b51a84c40ae79fa95fd
BLAKE2b-256 d26d24e02a07490b11fddfe5a92d703bb81c35898d0af07f5f2b81d9d4955363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ab3dd8679b5e16c52d0287dd98d68db48c7708158a09c88b5e5e79bab7633c9
MD5 727a22390ac364ed4cc588de91a2a2a1
BLAKE2b-256 a0d17842ecb8a9fef3e5637f17cf32af2102955545c8c8698ed4cdce68bc65c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e150f59b973445ed7be366791934d1fc23b24c24194c0a53346f5f72b0a37e6c
MD5 f52389aae5317f05a1fc4dc10cf63575
BLAKE2b-256 082d292f9c380403cd8efe40dc8851fff5a0e32f24e135c973986b4a141d2514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f639668dc3a0945f9892494598f9f92fcbea49b5212ad6ee6b8b37445231165e
MD5 d3be68b82737aaefb55c02ac497eeae2
BLAKE2b-256 f543042e9a7e69014b0ad86975a8657aa8800df8ad7fa6949f23ea052127bab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45745e491c102540902d689767e892809462ed734ad444b6c6f84188968e22ad
MD5 3c3d4ede45e630a2c10cd67e29bb99cf
BLAKE2b-256 868219ecc72b9a9804f3ecaeceb7ea6e4fce23556e297c6c1e7fe21d455ed7d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bab5a30b96f8a377a508109d0bf3432e96bf4c6b9ced1a4591b9044905157b38
MD5 22b40c7ca2a077856444e26df2c10fc6
BLAKE2b-256 f3e7537092d3f40815ed7727ec1565207763426b8e4101771523965d7a83b074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pysqlx_core-0.2.0b0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3005de14052d59415e1b66f96e2eb2c01a871c95e0d0bf327cff4af6817daf64
MD5 815847e44a3bdd8536abb2ed8c9a96a6
BLAKE2b-256 8d79d3b9955ada16af3ac198c8d53228ef0a82a530fa8193866bd4316ecaa1ae

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