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 PSQLPool 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 PSQLPool, QueryResult


db_pool = PSQLPool(
    username="postgres",
    password="pg_password",
    host="localhost",
    port=5432,
    db_name="postgres",
    max_db_pool_size=2,
)

async def main() -> None:
    res: QueryResult = await db_pool.execute(
        "SELECT * FROM users",
    )

    print(res.result())
    # You don't need to close Database Pool by yourself,
    # rust does it instead.

Benchmarks

We have made some benchmark to compare PSQLPy, AsyncPG, Psycopg3. Main idea is do not compare clear drivers because there are a few situations in which you need to use only driver without any other dependencies.

So infrastructure consists of:

  1. AioHTTP
  2. PostgreSQL driver (PSQLPy, AsyncPG, Psycopg3)
  3. PostgreSQL v15. Server is located in other part of the world, because we want to simulate network problems.
  4. Grafana (dashboards)
  5. InfluxDB
  6. JMeter (for load testing)

The results are very promising! PSQLPy is faster than AsyncPG at best by 2 times, at worst by 45%. PsycoPG is 3.5 times slower than PSQLPy in the worst case, 60% in the best case.

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

Uploaded Source

Built Distributions

psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

psqlpy-0.5.1-cp312-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

psqlpy-0.5.1-cp312-none-win32.whl (971.9 kB view details)

Uploaded CPython 3.12 Windows x86

psqlpy-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

psqlpy-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

psqlpy-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

psqlpy-0.5.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

psqlpy-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

psqlpy-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

psqlpy-0.5.1-cp311-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

psqlpy-0.5.1-cp311-none-win32.whl (976.3 kB view details)

Uploaded CPython 3.11 Windows x86

psqlpy-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

psqlpy-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

psqlpy-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

psqlpy-0.5.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

psqlpy-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

psqlpy-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

psqlpy-0.5.1-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

psqlpy-0.5.1-cp310-none-win32.whl (974.8 kB view details)

Uploaded CPython 3.10 Windows x86

psqlpy-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

psqlpy-0.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

psqlpy-0.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

psqlpy-0.5.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

psqlpy-0.5.1-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

psqlpy-0.5.1-cp310-cp310-macosx_10_12_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

psqlpy-0.5.1-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

psqlpy-0.5.1-cp39-none-win32.whl (976.9 kB view details)

Uploaded CPython 3.9 Windows x86

psqlpy-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

psqlpy-0.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

psqlpy-0.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

psqlpy-0.5.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

psqlpy-0.5.1-cp38-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

psqlpy-0.5.1-cp38-none-win32.whl (975.6 kB view details)

Uploaded CPython 3.8 Windows x86

psqlpy-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

psqlpy-0.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

psqlpy-0.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

