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

Uploaded Source

Built Distributions

psqlpy-0.5.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

psqlpy-0.5.3-cp312-none-win32.whl (993.3 kB view details)

Uploaded CPython 3.12 Windows x86

psqlpy-0.5.3-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.3-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.3-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.3-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.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

psqlpy-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

psqlpy-0.5.3-cp311-none-win32.whl (999.4 kB view details)

Uploaded CPython 3.11 Windows x86

psqlpy-0.5.3-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.3-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.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.3-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.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

psqlpy-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

psqlpy-0.5.3-cp310-none-win32.whl (998.5 kB view details)

Uploaded CPython 3.10 Windows x86

psqlpy-0.5.3-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.3-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.3-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.3-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.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

psqlpy-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

psqlpy-0.5.3-cp39-none-win32.whl (1000.0 kB view details)

Uploaded CPython 3.9 Windows x86

psqlpy-0.5.3-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.3-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.3-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.3-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.3-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.3-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.3-cp38-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

psqlpy-0.5.3-cp38-none-win32.whl (998.8 kB view details)

Uploaded CPython 3.8 Windows x86

psqlpy-0.5.3-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.3-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.3-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.3-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.3-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.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for psqlpy-0.5.3.tar.gz
Algorithm Hash digest
SHA256 3fb6b5b4636b20b0ab74beee4abef2c2851aea6f48b9f83d0821203ed4c4f4d4
MD5 4399e0d10b1c9681d8b27daf2ffd968d
BLAKE2b-256 525720ba9237bc8bb563ad358b7fc83b5d6d5ab179266626f6c373597e851cf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 133db4603d96ce0ea8d79efc89cca1db50422c3fa8daa755c660f6d7dda8b9e8
MD5 2043b4373fd03fd8033c24ff2953ec2d
BLAKE2b-256 cbe6c463cbcb9115790a93c3d53f8bbb5da8748ae81ded72e7ba85c5f2e40db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 52e680be566494526ce073cea00df5a2743fa775dc193eb51f778d6d5ebdcc98
MD5 2626baff84b2c68d46fe091e0bfa2137
BLAKE2b-256 85d96d81ffb8599ffec3f947c3b9452621ceb1ad4125013cb6d0c340f37a3778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d7a0702b5bfc1f1a03cd5209ecd207070a51a5007b20a03ab2aab761cbf01239
MD5 eed186a2af14f78ca64e6bb200a42b84
BLAKE2b-256 53904c303cca07e77ffea3273e11144f156cb378fbce61e605caff0413d83189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f4ce0222fbd7c496d63163516fced28c8e4bc9f3bef0255daf11f44278355e1
MD5 cacf57e79e4520de5faf5a869f97cf9f
BLAKE2b-256 b467168e51252ed1c199fae3db23d28a52a2e9bd1da8968cc984b6ef6c51d5a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d93eefe3a1eb6f378e31c27dea902065541aaaa404ca1ba93cf953ad57ee6df
MD5 f7d6f91d2426d7c2f3fb31e6884ce9e6
BLAKE2b-256 8ac2225e46aeee884b83f87aeebe18183eee0d62b4e823792418bfdee9b0a967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a2db200ee471110e09b9004b83d1bf25e79ec0cf926fc3a13228281f6cad1035
MD5 84b1dc453ea11ebd6f33ecc183f5986c
BLAKE2b-256 c80e1d69be73461cab4b425221bb2515b59750d9b82d0d2cf565710d46e17690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d69c95ddcd0c4f05927caf25803719c0c5e79a24d39c9b1b949fb46a04e869c
MD5 6a113ad1c3077d96abcdb78cad37b8c7
BLAKE2b-256 b9c4d2b14d22109f3cc49b66191410e5fed5051db24f1c9292d62baad99daebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3724d71f0021b681f3b358c50931542878267d8059ade618106d1d73139ca76f
MD5 c7f5a3310db6ab631b6dcecdb313f5ae
BLAKE2b-256 aa94b5fb3298417015c26e9f29c37b7b4fe2bb1542d69aafef8eaf5e34f6a185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f8109f9e0ce4902266c953bfb88f021df35f0179d072718f668c100f67db7f08
MD5 a1ba2b616636af3ddbe1483380d5bf90
BLAKE2b-256 338e7dec6537f53f679181ef5d9e4310fc19da55a7ea14c6d02d112cf63e17ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 348b63d717b5a70ed8fbc828dc370eb6422fd7ebde02f2bc18a48bd56ecd1308
MD5 cb24b40f3fd0cbd658604358864f3e66
BLAKE2b-256 c44ed544732a4970fa742c6b11289e697adbb613bdb2601ec7ca8871558e1e10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5721602c7bd1148346be0738b1e433b7a9aa19c45b203df054a4aac78dc51933
MD5 87cc2ef27ab5e6ab88d47c66eca7d00b
BLAKE2b-256 bbf611ca02136b25081cc780865921ede7906004b8e493a285b72a8d37f83209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 14ec13ffbf0528e12bc02ca4d789d25e80521bbbb76d7104952c4227b2d8402e
MD5 b3b9d3577039422434bcd239450b9330
BLAKE2b-256 8f07a3bf716edfe82c579a68534bc9e71a770a71b2847a0ce38049e59dc9c6b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f2dd9330c8b1d691891b696be7b706a3ca15b2a413dfb748b08ef208f2c0fd1
MD5 28603155c284f9a24a190c1b7d6551d4
BLAKE2b-256 776c15b83d24adf2f63ce077a783f9ebcc2ba44ee833eb1c9d720c1b85fa90cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b6781f8f17b6c1d3f5e2d7e813317ea42f55f6475ab00807d45971512ad7896
MD5 78cdffaa14653ce465c8e6ce3155ea49
BLAKE2b-256 eada318afdf5cc05541b6c36034f8631fbb11e7045a0466e5c651cbffa67c903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e4257ed114000fea0c2792de8f30e0c0c07b4caf6a3efce439645ca62127aed
MD5 3de11f18c1accc31b320215c38c75492
BLAKE2b-256 29dced52da4ec597563ea411386e8ad300b8cf38a3f813d85710e0f514997133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d8a4244d6fee92a6bc630c96d8704cbdc34ed9bd7568457bff80b3748921571
MD5 a9983b3e0871aa43fc15d817b5dc56ca
BLAKE2b-256 d42cc8893c89b9908e105dc65df2b4d75eff76c2da6f4435366a85c35a63661b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03fdb20114fc227e7641cad81ec574f05552d734bb15ebfb5514f316ccf03788
MD5 b8b19ebc286f124d983eb024e0290b03
BLAKE2b-256 ea7f81975c4a657fa9b3756a369fcbf33b5f82698390e7bb6805eabdf42d13c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 be74cbc89b3eb692b415940c30e945e1f4ed197279a787bf9279990c9cd10202
MD5 ca91142a700b3817a71df8d5fc86cee5
BLAKE2b-256 4ed2a3e8f72ecc5e5ceb42ff7ef6e6c484e70392d9ca6e0cf2c065b1b720a37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 951ac6d112d960fe4c141c20fb875f1cb405946b8018c788ee373fc4e01bdb1e
MD5 e307d7c92a20c7e34ac50ea6eaadc7d7
BLAKE2b-256 34ac394e567dacb73cd552ef0803f440f8025153070f30ff15b5f08fd446cc72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.3-cp312-none-win32.whl
  • Upload date:
  • Size: 993.3 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.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 91233b0320bceb607173e42d0f90a5f6ee0da90f91bb5991fb7e31501a5ff137
