Skip to main content

Async PostgreSQL driver for Python written in Rust

Project description

PyPI - Python Version PyPI PyPI - Downloads

PSQLPy - Async PostgreSQL driver for Python written in Rust.

Driver for PostgreSQL written fully in Rust and exposed to Python. Main goals of the library is speed and type safety.

Documentation

You can find full documentation here - PSQLPy documentation

Installation

You can install package with pip or poetry.

poetry:

> poetry add psqlpy

pip:

> pip install psqlpy

Or you can build it by yourself. To do it, install stable rust and maturin.

> maturin develop --release

Usage

Usage is as easy as possible. Create new instance of ConnectionPool and start querying. You don't need to startup connection pool, the connection pool will create connections as needed.

from typing import Any

from psqlpy import ConnectionPool, QueryResult


async def main() -> None:
    db_pool = ConnectionPool(
        username="postgres",
        password="pg_password",
        host="localhost",
        port=5432,
        db_name="postgres",
        max_db_pool_size=2,
    )

    res: QueryResult = await db_pool.execute(
        "SELECT * FROM users",
    )

    print(res.result())
    db_pool.close()

Benchmarks

You can find benchmarks with visualization on our docs

Community

Let's make PSQLPy better together! Join our community in Telegram

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

psqlpy-0.9.0.tar.gz (267.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

psqlpy-0.9.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

psqlpy-0.9.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

psqlpy-0.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

psqlpy-0.9.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

psqlpy-0.9.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

psqlpy-0.9.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (4.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (4.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

psqlpy-0.9.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

psqlpy-0.9.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

psqlpy-0.9.0-cp313-cp313-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.13Windows x86-64

psqlpy-0.9.0-cp313-cp313-win32.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86

psqlpy-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

psqlpy-0.9.0-cp313-cp313-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

psqlpy-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

psqlpy-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

psqlpy-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

psqlpy-0.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

psqlpy-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

psqlpy-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

psqlpy-0.9.0-cp313-cp313-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

psqlpy-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

psqlpy-0.9.0-cp312-cp312-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.12Windows x86-64

psqlpy-0.9.0-cp312-cp312-win32.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86

psqlpy-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

psqlpy-0.9.0-cp312-cp312-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

psqlpy-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

psqlpy-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

psqlpy-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

psqlpy-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

psqlpy-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

psqlpy-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

psqlpy-0.9.0-cp312-cp312-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

psqlpy-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

psqlpy-0.9.0-cp311-cp311-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.11Windows x86-64

psqlpy-0.9.0-cp311-cp311-win32.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86

psqlpy-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

psqlpy-0.9.0-cp311-cp311-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

psqlpy-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

psqlpy-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

psqlpy-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

psqlpy-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

psqlpy-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

psqlpy-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

psqlpy-0.9.0-cp311-cp311-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

psqlpy-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

psqlpy-0.9.0-cp310-cp310-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.10Windows x86-64

psqlpy-0.9.0-cp310-cp310-win32.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86

psqlpy-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

psqlpy-0.9.0-cp310-cp310-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

psqlpy-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

psqlpy-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

psqlpy-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

psqlpy-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

psqlpy-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

psqlpy-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

psqlpy-0.9.0-cp310-cp310-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

psqlpy-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

psqlpy-0.9.0-cp39-cp39-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.9Windows x86-64

psqlpy-0.9.0-cp39-cp39-win32.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86

psqlpy-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

psqlpy-0.9.0-cp39-cp39-musllinux_1_2_i686.whl (4.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

psqlpy-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

psqlpy-0.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

psqlpy-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

psqlpy-0.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

psqlpy-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

psqlpy-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (4.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

psqlpy-0.9.0-cp39-cp39-macosx_11_0_arm64.whl (3.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

psqlpy-0.9.0-cp39-cp39-macosx_10_12_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file psqlpy-0.9.0.tar.gz.

File metadata

  • Download URL: psqlpy-0.9.0.tar.gz
  • Upload date:
  • Size: 267.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0.tar.gz
Algorithm Hash digest
SHA256 70faf0171d659e18e69e64c8d34e175942b611f38ec99c3dcb8815f3cd6aa31e
MD5 26651aa2b169970ebe9865a086b75d42
BLAKE2b-256 19552be048fec7ca05e097d89cb76466b7237f926ef82487894e70cfcb819679

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 858f95211c9f4540212b3a44663509b1a2a0e738279939f78e6dc43ad35273f8
MD5 48dded44b570db3148fb996d810506de
BLAKE2b-256 edf8477633577d254bbd71c79b839951492acb3bb5d876b86754924bc4a07a6d

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a854229b56b6437681a5397fc42102ecf82fc00ba7bdabb32e73a72d7ec5f27
MD5 cd7a5dbd34dfe51e2869ec9871cbd7eb
BLAKE2b-256 b7d567f2f7a5fc0c63b4ca2b2d986e445cd11eea1a0138e2ad95cbcd20b3b089

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fae94de396c52ca7e85d66213e509994f2a9f40460992b771aacdae636e4f250
MD5 c98f90f0df83ad010bc186e2f7c39d9d
BLAKE2b-256 c3639e32be407a21d5ce06d1249fe5bc349bb8b9d41fb0b53fef9041a74e510e

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9dd5f59c339477b1fb084b748e92b33e931bad847695838c433c17a4c0eb528
MD5 07bc4e04f632dcd5ec5975967e10f545
BLAKE2b-256 21d2745cdfb7b8218192baef6269a1504c8f6a5d73b60e1766e1d49eabb1d706

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2179bdf31ff86e51e44a6e083863388d5cfdfc41989253463ca08bd212f9099
MD5 a7779f23d3e055fa52a92e219dba67e9
BLAKE2b-256 da9f710922ed253245481b42b7f9ac419801b18d021be680b67e7a8e37efc341

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ef0925f48086ab78cf5e5a4b09d2cd4d28332a0c11050e664216c61d7aeeaadb
MD5 669e88ba2d553890d8f4e753a53b927e
BLAKE2b-256 860047d43dba59093d9c7ffb4fa1fa8065f408ef9be96210b9e9d7022abfe869

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b0aa232008b3da74bf3642bcd594a3361cbb8c9aef24e8c09c999b06500b9a94
MD5 7b06e21d1a905fc31299c1f6fa115e91
BLAKE2b-256 745afecc6ce2942d753b9fdb5732e9802a9808ab6b3a7310d79a457470d3be73

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4f915610275a6a1b1cee9caa2db2078995292f0f312a0988d7afca6dc49d649a
MD5 416f3cad9fa318fbae298a3f5d7b3af3
BLAKE2b-256 f74daa00d67f42c9cab6c8a0b6732d6dc505408374a2e30904ec713c20f9d21a

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e466111580b8c9f8c392c44e982bbe1df210bf5329ea44d9c9294a2df1d54d6f
MD5 503bd06c9af2a66bdacbee0e79180efd
BLAKE2b-256 8550ec4c6217a82b0b11442a5aae20e9eafb64823b16a57dd7de21712e458ef9

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d743bfb5d918d5a52a72c80efd31a692b917bb2b6beb52bac93dd60b42eed5e3
MD5 42dfe28f89fd3edb456f36fdc878e2f3
BLAKE2b-256 d9bf6bf741b730029621fb25affe397bcc8885eed62f7ba709b1d101ac5d7220

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 092b8acd7a0719a8f4c58f0dd9501d538aebee9c8cc3d4bdd3f1b42816b84aa0
MD5 87235f8d79efe68599eb9b00977945af
BLAKE2b-256 77fbc8d3ba995971f9e803bcdc8d51b16f54f5dbf9077f9bab7b94cda48977fc

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a7d4dc0cd525e22208c95a037786961edbc5ceab2fe31fd55b5f0d47684b71e5
MD5 04d3b0380ea8eb241bdfec96c4af0b32
BLAKE2b-256 86fbabfaf8b6e8f022d50a60dc8cf551ce43df3a4adbbc58adf89ed17ab6b816

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b561ce4748219aabd64a5ef338b42d3302cf37892f8ff636e2aa02e4007f9f88
MD5 8b271bd597b39d35c471927895eb9db2
BLAKE2b-256 ece0ddeec8a59a28cffe222780bc67db7ce11f64a889eb62387cb6e33b30cff8

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 be8e3d74a7a7b69d16b35fe47068b8bf0d4beb72acec25276d3708547286113c
MD5 ca0ba465ba7588cf3ca16c308fd24db6
BLAKE2b-256 69e3633c3640ab3da24f76631d6fed2501885bdf4d2a8aa7009a7f3dcdea1867

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 903244cbce336902ad4401762207a7acbcc8657e5efc0ece83d5fc1fbcde99b2
MD5 2cab4508d08ee7748f5598281c1951fc
BLAKE2b-256 8426605e5f8d1d14aed554d55dedec757b88124a3ab8ec49d73f619789358043

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 953cce7c66ac1e2249f003ab39e24b7d856065175be593d90339cd02dc38295d
MD5 8ce45061f7123d0c6a842984f7fab4c7
BLAKE2b-256 628f66111a6e1e07a44fad9fd8b9fe63d1ac9f0a36740398ff1bce292418f829

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6bd69daa243e1fb007b2e1643ce5a5289d23a19dac3a4bafc856fb5f8482076
MD5 48d981906255887f0f17ed03a63a4003
BLAKE2b-256 d64622aeef567b8769071aeb3634311e3d219bdc7b48d54fe065c7405901ec20

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d021d51af8b46e6ff5bcc9624d169341cae5398a58e7c7a4b910a94084a85ea
MD5 d13da96a20331b7a66a0d4a8063b80f2
BLAKE2b-256 d33643e5358f8379bde7ed2fc779b8c156a447a6cf2841defc3abf03867b33ca

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f448e19be1d9224cdabf9c32c1bdc6559c3731794078d601dc20c6f97615a04
MD5 2599d9e4acf7a2530851fbba56bdbe12
BLAKE2b-256 d60fc7d876682ab275d96a4f3acb8a8297058e1dba0a14421bef5b0ab9a0693d

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b754648b478ad81b2c397ff9d6e02156e0c74e133e8fc31166e7e474e4919c8e
MD5 2fa5040e9ced8d620346e1a7d5bbcc72
BLAKE2b-256 c9b9f092551bb0dffa0105b25b23b0730fa69c236f7e91b7abe23e978e9ae77b

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: psqlpy-0.9.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f1237a870d9b95b83eac1c02a32ebb8a0ff8c866011fcdd6dc672693ec3e8ab1
MD5 ad626979dbf2dbe9c52fe030e5288936
BLAKE2b-256 ffd0c5fc655ecc418af94e31207d5c6d5098872e1dea46461a4669d1fefaee7f

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: psqlpy-0.9.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7d9b6012368e89342ae1fba012e9cda054cbcfe3051743a77a22819a7c3283d5
MD5 97be38448f33ff5e39922c702b08ff39
BLAKE2b-256 5b43842092870f083e6918a423effcb0fce68187b15c45745905d5023a769d09

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c4de544ce4a39d55b6f9b021533f821f7c1f466b0daa941acc124fbbcfe33358
MD5 900304ef21cc7a7e9809468981e1878a
BLAKE2b-256 b2039046033e33a526029f1df5d4a60d91db669f058a69ac7b5ad78eea0d2f3a

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0d5d3532071a6790cba172cdb70bc49b38df260eec327cf858c21cf909b39e13
MD5 543fd90f2e246f44f661c9ce107a044d
BLAKE2b-256 80d77e1315bdde608ed62c07c7943fbcc9643754763e4bda35e3cae32697ca82

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e0cfa4498bc2ea66d331a50f9146c9fc984e648faf7d2a8ca576c7731a18d13
MD5 aaeeb678b3652d748009804a01391000
BLAKE2b-256 21f14d953025d82a9cbffe38460fd7f9b185a79994a23720428fada055c4edb2

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2e4e5bbc6b0a987004d1d1eb62b9f9f99e91ec68f2e615122a354124397a66b6
MD5 b27cb2618636f688b60a5ed25f38ef40
BLAKE2b-256 afab1e7eab1f786ea4f8ac2a751b3f59dc3b5db5be505865c48dd959913f5963

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68a6457df74a3ae5d5ce1b3f7ea0d9d6d0e932e497b95379a20400faee93eac6
MD5 82534333f67487ba82975709e8cc996c
BLAKE2b-256 dae82ff42b6f8ca8a8497114901a760330ffe6d13b368fd21165fad878efe052

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a00dd0ad1e82c436f5b9d2fb88d778f1ebb5fcd9aa9458a207a1189a813c3533
MD5 3920bd4bfb74b8f5cd247c59712c7f32
BLAKE2b-256 68910f0614ce04b6951065bdb62fdc83017638484a79675797f33e2959bc742c

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4fc09f3940846bd6a7a93d7a922d14747fd9ac95f27606e7d1c62fbed87e6eb
MD5 28050884939d8992d13d670fe87b8592
BLAKE2b-256 bb2a1645387373beb71b47cf10379acc34417d31d28e72423abad6e0b05b9dee

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0855693f0f980be076216868bb04a70e46c7d952b1b8036fb0b92942fb245c1c
MD5 36e13d03e772c6bade76344d38db1136
BLAKE2b-256 e74659fee653e2e78e964020ab9b946c3265275ec72bb448c47efe5a2f75ea56

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 585b576d522df06ed785703aba3fe7abfe7d9db700db5c4c60779704a5fac2a2
MD5 d2dbd514a08453be108d06de53777f15
BLAKE2b-256 4caea72206971773f876132b49ed91bde8ec1d42e9c8877bf75d4b962df2bd4f

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70e2da7f4727585a01b9bae3c8b715048d07a595949bd9e4265eefee250579a7
MD5 584e565fb7747f7a0faf65196c923d18
BLAKE2b-256 6dad3d788bad622c29ef28ec04c18e5f2ca2b49919cbaec32fca5ba6a23ce8de

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: psqlpy-0.9.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6540310bfc3ecae2234f138d343c0296d3b244859b5db9fe3acdc8b88da77395
MD5 f19bf0bfa8866f7df9eaff3db08169f4
BLAKE2b-256 f7f058ddacc59d2a1ba9c7bbac69ba5f6b6bb6ee010acd66dc502c7839f1b398

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: psqlpy-0.9.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8573ed8f363231f9ad80f938230834369573084fb3910cf35eff56f76da083db
MD5 d18afa54c9b18c47075c205700e9ca3c
BLAKE2b-256 be7c031453183fffe7673ac119c758844e8083177d96c7f374553b3fbbda751d

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d1281860f1d6b8821e3e1898debb36ec14f3b615c718259e562e0d5a7f93f00
MD5 2e6b146f0bfbc2e83ac34aca044446e6
BLAKE2b-256 c22e8f40b2c329fcb8ad3784bce18fd9c6ed2f0004a450adfbb13683e3bbfedd

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8bbb30121548ff52f15914d2e0db28951e96ba90a9f6b530a262fd2e8aa6bdd8
MD5 7e3a2b19966c257d09b894933ef354bb
BLAKE2b-256 c833f528409a133f06c38b89db55681baeb7b315bd9a2552dc7793e7e06802ec

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a34ff680bcf766c9ebb089270cefab3d2bf28a4c13674e53ba13cd51c683ff0
MD5 9b067abd7fe7d1e2bd56d6c209486b16
BLAKE2b-256 4331bce5be2957eb9f9c9e3e1b6a53db685f98a30c6fd9685ec5e2dd0ee96da8

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9f1467c8deaa04a4ab9921d85c6dfc226fa87728692c04ed719b5b5503aac78
MD5 e17cc6af0cf26b6491cea853f10ea862
BLAKE2b-256 f8707bd42188cbab8958ef72d7f5c5ab27d891d11fde0086839e5201b08b1a91

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c40fa0e0e4631a63c3442c0b2be9956ee3b3dd6c425344aecab19fb48d37128
MD5 fc0df56db363d75ec4f1e08a04f3607e
BLAKE2b-256 9d2065c768d071c0d022dd8c9078f6063582179ee39ae6279fae43fc1da88c99

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c6e4e7884db60157cb8883b67e2786c40409ff8df1a5e2045c46ad24311c8c8
MD5 743c00ae028416fa573343f7e1a467c8
BLAKE2b-256 bee86294181c4cdfe392f466a65b467e4aa62d537cd328e629dca022215f2415

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 106de61d3004a5432eda4ae0913720c67ca59231079e7b25055247862848c780
MD5 45f629cfcb69646f53ef70ef05bc9f9b
BLAKE2b-256 36904f9646d9c807c5e185e46f6e3a70e12a1ad48fcac9dad4c3504186022ca4

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e7d228f23596323344dfca311fa6fdfd9afab32cd09ddcf62e7664230a0aaa1
MD5 3d81a13bcc1dfd0e72497d4d1b29de7e
BLAKE2b-256 a39dbb04e3b158d28360590b5ffe930084ae66e185714be788f962ea61aac90f

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df01f7e9847db4eb7a74a73ae770e33748e21df53e08dd47cc4f46618959daa8
MD5 6c944eccad6256f42d2e1085a595fd15
BLAKE2b-256 43194fa483a3e33be052e08f48769da2458dfa2d8de9007b297b2673ac8a1465

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2475d9bbfe821642d678b1aef49fa3a4481b4fea7f70d4396b82988f6a5c74da
MD5 812b39c0179c8d3044ade506cbe97fc1
BLAKE2b-256 5379df1d68366103a55fb6a524a0d3350ca636ac30cfd073664f07216a04c605

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: psqlpy-0.9.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c44b9573f4d18ec00713f34eccfb82fbf5f749e131364b7fdd18cf6a30d76561
MD5 40bf7de4f6791005aa4eab47de48ac70
BLAKE2b-256 2e43f4fc54fcda6a9e56686be7fcbdc5cf8906cdb7a195bf5470accad70874ae

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: psqlpy-0.9.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9a8fe15f3ce6eaa1ac324b5409dc65bbd71f31117b1b90b0149244c7bf8de986
MD5 5e30f5b8df78122a556d5095171f85f3
BLAKE2b-256 63243736464ae82f064f1b8a4672f111b6cca849267a94e957530a5380a14cbd

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b7cac05a2a45512ebb5d4b8dc15f89e6347dafbeff300d1b5a0685734a27a441
MD5 2d09e820665e687a7ef00940b68ba052
BLAKE2b-256 d64887cf9c1ad7cda3960c829208bd24b460291f462a4d8a1ff07a4e33c85675

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c4033fe8198472b5d3acba3d8ca425b33fd76a65cda7ccea5f9f7852087b9400
MD5 3e40b7bc81218d413678a7f35efb4030
BLAKE2b-256 ea2573c15c75b61e52714e5defbaad042fa4828994a4970332e4271662e45126

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a47166850b12918279805d2a51b743717964c6892173cd316835fee594287491
MD5 c971d663ff6b638bbe3fca60d76f7a50
BLAKE2b-256 1a68feeeded5fb7c4703c2b04f991c686af48b1d673d082975969fd6bb290713

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 700f92e3be040eb912ff02024968f69ca1c64d7a292e89ce05f59a01c9cafade
MD5 85916e13307de5ccccf817d8c0ad6f5b
BLAKE2b-256 572f9e549a6e298206fa806975562a03665e4ab298d7ca38063f40ef1ceb4532

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4443b12c582e93e9423a88f591ee4baa552ba33e19f3e051904d1734aedfad87
MD5 a8445d1044c1c48dd989b22d6c3edd03
BLAKE2b-256 f0f23bbc849d482312ef500794b4ac937a5fd016e1890d6be113344795360abe

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08088128d6a5c3808294a5c79684f1bb6f6f277636d626018856eccc549c051a
MD5 30c9f6fa10bd0fb9228ad52084737c0f
BLAKE2b-256 e0615022c3829237bd8f2db38866935e16b481799e155f99e151001c4be8f3c1

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 be5f1e3b82155868960462f66c192327472089a00cc7ebb70408cafad249e53e
MD5 ef5f29ac6e81edbc4a0d4af0bc684b4a
BLAKE2b-256 2432dc95acda134079c316589a5f292a4d70c180d5a987b78950f94dfd699665

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8e2688ac6f0ca8ea277ff819f44ae3535e98af8fbae559c8df593334f5d1d65
MD5 32d613ef69b4477815fe545a60d15adc
BLAKE2b-256 3b5f04988a9725426d6c4bc299ea087fd630fd0cb2c7828d1ceb8eb8790235a9

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01cad97923411ea86b0da102340e4150f5506b791accc6be698361141757dad1
MD5 2929017c2658dd137943efccdb76b7ff
BLAKE2b-256 1ab07ec02faf949b49c38c6f025cdc037f71fdee066db6d74eca8e3d4229eaef

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9001cf3fa640d3664a7517073327fc25930e1ac3a1fae7249234545b8970693a
MD5 c53cdc47f23fdcfb46297672d9e45957
BLAKE2b-256 65e4c15e9409233cb06169b2c4c9bfc9b4cb3e69c819ee35ed05cf843170c931

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: psqlpy-0.9.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 200151b65bbc51c058fadda6ccba8660662d3ddafa2f3f332bacae9af44e1991
MD5 62143bf730570b5af924e8fa6be70193
BLAKE2b-256 22df45889063c4b11cb9e82fd54decc369008002f200ccba707ef102a9aa1a24

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: psqlpy-0.9.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5fa64f4c2ce1d3a2ad39178071763ec2020566dcbfe2d8cd6a3ab7723ac8bc16
MD5 70874583afbb662fa0ee88f48c9180f7
BLAKE2b-256 7780d96c0415d0a79f170240f3011bc68f9e98d3ea83ea44ed69debb21b2bb18

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a6179815772d21575d9389cddb222bff0293a71b2bb6e7328523f484e7d57e9
MD5 38f21e1f40a8e0d7948870997a422f6c
BLAKE2b-256 f700f3922bd7f2c9a94318b89521347890b02174458b435691e1dd0e3a2fd24a

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 29e686d43514c430d18143b3fb0ffbf7b5cc3f303fea585d6f1b999b098393e5
MD5 33815020d8886cc4663a9a47a067036d
BLAKE2b-256 15405e59657826a5a562661a1008823744e9bb730dab08c60f721e62fe89dff1

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eeac24c9b966f1e8f54daf566274296bcd37ed6f1346991634778f8d7954e72b
MD5 fb90cbfbf3e2142a34f04ab055bdc5eb
BLAKE2b-256 cfdcfbce204dd65e44c10fc43b94211796a9573d5d5f65a416945cdf63a3ab9f

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd09ed9e8fb59a869972f0a644f35afd6babea0638151325d183f8036c85c6a7
MD5 4d702043195afa9f915d5b44d813182a
BLAKE2b-256 a1514b92cb33acc75cf510902a451d9eaebc2604a6a3a89cf6cdf0ea032197b7

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4179e999d2b16cfafc50d687452c0664d87d5f4746e187068cd935a59872753
MD5 8eaf7d59dd3a75e077f9114e7099205e
BLAKE2b-256 dce115e444e0e8c54724965327e6bbc743f1b6cc2317d0968295379a4831f447

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4ae8270497721e5739224e7f98a0c3db586d0680e1e3d928245a8d2575549e49
MD5 71600b18ab4262855a8166f5c74a1e20
BLAKE2b-256 50d7733779c7c8e854b08724bee54ac13e0d26612f8dceab95e91b8a5a423328

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b9a5bc7d4a905164ad4006ffc3dcee6012272f3f80d88658799efe2e97ca69a
MD5 d25fb471cbe89a290293b0ff59326677
BLAKE2b-256 83fefe40cc66238fbdc5ca79f31758b2d76177c91a30ce194d7ddc392efd9215

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d955991ba1c46a1d5f37458f350cd453a1273f97d96262189979725e1ca4983
MD5 1997dd36b4ef8286282b8d7de16102a5
BLAKE2b-256 29184e0eeaf2ef1dc582182c042af8bdf38104201fa929d71a53f7acf0c82075

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c26b66c2ab7db595fe683bb1482c6ce875bbc08f4e8f0cb7426da5741ae1c3f4
MD5 c337db5500132637ed35361fb936545a
BLAKE2b-256 66e2d15ba014fb05138b562032360210e0ec51ac5ada88875f3b5cbc308ca17d

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3de9de8201f744983dfcf7033a82dac990741ff90427ff2f39ab4ce63f988455
MD5 6cc947f4d3d1b05f0f2e9064f60eb26c
BLAKE2b-256 139cc351a95c4985c3703e37cc1d98d398cab130275bb8e90541928844b14b3c

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: psqlpy-0.9.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2c540ff2cd810e70910a38e9169e9a347d3168908b4de39c96e484f899b355c3
MD5 d23e4d47da80e096ee7e7fd80c2f0d87
BLAKE2b-256 aff76efcc202397912eaf37de58afc454cf8fd0c1a1639392aa20e16a3232a87

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: psqlpy-0.9.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fb74fc5077877723016f4a15d651d017e66976b54a6d8e46d97b88fb7976b870
MD5 416f7c85986b706487b87edd7a8e75f4
BLAKE2b-256 4d57e905c9b1dd4382a800d194532d7e3b15bafbe2519b368d2b74357475562d

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a4832c9654fd0e3de5d91b539bf1b5adc0f85d523c54f371aafc596b55b662b
MD5 9ad454d7562cefbe997dd32bde449e0e
BLAKE2b-256 fb396e715eb00f99078b42ab2e12f08481a1ad40c8fa4b334e8b886e12e5c73e

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 87a3e4b0fa13ec144b17fc661b0e52ea7a43c008864a8d95ead0d217d5c05b41
MD5 83179bc0cc3fe75ed482dec523bc83e7
BLAKE2b-256 a24014bcc1b91c6a173f9018e7ff22b9d090bd1d338fd6dcaada3545debaa252

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e78a0872647fe7b3943dd3f4ebcded7a297ce30ff8fcc208e73106db2b88de39
MD5 e1b4a21df90640dbb4387968c3e63c31
BLAKE2b-256 afdb3bc30b04d5d38c548e2b8f535e19bade2e601b901ef9dea8faf53c3773bb

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ad0f93f5bb86a235766c16a189d38964915f4ac544e2f5e5725aa1dd2c3ab261
MD5 bf5a97d349aa783c7f4bfa517ab27651
BLAKE2b-256 f35dba55da5f5c6a6bdef94e77f10ed24354c4c0654833a68aee0be2aba55216

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8845d9403a0cd4a94d9ba1704ff2ad40cff5f6f721159a1123c901d59f0589a5
MD5 4eacc47e01c817a18b05d3dd53c35f02
BLAKE2b-256 b6b0dfc74f475cc5eb51517e0e0a39cf5803a75f5ff42b8382d7799504d05674

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fee74f01cca69383b7449c2a974d13c874bb0a7cfa60c920cfb31496c95e8330
MD5 8365947bcd0e1d50f809c473af5825e8
BLAKE2b-256 6deb6fc26a7054350e1d07864d4566e1cd2226fd5a23b6440c324b51cc55cca5

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 168cfd981f6236808cce860cabf9454db4b06305ecffdcc779230703e8ff8437
MD5 8fc238c7322b072b063109d40c1407f9
BLAKE2b-256 325991ef766da98df3d9443c9737356bcbab2180e4efb2fb5ea5e6dbe2f6234d

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c465be7ffc58e23d5092c7f2c12056e30f45562cd5d22e51db439acc3710b7e4
MD5 5d33ab5423236b965202b554c06843ac
BLAKE2b-256 7dea52a8455a99e7c8d5820eb2582a40e24c47eaae7732f101752cb43cd29962

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee171fa2c520c46af80956f90aef22763ba13ddc04112a02ab8e48117c64e31b
MD5 c90389e17c33ea0b906c9c92991941a3
BLAKE2b-256 738feb7eca9a21ec6fe53746de8b306cfee5a3bda98301ded2e199324c05a8f7

See more details on using hashes here.

File details

Details for the file psqlpy-0.9.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.9.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 416738179fc657d1dd9e6b7ec0d0cdc74b1395d92739f433e9bd857788d86374
MD5 80a62fc671fc4ea9b16834c3bb354d48
BLAKE2b-256 e6e6b72b4e241aa29340efed7d5fd7f864e9e2ee858b1db7f9948709fb8ec8e3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page