psqlpy-0.5.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.5.1.tar.gz
Algorithm Hash digest
SHA256 29402dab27007012cfaa7a2b0279a1a4a0f477925f9b8934eb151a5ad3848fd6
MD5 df16ab5c94782caf8b2ca0f883361732
BLAKE2b-256 36784579f47194fe238854508ac5635665e5f3eeecbdc5773fd9f2ba35c83289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 126419b61a26cc856cc8000fbda9001b6fd6d48708fbb5c683196a0788d0405a
MD5 9c15564d1a6b52d902f21d9afa07ec62
BLAKE2b-256 29132e97a6a5d2edcf6862d2044b93faa40ecec5028d36dbd4c2c29a79ed2a22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1e9398b88ca8617b7d22f230b5cac09c0c5327d5829917b0af60a8e49fe612f
MD5 738b8687bc109222f446e364571e4787
BLAKE2b-256 85775c53b120479579b028a76c76eb18e1d4e57451ca36e989aef0d23a9d3dd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f3686ae1f05927fd497e044906c3839c509cf9df686839cf83fc3dc86e17253
MD5 abc11caad251abc3d4a68b6db0f954c5
BLAKE2b-256 e1ef9e4934f5b999effbbb01f00af11e30e494246fa962b326b61c34dd525d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 027cf97d1542cc965d742658dedf465e5f2a4359faf1f740e6e3295b9235ba1b
MD5 e1711d7abd27edd88fc563ab96d46d08
BLAKE2b-256 c51078512a7323e504e97ea1d20f1e05c7b945fdd9064c6373f6d07512ba8fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02f6d7005f8705a44a916940cef23fef1f263948ed4f4ba5e4b7ba82e6a50082
MD5 b145afb008655a81c3cc2cfb183e671a
BLAKE2b-256 54984e63c28b2cc4e1176456c1617fb84f81b452496cc52844849fb8a4963b0d

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f9f09ef2c6b836e9a426bcfea6bb71877881e1a76b332e1769e0da67a0a08365
MD5 0b84c3dfc91c7587b245f3de223fc58d
BLAKE2b-256 c7e9ba8901a92bf8c6ae21452943304f1495a7f2f20d6bc9e69395fa4eb569f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6cbb2ea76d87bce0f4f3dee0fbc94881d198f0e0626f843e96f45c5c2232474
MD5 41a0ddbbfb9c4aa6da332a136ebd4953
BLAKE2b-256 0231e6fbfbb0aacba9f142161a5ae1f687affb139c4e9e14f6b4d1ce62f5e9a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c0be6c15d8b78d6d35407849c2acdd570b5d01d9b6bd8b2f0b94ae51f546201
MD5 b35a84c55457966c31f3a1ff89a77176
BLAKE2b-256 1008095442b18285189fe792485bf7492365fc55c16df77026cc98ceb30d8d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39070626e1550e556991e1bc71ef28d84ff9cd1cff78ff8d0d1aa48a9a176ac1
MD5 6a0a4a54a5e06b68528426ff9cad4ac9
BLAKE2b-256 92419e16c6cd8a616bbf04e3fd170cb8a0409b2c4c255131c9105bdcc45db125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5845409b0b78487c6cfdfc306e08ec8445a43a5ddd6094ee971b8d57aac4cb1
MD5 823bfa4aaf78f513d4b89c2f5eb0a2db
BLAKE2b-256 e5b9a294b32b4d2dd1d0ee8434454181ee9f4eb04bfb9a6c51fd05d9ca038c96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74bcb0959fd152f58c3b03aa7eb3bf4d8b9b0a30aab42efb319847937372a9de
MD5 b57345e3ae5a7efcd5a6ee41f8f778c7
BLAKE2b-256 57eec4be194192a78f8f198bd4f813038345e0eb9bf40a2598a46c79bc5463e6

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ad02bc0d1ede6d3ebd0c56a2fb3baca2de8e7cd0513de8e37524a02ec623c341
MD5 4500b756975dcfc3a1322786708ef0d3
BLAKE2b-256 98a61470a5ab998f94d88026e53e06443e275a4ea68992543040cb82f45b677d

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4c6f352e4e43d570882558c473006c7c859fd0f2353df80dd3cb51a9ee9138d
MD5 403e4cc89b55020154cb906fe044fdc8
BLAKE2b-256 e2f2c8e130f00a59c92ed00cffd32205695f1b95ca49788159cb29f80fc74780

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30c487bdbb24e7c4e2d407ef2f7d080c91bdc4ce1a84c38133452b3d4345c076
MD5 13237ece2639f0c855498d458e0324ca
BLAKE2b-256 532dc7b2e8a9d50e33867528278de1f95442ed8bf2973463b4bdadf74e5b8ad4

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e3e77f4dcb728049d57d63cdfa930dfe7464eaee58a071e155ed6913852d7a7
MD5 08b6ae0b78cdff803f0aae945f0122b3
BLAKE2b-256 49b57af1e1a6e99dd9a1a505d4c7f810a6a80a07c26c852e09c24722751499e3

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aafb1428b627ef8e0929c199d2aec1b563bbb4a1395c750b957dac7a0776e5e0
MD5 ed4e7ab5e8347589c2d12385210e4afc
BLAKE2b-256 12ea3884bc04b4759f402b2b88c843ed764bc6405be6eb9582568cd8c5acd233

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a892a64a86c598434dd052e7701da7bb844b9db55d86b5303f8c96182c8bbdb
MD5 158650ebe2a44f6a91702ae4ec70f2de
BLAKE2b-256 91adc6dd158256847cf5bff5319b85bdfa5dc8c7b1ac0b38efd9e0d21ee75d03

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a4cdae00ba068948ccca1afe199c7dd3ee4dc37f82c48569e8d708d04195d411
MD5 5e3f54136f9333cd6f091e710662ae9f
BLAKE2b-256 4b4f1c2268b267bad1036c1db535bbb7eda055ac9227bf7a7d2df347dc352613

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8af236cd2dc47f2a1ef4292bd4e3e1af0d9b13fa2d8ca955780eb468c38033ea
MD5 bad6e760d87b2687d393e1116d7a2a2c
BLAKE2b-256 878094ae4e5ead6b99327585a8743dd9803035f72807f557aea146e7487e665f

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp312-none-win32.whl.