MD5 ed671d01ee459b08c338aacf0dd556e8
BLAKE2b-256 c24739b5aed9e360c0bf028a82180f1b3bde366cad66a510c4eb8caabe15e561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 140a4f0da45b12517be7e73c4ad9dd751d1d62e856e61d893736041e5ce80da6
MD5 8ca7be7f79b802591379a37f000ac92e
BLAKE2b-256 4972e231b5f1e2874fcf1e7afacc248169292b857058eb1e0d19cf9cec6e8d7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e0a8e0ac8173d71a8ca2dc60820474e6002e8e92d0887551cdd2a045d56f6a95
MD5 c741256120fa4776180e80dceec14995
BLAKE2b-256 38e5d636ff005487cd5bd5a724f34bea0c8789ada02cae8376fa8725b33e6ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4b4d6ba1bc5c2a34df437749c0df8c59315fe1d9e4a07cebf14c553322e94f8
MD5 c7f851546229cf18b58193efb2a7a49b
BLAKE2b-256 0cabc4986816e1c525de08ed94929ab4fb5784c018364a36312a53a628785759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ae6129f7263a94564c92a6909fdb53bd979fdfd35891a23cd7b4f639bc48f73
MD5 a3615928c37a23624d92c31c308a23f0
BLAKE2b-256 ec5cc2399650567b23a7ae551d516fb11bc1994752d9041481ee80ca1a5f3051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e19638d7e24ee78531367f022ddf5803cc19e09cf7f0ecff17adb7ce43e827c1
MD5 1abc5613571ecdc8cd7ba0332691ac73
BLAKE2b-256 ac747ec963f6529a0ba6a3e184ae9411c05210d4c6a92f234e5e7171deb645d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f19a6b93463f96235bc2b7688bf1a230cc5b967031ccc8f960e38c2e869c36fc
MD5 e29d70ae2a311c0db31420f6377e9f9f
BLAKE2b-256 aab93d9ef6a168552cf205406fc04923e8bf7314838998f582d695b56aa0ad6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 223c7de22c993b5124a5b92af291e8c81530f247c4f7c82c2de23b6e15e20a77
MD5 5d049aa1b0155faa84e6bc09ae121192
BLAKE2b-256 d223244084d75b58459e7b438b077802580320f65993bb3aaf110ad3e6d44b93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d61d3d936a2f57a502f54033f5556763abe80de13e72cc64f313e37728b22572
MD5 9dcd5fffc4cb5aa800d6117398ff3506
BLAKE2b-256 fd76c5931c4525c1d30f173b9968ad055366fd517ec0e83c0896bf10cbf89b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5f7c92896783cc6eb28c80e5004a55e2820b2eae211b7a2bf5e34a59cb435495
MD5 f8d9b26d706566977cb079fc3144381d
BLAKE2b-256 1534eec70fdd70a3cc596f82d32af3d19c528ad295851643157a35912f9fe680

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.3-cp311-none-win32.whl
  • Upload date:
  • Size: 999.4 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.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 8e0cdabb50f026e6e2c71c4ed15b34bd11aabd9561071876c47f35b270da4c76