File metadata

  • Download URL: psqlpy-0.5.1-cp312-none-win32.whl
  • Upload date:
  • Size: 971.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for psqlpy-0.5.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 59fb40f22ef6d7b57ec9fdf68a43071166b36fccf9b1dc9e1c0aedba6071e69b
MD5 be7c34e0f090151540cf3ac3d0a657da
BLAKE2b-256 62c062c1dbe97818a432f79faab0e5d9df97deb48a2a69230708bf2c041d4b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b26a511665fca954b38987242d0781702c935a8150b2722c09ba6f33ebc680b9
MD5 6b8a18161d2c1cbd346b0367d5fabb8e
BLAKE2b-256 3553cf7c0b01fc86bf1f430876892be8c7b1a38c23dc212234965e25c4d19a1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a41c279d9ce74d664f8c9b65908e8caa3671d5a830b8b3c323c981f3940a69b9
MD5 728d94a3c16f1e26d11068961845dd4d
BLAKE2b-256 ea0b9a6a0c5da47ffeb481abcac705cf710cc766d2eacd419348960819cc31ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4261c34c23024de07e6883486a33ff4f403ec6dbc98f771fcfc266081f88fddb
MD5 153f44707b3d56bdd368100dc067870e
BLAKE2b-256 93c9924b04ab6570dc66574b8ec92b28ff0c12775c65113e2e8325411cf9aaf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1892e69434ba0fe69ec6b2c40ce43cd0fbbee51d39fe424a8d2fa13b0c0ec72f
MD5 814c0adbc31dc72744424cf67b162cd5
BLAKE2b-256 b227755da2f24c2f93cb49ff7bde0adf9a41a84d47695e96689b9935b4b511d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de10869bdfa245c957dc402905b2d51dbb6d8d4c30232959b77b430f9078191d
MD5 096a2027602b9f31679f7b4b6b0f70ac
BLAKE2b-256 dc629caf373361531b940244be0ac8de16858e5462329be8028b99a1fed06f53

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ddf42f0f3064f2ba3d30bb5d1ca005a0ea068dc6b9f60d38380a72dfed178771
MD5 9e00edc16a3ff3d7a0bc0617acf87019
BLAKE2b-256 11efd18a864e619b3923cd6b7739b6b6bc0198993921cb0e5c68042229fd36f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c06028697a4836ae2b29ddae5f8ce29bb1351e076c02097c2f4e9042808d8641
MD5 163bb11392053774816ecc2d967e530e
BLAKE2b-256 f05af482825666d02f055c6e3532158d83d36b93432c568e2973037c76545a37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 456e3cde69e532ac8c75f40a8246caba75b7d2f758fb7dfd4bf94fc71c1115e7
MD5 3beb549211d39e82548a3b25abc83914
BLAKE2b-256 4d32f51452e55a3de6d05b77698c74c1a8db58b98c98ba992f41f4173b7849ce

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e7e386f8f4328f4781abe4076c98dfd6172251de0ea416b7c2b3cff550b611a2
MD5 1ec8ecd6e1fd4a2400f8fbfa33813304
BLAKE2b-256 0fe9f7a2789a08363bf8e44575b24615a30c46606a46987b7731f78cf99bc428

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp311-none-win32.whl.