MD5 2b05f0679a4cb7e0cc3ef94d7333244a
BLAKE2b-256 2e906f1e13a3710da9ad7205e88ffc6000e0228b46dc2751165d157407b1d0e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa68c274f70364778ca94d05210a5b65a4f6592102e6d599dd37e29491d04865
MD5 f9bc1f6224dac24fdde658c2030a8486
BLAKE2b-256 946dd74122f4c084c671ee105c6a2993d5794fd0d89d52f968e39d46c211dd7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf3e69abdbca4f853d55a771f708803e71bb712ec0ca54bda1aa107b8630fbf4
MD5 dfcd7af411af795ac7b08793c3055f20
BLAKE2b-256 97ab3f6bb30d0ab0042b5c0d7dffb87a7937c0838a37dd777a17c20bc0cfa00a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 affb59ee3798af685b8c344341520ccd472db7cb3aa1e744a529875e0a1e152e
MD5 fd1b5295e1f472e95c07e0ea25110b55
BLAKE2b-256 5433bbf02bd9017da8958f1db18f081ba2d884a4ad03be392072d56d20e36150

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20107df6a20191820cff0388598a44bfa69f966d916f08a506a8c4b286090257
MD5 76daadc895bbead8691494453d83ca68
BLAKE2b-256 355fc29b79db13e08f0afa6c98ef9898d9db5a3cbb22662ead52dfdec853028b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b5f46c677c01b6430f1aae0adaa175f4c2b8996632c3bd1549543a85dca2edf
MD5 cbe690cac6c96b5869fb6b7dda7f10b5
BLAKE2b-256 1e5a5853bff73f1777f74ea1a617109de2a8b93c496bb9164ae5fd3519acd089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 651d1fc1f3c0f4711f0bd5499f6ad5d835beb287354331676e50ea7bf82e4ca6
MD5 edaf00c6656d507bb4c283f949248d76
BLAKE2b-256 f6fac1e70682e206b0966e97669b0c2812e2c368adbc049faebc7f13882f6da2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e60d85cdacd532b679db10801bf2325e16b93c05846f5f8d97214aacb05eaf1
MD5 37d7dc3ab2e5c91039e938cc02fbf551
BLAKE2b-256 7b28eb7bd2a5b1170f15edbde97a33a57e38c1631e37444dd7f8f7cfe8a93c77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1439173ed94bb4d4f1ddc93dd5c282d0b1a22f917c2fd50b242ce8774e0a4cc9
MD5 485a1594b5bbd8efceba6fa5134b40f7
BLAKE2b-256 091cf189cc5d0ca878f9294929f0de2648924774b85e8cb55412841eec3fde37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 0b11d2513f8171f991e904eb83a28de3f42833d6bd03375d4a932309c9760920
MD5 194d3ca5ae3b91fc223b5d01482893ee
BLAKE2b-256 a1170b5eb35c4adf6455e9033f2eac7bc22fa4b3c18469ea831e75a21ac99495

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.3-cp310-none-win32.whl
  • Upload date:
  • Size: 998.5 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.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e5c3ace717ede09df1c98784007ad84d75d5d6579aa421e3999e2762afb1857b