File metadata

  • Download URL: psqlpy-0.5.1-cp311-none-win32.whl
  • Upload date:
  • Size: 976.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for psqlpy-0.5.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 bb8dec73b2042a435acafe1ffa34704f466c329a3cfe80eaaaddf85966b7bb80
MD5 7e0e255d35559b57c0c4a0e264033a41
BLAKE2b-256 7c6e79554532c576761b723188ae9f8ecd6b0621c437e8a5885720df9d92a4a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 debce0ca0a1b1226528f44d2507bf8463c5ddfaf7202611dce5935ac5886895c
MD5 186442d4c453f2ad89ec117669724936
BLAKE2b-256 e138a9c2ac927b62235f13d05e53e588dad62ae8489265ede468a942b7c77c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b72165f2ae01e2787ec83613aa5e8f265a3e1b088cd2d8d35617d1a9346593b
MD5 a4d8e4335b8bec0e1c45570012e35eff
BLAKE2b-256 ca22f0bc496ff4fb825fa106df08d19b9a4b956847c4040aba33549a1a0d7e7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 baadd26e40d523bbdd12352e74c2888981e640c64a55d4efe9bd86b0e2dc3342
MD5 fc131662b90caa7f9aa8755420664444
BLAKE2b-256 934014c68250b143fa0a516e2c090eb80b46bce6b1a2d3c01046131bb3a0d632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86214749375e50348f9d9689badd6475dcb55b6bc0a0f500c8d44579d9d6c00d
MD5 c90c7ab736d4f6113be565f6a46cb914
BLAKE2b-256 4fd6a409f8fbfda3def2270696cafc4220354dc9ae047035e48f0ef67ba791df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 016b5e9a4d6fda6971c6ace2e8ff736d3bad7facf6a1c3df3bec579944a10c26
MD5 557b5b9f2086777cd4e71a85aedc30de
BLAKE2b-256 6955701e5533288127b9f9e1ea918be213523ecfb3d56b37201188358a219315

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7b387eac4d950b1bd3f79efa9f6d46954260afd73dfa44a9debb37699fd9cecb
MD5 d87c2fd92b4c72176d52db157e4fecf7
BLAKE2b-256 4f20cbf751af05fe6eba4d547a53a71e0aba0a8254c917250016148d03d33e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1217f311062c62bf5835730c68d23586c4549c5b0104621865e60dc2fc220d0
MD5 50d00d3c189f03c2df066a89ce255909
BLAKE2b-256 59169a6e3278d266a0109b9f9e29c0f3cfcee9d6137cc55079549aa168056b08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b16fc8a464eb305a62c3111eb73a5fa0dcbfaa4faf654f00788a0265de83a0e8
MD5 8fda14a23c228dacf362c7bfc860ed78
BLAKE2b-256 2e149d2b85de724ff748d07cbff66cd901a5647d61aeb0d28ed070e567429b11

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f68d37afe7e4da3f840d97105f055da1a72387bf325325f9a69a510a3d0cdb59
MD5 463a92f626be4f95ef53cd854687c351
BLAKE2b-256 b94eb641898cc04b9f5e52e785dacd317c3a6af6f382019a4186f40226c028d2

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp310-none-win32.whl.

File metadata

  • Download URL: psqlpy-0.5.1-cp310-none-win32.whl
  • Upload date:
  • Size: 974.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for psqlpy-0.5.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 7183acb3a18ec20b3f93247fd3f19429e463cceceb5fb636555a7961cde5d154
MD5 cc1b490ca1aaad6892e5ab962a7f0cea
BLAKE2b-256 3a20fe94e48a12b888db579060be81b9b1db299d733a3951b048d14aea53403a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 361794260b5b7379a7cbf86d9c7157561f8449493115b2b8b29bf2ff5d9191d4
MD5 b7d33bbe7c81ed57b364f39532cfabaa
BLAKE2b-256 70674d1df87a07ea36d89cf6c0780e1deebdc29a40704b0786e5457ebb656cf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a96f830dffdfa577de840fa5e7e899c80614f49ff8f954239306a8e53e3e8632
MD5 6dfa27013769adb4422c4a2932f6dc09
BLAKE2b-256 26d3f27363e32816740e31717dfa244421e9dba19158a50f5b6b9604693b9f96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a9fc2bee607f5f9295f5ec2714adcb328f6c414e48f519d9e34a10e6b00251a
MD5 6e9ce7f5a3e6a7cd78fc33a7bba9b131
BLAKE2b-256 238298f9dda31e8b9d8035446d26947a6a7abeef617bc189921728973112a599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ee904e0749948b1b95f0326239507f87a462c6e70269200933fd0339e39ce4ea
MD5 d3b1dbdf92ee62dba814b90ca990c8fc
BLAKE2b-256 208d80ef9c9bb1f6ef0a8cba2545fcac687938be6207b537f6414306440ce3c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94d84cb0a309cae67d37119d88282ec9e7aab65e61245f93ee3a4a04c85ab3c1
MD5 ecf9c757ac17fb062c66b096279a654c
BLAKE2b-256 0b5c56d2f0bdb8fc1c9e3850ddb486f00af83427042395cdefc6cc8795d7a811

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 26aa621b5e7604bd7d79ab838eaa044484f898b955445e63b959265e1f801817
MD5 605c7694b63d4ab32748da1e03bf9a4d
BLAKE2b-256 6f64127f2c856775da3f99bb84d593513744c16ae3e56e4ac6c2c601f4d86f15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73cf03b2de0c883cf68786e0153fded44569580309dc3f6d297b6c4c44b6afbd
MD5 8e58bbcf56af14b1f7eaf48e77be234f
BLAKE2b-256 87aa3edd2f3336ae641772cd392bf7ddc5bd2efbe6f9b15e589648dddf07482a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf4565c865a4498b978c635dff0a86e5f871d570cae6a2a4c8beebda9e3d8db8
MD5 6084fefea4514bd42e7d412f9124bb05
BLAKE2b-256 2fb8c06b48ec92d89b23a0b5e89d52f5ddb02d2ba53e36e6fd9578806bcda048

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp39-none-win_amd64.whl.

File metadata

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

File hashes

Hashes for psqlpy-0.5.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d8081083b1d81200aa99aef9103387574a5324c9f764286854b2f15a9c4a04f0
MD5 8b40406ab5e1c55289686dc0326779f8
BLAKE2b-256 2f4dd5f5d7d311366fc38dc6f2c588792094fbac11a9fb4e64bc766b8d11b1f0

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp39-none-win32.whl.

File metadata

  • Download URL: psqlpy-0.5.1-cp39-none-win32.whl
  • Upload date:
  • Size: 976.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for psqlpy-0.5.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1455ade9eb2f591a2f36bae4046c5716bd6b3feb95de79f2d22eb6cc6535984b