MD5 e9b18109fd6b3f0ceb53f583c5a67af8
BLAKE2b-256 a1b345d627e3c8974b3dca33c47fdfd5b324a5eafdad78b6bdc7ef203717198c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b54a61f32242f3f7adbead95cca7fbf8d30bc125be1ed81e44fd7c7eea734b9
MD5 489016f3180898a9c549ea0cdd622dd7
BLAKE2b-256 4ee96671318191559136a4ef6c412ea47a7dd3af3cbad7d8e3662fa3fd4330dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 edb53fc1613ec5e27232938377a3128754997b34e4b3b70c725c1ae5983fd1e2
MD5 d39662206df02d080a9361d0ba68ab54
BLAKE2b-256 b89dd342813acf557baf9156786bfda52b0af693b015ca9b8985eb2b3a2135f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79412a3732fefa1e2f1132b22f48b11efd6457a525c6dd616190ca9184544e54
MD5 793d2208878b8e83d0ba057bdd019a8a
BLAKE2b-256 efb84d61e6e8d28a723fbeb034ee04a0b913138ba03ab22d5c994035d5fbd5f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68e98bdacee04af9c028d8146ac1b481207286f1aa3eb618c4040c77228222db
MD5 ff35994e8f1636e598f0ea4a5249507d
BLAKE2b-256 e69f71f1ee7d9e8798b3cd697bc353e9345367a2ebba222312cc9d5253858cf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65404ffea42385db3b2f454d3fabf01214e05b2b66a73dd1f0628280ffc0b509
MD5 b095ad8f8a935aaa0821152bc0268d21
BLAKE2b-256 3606cdb8dfd200fe9eebfff7467cbf8a0b3f1ddf1e446b17fe21ce4108516e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f605c3af93b2ab9c55e5c177ff04185639bc3d38729fbf5c8d7ecd3fc38f2d8a
MD5 1c7c2883b7652e0fce9768ef974fbb20
BLAKE2b-256 44dc7d3053b49e2572a4e12e3989c2a5dff487b416d5a4736f2be3971405e221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1c47e5eb10d6363ebff9a812e4fa7b610608cc1d1bd82b3c4f7bfa4e1e75244
MD5 60a64fc6809345593b6aa38b93b9c3a6
BLAKE2b-256 c1135224c32a95f6f3aaafd33c480f0c7c5668ada99177c97baa80f28a74a745

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f49236c862a759d3a6606daa59e10fa07ae3cbf93a8f2ccc47a78bb7fc5c5fb
MD5 b5e3a49bc610b2ab9557259378779aa2
BLAKE2b-256 63d05bb8bc7a8f4ef43fa332f6caa63ca7d7dfa21dc0f1072bc1d0720599b2ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.3-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.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 80abab85b66146c36e342fa38078a665e1d7b3667b1696ef91d660c9a7358b7d
MD5 087b0a50b3ba35b97b3b9f4fba2cdc0a
BLAKE2b-256 f48c82c9b376537c635abf139a3e52a49a0477bb8caf6bfa20f64999b25fdca6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.3-cp39-none-win32.whl
  • Upload date:
  • Size: 1000.0 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.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 0574fed3ab20b4f40cc38aa82da1432d2684690d47aeffa9010710dfc06e38ca