MD5 47b50e823399eede59b0aee79c26ab6e
BLAKE2b-256 0deaeda585775b4a5d895b2cb9de07614a141ecfe4376d86ddd2d4f4800b022a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3aee3c96f0cac7685a70656cbddcab9bc70a113aca6f69f9ff3c4eca7879d996
MD5 987e308b39913ef1771ea47fa1494537
BLAKE2b-256 57e227072e094362a11ce28f6e13fcfb1bdf49d5c8c8a7980c9de775311d5a81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ddea502b269d9fc7ff85fd1a4b8e0262dc59d6c3a3aea428df6067dac46a09d
MD5 5f14fe059c6e017cde49fce53bf16203
BLAKE2b-256 ccc34c1e3435ec2a380a8173a3e5745e046ea3b8cfbf772e6fca877937bc0845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f3c38f13ce332267370c8a9eb5807458fc5056a92d5f14edd7fcbe0912d3165
MD5 a2076faee6b831bea4f888df8d3f2806
BLAKE2b-256 080800f338b010657747d558aa0c71249567fa314729db00cdfbc61d62a53bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 10984681355f191a941e52f3e0bfdc41ce30fbd113040b4c5d5d50a9d473d2e7
MD5 80b8b267b63722c20ec1d69e6913a596
BLAKE2b-256 d168e8f50e08641eb44e3138aec1ea9a356d7182ed21dcdc81f29f0867d3693b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 801b2065a22c94283563ba39b90fbce482e0cdc5bd16a13da6415b357f16cf43
MD5 3a83b311f48e005ff0fbec1083fe6d6d
BLAKE2b-256 5af18a64034652ded2dca87230ef861b45cb3c707877a2e04df266db077b4829

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 16143a59d51948013935d4d49c258d693e1c698ab6bed7f04033b6c541f07dde
MD5 bfeedc713458fd3ce8e4c2375c56d958
BLAKE2b-256 fa70e26bed10b7761807898a2d08c7193fde4eb1367c65b5be4f0ddfccf9343d

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp38-none-win_amd64.whl.

File metadata

  • Download URL: psqlpy-0.5.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for psqlpy-0.5.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 0a89b435912948b5176e231fa71e37157f43a56b7a0e971d7caee618c19a62a2
MD5 604defb2ec8be2f2854b541bdf292554
BLAKE2b-256 f3fe329e005ae7a66a1a0fb6ff792a20e1d8cc75a7028cf460732957f6b75d94

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp38-none-win32.whl.

File metadata

  • Download URL: psqlpy-0.5.1-cp38-none-win32.whl
  • Upload date:
  • Size: 975.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.5.1

File hashes

Hashes for psqlpy-0.5.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0aa3450a8e37c86b34ddea33326359ce52225fbb9369c1b2b362f22c6a9d196c
MD5 7ea1d81931cc78f47043da82830184fd
BLAKE2b-256 aab3ec9a6f310790ee4cbf153d55512e2a90bf0c003ac8e00302dd61ec2bbef3

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e85e0f39915eba9f9478c1c5291b2e44ce0f437eb7d82d071516dc4fd40d8756
MD5 aca7eec3f848b307f1a4a3e6ad340af2
BLAKE2b-256 4f894eeea7f505b99418e719698f943777d0bfb05ceb09793415b0b306491a7b

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d901fb0a7b000cbbd7d88ce5f044aee41db5c307c5c1cf537ff1a174eebdb7e
MD5 a491310845fdfcd50d66bf49ae941ffd
BLAKE2b-256 fa84e078d3ab63feb6184e37716f4cd14d70310020de1f42fe7e1e304b688733

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d01222287cf0849d241e7ab4bed7555331cce54af0c41f9814af315cc372fe8
MD5 555834622bbd34462d59d9b098370c98
BLAKE2b-256 d9c72fb983360deef2e1e0a2a698eee7ed872814715a380a0a063ba49c136d78

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b8d22fc2e5581bae6e7813de7fbbf5ae05264c580a288ef5d54cb67354d41ab
MD5 801ebeba3fec0b3569f310aa05fb9753
BLAKE2b-256 2dbe0c7afc3f36133318655a45eac9c85d4e8f902ce97c9f20eae860086ac39c

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c5d9995d160144cc93d764e8558cfb5dfe1ea5e5a4df77db41ffc754f0e2c88
MD5 adbee7759f5220c161c243b424ce173e
BLAKE2b-256 eae0f21dd452579338ccedd54d96d7bf146a202a63a965ee9ed37ee38cd2d08a

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 21da82bada7acd7b169187b8b13f441ff53fec9652e07e21d8f9b8131977f212
MD5 050b3c21ce5d358f51850230af8c028d
BLAKE2b-256 16bade82a58df0969ce643011b33f7d7aacee859ab0046ed968d11f00391288d

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