MD5 9c10a6b10951b0e938bac4c6e42aea3b
BLAKE2b-256 fdc8575c990226902669ffe218665a364a96fbdec6bc58787dab99f223ce4b47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cf3ad9daee271b27b244d1ab356eeb9ea3d2b2232a881223ba96275af10a708
MD5 853b18f79a3542adea8982db33d37160
BLAKE2b-256 d986b3a82f4941b4875b5499cc4b225a53c639de90c8df64bd8980cb68f7ad6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d71821a7afa94bdb2d5c426d15f803ada1df808600258a01cfcca4328cafe55
MD5 116381d01252276399c5a6db3f458aea
BLAKE2b-256 8fde6f18d5c9c4c938c88ce6e4c84f7d4241ba596ba458da5c600c5bfc4d11d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b19dad3b9520b444eb74df2c88746f0250434d9de83025bd789f210a8eb0941d
MD5 ebca142844c69eaf79dd22c1d274e6a2
BLAKE2b-256 277f797fba342588a184c47b604bd923e27bd99f101c69b8147692ac37c61995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99e3b40aec00f51a32780adc339d6d41d6a76d3eb5efa00018a44df44577a988
MD5 154fba05130c3164841222b508918fbb
BLAKE2b-256 7007c72c9c7941ffbf419f15c7718c738a1643fa48b103191cf6daf2f9fa369f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f1065ca048bf1b70327a25c6daca58729befe0fae26f125f281aa9f79cefda7
MD5 5449152dc4b70cc260bf93c568bff9a4
BLAKE2b-256 ec6e59c0eb433a3a0433a82db612b12fa5ebe68c9f0dcf1c7821f75ac314df0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 45f62d82db60db2b36e1f3f3c325aceb6b4083940441e1941058493c6727a40d
MD5 c2f0457e4ed69436731c42fb12eac879
BLAKE2b-256 17834d33b238d891b7a8746d3f0e35c16ebad22ce460ced6616c84d69bd7b78c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.3-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.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 45e13ec1d590ddb9e8f8e2ce6766f51ae3759e3bd7f082e0c10cafae12e8b12b
MD5 982b99a4fecf4f822ea6d9b28a150fdd
BLAKE2b-256 8793aa18c8c1a661b89229d0cd5e124a2a38732ba08370e08a76f8716ab33ac1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.3-cp38-none-win32.whl
  • Upload date:
  • Size: 998.8 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.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 8538f5266b82492c0e7f3cf361606d90d356e1e9de8d60aec377c5f619ca1f25
MD5 1f8217e4c2a2ac34c0ba31ec6cc89c3c
BLAKE2b-256 8f96dbc3a84b99d666cb4417ac7d30d2b246b44933d129a13a2a0d36f0975d4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf8c2334a5ccce62f6aee93b495b5ac22ec6e373529c6f32bccf29b94ec879b9
MD5 5063f84e0199511f570decea2a09d7b9
BLAKE2b-256 9902190aea2b88d4f5002ccc2be50b5a06bd9fb03c642fd085e80d2d54582308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 135f40f936b6fbd6ffcaf419bc9473a65b3f8b397d00850663dabd89ba21d744
MD5 400dfa5f127bebc40477e4632d6cfdd6
BLAKE2b-256 ee754b7c893f84652c6fc3a3f74daa74c1f311ef89b7824eb4837ed3c017e626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c40a7826c5fb31842aee55dd731d0bffa811b83ba2e8a2db8b78b26f8aa54594
MD5 0926bccc6851bbce1a6fccf0ca9253b0
BLAKE2b-256 4a72761082787441eb70c2c102643fbf95d41c66fcf5ddddefe145f44fadb3b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39c400e716966b510a17c1e712d72b880b743facdb377550aa0aa84c0a8cb537
MD5 23d036e89af5756995f0f2443c9700f3
BLAKE2b-256 49790c7111fd9c17e04c6f01898abbc5b301b17f5cf22d922a400b7ddd383a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10cfd9bbed479f1b220277ce2f7722da88e4e156a9f6ee11b24c0cc4f1929673
MD5 5216eea67523c25bdf0460bb1b01ad0a
BLAKE2b-256 4ef1c48c4ca58536489721a4d051661d0a310289d1c4860a5784538506ada787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.3-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bd37bd6dd98ffc7f156267c38e1a7af198f0df58bdd76de4fa5acd45752ad969
MD5 b7cadd9a1ac8a46d20678c0209ac41a1
BLAKE2b-256 8f603be4ceceb26605dc3b7ddcc54d6fbb507d8219ad24b9346d7c6e78597fab

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