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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

psqlpy-0.5.4-cp312-none-win32.whl (995.6 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

psqlpy-0.5.4-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.4-cp311-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

psqlpy-0.5.4-cp311-none-win32.whl (997.0 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

psqlpy-0.5.4-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.4-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

psqlpy-0.5.4-cp310-none-win32.whl (995.3 kB view details)

Uploaded CPython 3.10 Windows x86

psqlpy-0.5.4-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.4-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.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

psqlpy-0.5.4-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.4-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

psqlpy-0.5.4-cp39-none-win32.whl (997.4 kB view details)

Uploaded CPython 3.9 Windows x86

psqlpy-0.5.4-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.4-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.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 Windows x86-64

psqlpy-0.5.4-cp38-none-win32.whl (995.4 kB view details)

Uploaded CPython 3.8 Windows x86

psqlpy-0.5.4-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.4-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.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.4-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.4-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.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for psqlpy-0.5.4.tar.gz
Algorithm Hash digest
SHA256 c176f03f9ede1d4a055fe081d3a23bcec10f7e2fb2729d3f1f45e4c2bd17af1b
MD5 129f2386622142d8724df4cf9c122053
BLAKE2b-256 533bba1d3a736167164620250f1b1b23153e31f8367b858f84995377c88212c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 535c98df730c340baf8087a76522e59e8b4f01644893d09a9ae5234863fa8fb0
MD5 57db5c01284f275f7a7d0751f4d0dfe3
BLAKE2b-256 76c59780f978a57b28ffc7f9f639315c9a1ba3f4f5283a15a7da353a035ec1ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a7eaa342eabc22870128892e73cfaa2844ab061865b994efd2ad215491916bd
MD5 272bbc1be34b1352f4bd89cc79924749
BLAKE2b-256 a16c2d2a7b55f9bd22cb91e3522a27827300d6199a6f4769f6fd6e4c6f6fea28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ac2e83888225979b22b0c29bba79bbb0c3b21e2823fd9b9a3c6ca23105727c4
MD5 9c3123e71b82f2ab188b0c495736268f
BLAKE2b-256 9849571a50ff74c253cbe743fedcf5bc26b428b0002c77cc3ad67788e1a13f75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fc16daf5aee71a272c6a124d3ceeabd983bc9287a7eebaafcd8a8d994dd16b2
MD5 90f22c683420d1bcbbfed8b8f6ce7a5c
BLAKE2b-256 ffacf159f7b1ab92d26e869a4d98db53210892e0d12383fbba6017445fe33baa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ddc84722a9c6d9f8ad47c6496cc3211eb0a18b59adeca1a49c889c73be2ec0a5
MD5 1ebcd5032d283a3cf608d20296001b98
BLAKE2b-256 7158ef2b1e14e83ac506f82a4c6031621241f1b2cd858e11ef1d238850794dc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a19d2daafb1c94a035161d5cb4cd43c6ac69b8817eeb6ad1062e693248714ac2
MD5 2e376500a78759795790294faf7af36b
BLAKE2b-256 4bc89bc900618c5ea9a98a7491dccab01451d3be702fc0fffde7fb8c7a2f14be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96dce115b15e1a56d1d865339ef0466850b612b456270b3d124dc0d2fdf4c9fe
MD5 ee6d695d8db43d060c29bec187f421ea
BLAKE2b-256 60eb03654d02de17856de98eac61ce123c2ff243d3a765990bbb7f8dfddff301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1268169bde4793aadf1f2e73911dd6c18bef33b60abc9dd0cda947a421043d6a
MD5 140cce7d6f51a0a1e9e6a21907082aad
BLAKE2b-256 60388f426e4f4711dcc2b1d12639244453e535b67137fa6d79c619ca9f93e13d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a433455b4544f39fc4c26208b14bbe115b61db378ec66fbaa8db22b84c9242b4
MD5 785c9972a34769d776742dbf1027e809
BLAKE2b-256 8de24fb8091d04cbc1b6a66501d136449c6f96f912e96d796ab1691e7316ca16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d46812cc6dcf17462780faca200c759052f5c66963ddf706aa78f36ddacaea9
MD5 5bed0b747b2371b7002aa5a93e2f9677
BLAKE2b-256 c6c2629b47c3340f2145683ed455f6bd99ef3d0d3b141527bdf0b15a6996ab09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b014babccda612eb7b1017dd9e252028f74e558c9d21dd695cc91238e30c4272
MD5 b235c5179844ab1bd64b565b8a762ca8
BLAKE2b-256 387af6758c0821306ad0945f77aabf4f1c743eb55b5b9ca8b8cf47fcafe63a5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 23b7038a68954c87681738b1fd562989c50131fc9b860f536c4272755aa19f12
MD5 413b1c055855cfca47ef9f1c6e5770ac
BLAKE2b-256 6dc8827c2852c24ed3f13589ab285c7c52d6fe722399521ce18b557d412ce5e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b4a785f8952e34a2b64dc3d7c709f4f3b76bb7b8c2e1810b8be581821ae9861
MD5 ac15a6a8927c6b109ffc5140b6fd7c5e
BLAKE2b-256 d49278d86ba42659e25f3c8750516ce0b38a2c48b24c359cdaa97d1583bedc91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f3c65e6073f04f22ed310d55e63d040359b0e297a4fc9dafe54461c2e5a5ee9
MD5 b9dd481d2f731d4d148a721801ca5626
BLAKE2b-256 a39d7cdf74c92f6e985033f8a4d852493b80ca58406f539307f8a400f08a55f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d58a391216c1c5fe696c1759dad04e9d797b656b0a0668beae7df7983fbeba2
MD5 0d635b8f3ac8ce6cbf61182c9a9c5ef3
BLAKE2b-256 8bbbf55f5bbe469a519b7097058d631c3d268b8048dc445d344b4f17f173ff14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bcfa098c90e48aba1cb6dbdbfd7e0459d9830f101323765915220dbf5b164c7
MD5 3a1a1a717810ba4babe2446128387d02
BLAKE2b-256 cbe05a0dc179c90b58cff7c338ab5177063960f028ec7cdcf09d6b2bc5c8726d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 103551a360edec923632dfdc960e914988e1508dbde52f92d204aa247f274efa
MD5 99f1315ec02394d57deb8fd0dec25be9
BLAKE2b-256 31e4a8b4b3e7ba1484d11ecbb9142d58867c1d12a679beeee11698d43c8f51f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d3a96f0dbc2b1dc13e42b3ae627f3ac41709e922f59391d71ae655c385b40caa
MD5 b81cdf6ef2053bfe8c278bf09bfd234a
BLAKE2b-256 fad15a92cba0e9ed009f71e44cccc4b0deaeef21a4f63843956efc3fc7939514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 2e8c36a39d5fc0fdad0c3349e41c5cd6cd1640b4f015954cb0f6fb6090eb861a
MD5 4263ce9f71dba587aa94c227acc6ce78
BLAKE2b-256 df9671c7ff82c252ef92eb91a2c95b2049b5a7e09619eb50924237ac1ef48edc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.4-cp312-none-win32.whl
  • Upload date:
  • Size: 995.6 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.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 cd698adc6a86c74023a679b9faa36350a98ce2e36e1a9bd55283b62fb048db61
MD5 ebf89d049a2dc49e87ce201d317f9ba2
BLAKE2b-256 2eef0f4f74d5eb9d2525eadf2ce61f47c540fd5eb0159f941360f5e27f7d6ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de300e7963bed987447304ce3228160842cebb77c0a5c40bed2964519577f75a
MD5 6afdb30c07efa3eae49b710ec80396e1
BLAKE2b-256 0915faa67edc5e0ab888a1dda11a1255b230d024d911d4be858826fd14f7e50c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75fedee9b4000d81299008f2d2edf73b93027a7f3451719b53e7b086f687b2bc
MD5 2193a11d5f9ab63423178d0b9c79cd97
BLAKE2b-256 32a7777240499eac414b00852a68fbb3a7107051783d5f37f9ee1fc28d44009a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d8c3916652da98f8d81a58f322ee9623cee57e2dbf9cfebb773641dd756946dd
MD5 adf2fa7d5f729bdd5ab22e258bc81d94
BLAKE2b-256 a13969d0f8940e286af33476dabd30c9e46268c4ccafb35f11ec7fc7aadb1ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76403c2acee1168f43850d6798cdeeab32ac11b3c5fe487d62fa84ee001bc4fe
MD5 9366af37d6551d0d235a9d5de79c282a
BLAKE2b-256 b4c5d0db4e1bf5e2052a4c2cb5f8cb4ff90c8af28f6febfdc9f64e3663c37396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2c8a35a6bf3571b5c10db64ad47441ea0f25035b6963756a8554f6d2c9c94af
MD5 c9b9a3d2d283637a0aa267327ef40460
BLAKE2b-256 048ddf74dd7fe736b8977b7f0a2a15c3e475b37bc70060eb0b52252eaad8db87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 434d0a33129ef61d3da283658ba1a56c0b91686820efc191f65d4a2923659d60
MD5 087973efd8d7bce2fad0ce7e7c23aa05
BLAKE2b-256 79e107d3014794e1155a9805a68eecca48118b5bfcaef4d8762b4ffadf63eae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46fb45a91fa615930274a59986aedb0055e3c267ed9dfacf1bac1b9979c824eb
MD5 2499341ed33acab5247d58e7f134ed3e
BLAKE2b-256 15279586e25e576fbd594167a26f525695ab91b90f32f1b329de5b1a6fd50b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 085bcdeabb45fd746ed8243c417759e56a8ba3ebda51966861d0b8487c7473e3
MD5 53da83ca3d6ee3b94ec355d2a81bdf45
BLAKE2b-256 71c3056c7e85da27365c67d53a9738a7f729ec29f54ad09e45035054c0ac5948

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f18e7f29a15bd7c5f5c8b8bbc50db3fe65476e9c5233a184572bbbae46797828
MD5 709b96a7c812c6e366df45072fd9c629
BLAKE2b-256 7053faf5336941754b0b58440f8af779af68d53019a8b95334fc328c4a306360

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.4-cp311-none-win32.whl
  • Upload date:
  • Size: 997.0 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.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 930f27b8ce241e1e26a198254f3b9abd26b6137ad3e691e1a92d16fccaf4e16b
MD5 a13a75658f7e7e99c41316f20f72a393
BLAKE2b-256 b10d09d1c987dd6e826678c7c6a6ec673d0b49f3b7c9906df850648e10b1a59d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68bc569cfe13b3e8b90c55d4876f0d2251c3625cadc81a8991dc6f1b7efa24f4
MD5 3f3d6fb677af774f97a9877b4b4acc92
BLAKE2b-256 6a98dcf933a5ac401f5fa712299d418adaf9332d3fca5aa4a9eb8b11a24387c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf036f3da1d5a54db95041647886d9b61cc471740ad87a9047dfbd92797c33fb
MD5 21650a5d8cca1365d89522b25d03f219
BLAKE2b-256 d72872c70844e691e25fbfdc096dc7895fa91bc39e009432634a9f808e523460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fbe273475bea7c37d47b1627332071c40892e2b4d6b833d6e49e21ecde8d02f7
MD5 da57e3086a7ef6f52608f28a7f97112c
BLAKE2b-256 5bca68d5c5cdc40b91359d4b57f7bf3483ce36a6316d12a6fd88034b86391ffe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f523a6d8e1a2cc9ebb573998d65b2267faac0afb97be0083184897effb0f800e
MD5 7ebc6361b3a6b763b60f5ddcbf96571e
BLAKE2b-256 e26fb785ad67ed771b6e417f25066d50539fc73b4d384b1b34a1d332f39f2cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f253f95f1059215bda8e9e56bc38534adcce350039202c7db15c437f4c9c5618
MD5 b84a1159e15fdb108dddd531866bf318
BLAKE2b-256 7c9ec7d8bceb00015dd173575cfb9b0c0893ebc41899658d380b1dac9b549317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f9df80e833cc021782eb7f4cee9333dd274d29ec33e289f4d1f95a9c57177aae
MD5 d9f92e791cb7741369e972b1d0256366
BLAKE2b-256 152c8db19847cb13fbb6cee4b9a9d3cc6cf1653b1196f08920e9a061c094663f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 709217a782d8408b3d5da3ff39b9050592ddc58ad4d1db24af51bb2b649fbc37
MD5 4753a843c681ebea774d37b143d6f4b6
BLAKE2b-256 5c60a824959ca768c94f80ee3c86f6e2b265a12270ad28bd1f30149a7adf1081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff6ddef1b0d91a63384dfd8d385f902bd3e1c7fb19ae1ddc8b356d526ada8254
MD5 22ae2e0bb8cec93f221da593c7d68302
BLAKE2b-256 f203eb9e40e4d1c5b7f196ec225b5f32c18ff146b5c9d2ee4700fbd95ba020bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1719c5b6d71b2f3c9bca805ede121ac51455db2e7867516cef92593999049a3d
MD5 100a71c364fa5564753c70071ff821c9
BLAKE2b-256 317bfec6196b7af0454bd2f1485802af878dc17aa8a93bddd77085117f45d080

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.4-cp310-none-win32.whl
  • Upload date:
  • Size: 995.3 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.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b9fde6efdf012ca2d3a5f9108423e84a49443f7631c0a353016cc190c8527200
MD5 329043f7e2020f5b353eb1250e526bcb
BLAKE2b-256 6550f90865067bac070f622bfef0ac92458fbf7b11fea37f345dc61f8666d50e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0efd10108028973da3320ed4190bbb986ba2cb5409605ae0f2fa102d0a86597d
MD5 14d65d533fafa8f9eef671e9e03caa3e
BLAKE2b-256 d7180d0ad6542342b68be710e047b6847bb02a2c87adce7a6bb86bad60a872a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 34688b6d656dbc9b4b6321664b76d2a45d16fa3c503bb47f56f21b0990fd1cd8
MD5 ef40411a5b4c78a79acd62af44ce6f57
BLAKE2b-256 1266dca63ce327fb9574cafe18cbdca9e5521aaf2fe5b592dec95c22723a3677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ef6bede8838c2e5f398762dc857eab0ca61e8f0cfce6a2b065c312992cf2343b
MD5 bb7f201cbb7a23b4baf41788913b4663
BLAKE2b-256 74022b86506ba9ddfa3851263e289977c8185d0ca82df635e2b393c68db1d060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f0bf756adafc9ae340e189e5cc043303f71f755a0dc6b2a0555bd6955eec40c
MD5 5ca93af13ec7d4b6e2dd1fdc6a829168
BLAKE2b-256 14596a5514e85eb278ee62b0327b117116e7c755fc115150dc8bfc9662bc7de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9915c9162fe69ee54aaf491ee79b029cee9ec4d8048f6585b2bc985e5fd362dd
MD5 0a2f440f89c80f86578e6bc9348042cd
BLAKE2b-256 9fec7ce4161c80912fc3dfd0c4c0feea016235be25dc59379b3e7fa58568ab45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d086e6d25ef7e542d15c2cb5229a061223b434cf672ab470bc191f6afd4de219
MD5 3df096e865c9b6a005e08acf5dd10df6
BLAKE2b-256 53ea85852a8aec9e81a99589e67fba2715342312650c2a87137bdd67729e09ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60c7c3f7f254ad3cf88a57635c62e1fd075eb361823fd8b1c3cbff9b6b5e360b
MD5 f2f50999a6dc6eefc4bf23be3816a517
BLAKE2b-256 9e665b3885ee3eb3529bd6872127b84afa0e4ace83b3ba3c3d20ce40b6eb88f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56f4eea7ee4f92162326d11c6e3ce5b4e8f37faa18e8b4408210745bcc4c3240
MD5 2a324121e42a4a030968cdc61ab6743c
BLAKE2b-256 79c90cab119f3743dd3382a1d59e1687605f65758b870a10283327ef52db6f5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.4-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.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 af3439151ab987ea919e2db45af9d46abfb774ab7a5a21575f5565662855dd77
MD5 f37f71a97567a4471abca7fdaea5b778
BLAKE2b-256 9ac13c513ea93953aef2c077babf81161792012d96cd4aa3316e955fead2c586

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.4-cp39-none-win32.whl
  • Upload date:
  • Size: 997.4 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.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 11ac40a1e736cb5a1ef91976ba3204bf4376506d0c964857398bc972011178ca
MD5 2c8fd00aa9765866e3d5cda02319820a
BLAKE2b-256 9ba4bd00796431320b8ae15e63db4f8a9ddd7fdd01e6f698f9e4dbcd066d185e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71d29c4c878a1b6593d6211c4b2fb3a283f99606903aac195860d61ca7b8e3db
MD5 55c0adac3e903d67090bb557825ba117
BLAKE2b-256 9013c3159f2897531c58ad7205035bd914124c30dadf46debfe0f08ebb44723f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e672d9e5a34ca9889f904b1bbc1014c52d3dc1fc28f4679728b3cd235ef71721
MD5 de93a5a1f7d035101e3c0b5c421938eb
BLAKE2b-256 815cc576e924feb14cec24ab45343bb7f7edcde7bd5fce3adeac216686d97117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3604db3955318aa59113c3019df620f4e04724280a85bbb55603e40706c753e
MD5 b5a16a86849b3bd08d660652131267e5
BLAKE2b-256 57fe679df6b8b0fef02a199aef1a3b529b9100d3c42efa858cc6ee52dc39457d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 37f57f14a74d2676de114571dc5034d146d00f7aeae446c2b09f584f485dd6a7
MD5 f4f65a2ddac1806977e5aff92a405b37
BLAKE2b-256 979f296375f5d54d9a7419ec5d3a0520addd7d1afa2bf6eeb32c3bbccaf53dc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd8b072e02db01577bb04b4b863621accef7e6a4bb531480370f4196fceb9de1
MD5 4059388c0cfdf1f5dbd53c05ffe716b0
BLAKE2b-256 f3bd2a86554ccff56e08c5e77065f97fda0d81aea7570a599c7ce9d2d175abc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b85f1d0b4755ac938d056777434695fc93a5d7f111d31dfddcc103ff1c4f8231
MD5 59b0f98c0cdd8c59937d4bf06c056ee8
BLAKE2b-256 ad693e8ba65a826764951d645a9b35f0b1779ebd29da11e26e3bdc48de74373e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.4-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.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 27b6d9873f01d4210dab649f456f25d7fd62ca94d809cbc9f72c0ca7f2a90e3f
MD5 2f2a04d187241341c907981f0df70e28
BLAKE2b-256 8a6ce798b4f4731218649e0a07d8946f946ed7e26cd9941ab54635fc53909700

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.4-cp38-none-win32.whl
  • Upload date:
  • Size: 995.4 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.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 61d02ea2a6e6fc6962c2bd79ce515d0aa4dad62dc54edb13e67f9c9dbc7f8b3b
MD5 9e60c8e7657ff0742b7db73278e67886
BLAKE2b-256 ab2723973c765ab92c615343ef2a270605842bdb6a500e9e7c8fcb663b449a2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb4db05f3f9090f3c58fbf3ae82adde3464a7192ac2221a7e1d8878e92879485
MD5 2ff2604ab5ab4b0cb53d6aff830e3205
BLAKE2b-256 affe8a84d5cd1ca90ba168e7c789d3ac3097c32d2c5bd871e4d5964b0856d3d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 728e6432e38ba11618faf4e035a4eef1154b94539f4fe8f0aa3d67f4733eabb3
MD5 863c5b510d550faadcf5d6481745947b
BLAKE2b-256 06da0bacc6883af301b9a62cd4bb066633f63f727d633ae2801102b860ee9c7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21883131b9f83feb0282acfc6743284bfb71eda69aa75ed21d80268c8deb0f18
MD5 dcbe48fe196c9fde6b52c7867203d78d
BLAKE2b-256 6cc7dce04e1f3db262ecb1aa8fe3226e9d19b6161c857c35b6dedd504bf09107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 808faa1a5de59d5773f70dc8df92f0c9063d7cf597715b0fe96546dd4a102cf7
MD5 86442a2f558625f2bd5a43590056de60
BLAKE2b-256 78fc1e6488059037d8ab51cfc9faf3730d6347c634a95d277e301c2aa29f48c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49e698a974432c42ead5804b4c1dae4488e30f15a130aa2698c757b877ab8612
MD5 98d37416d52fe117eb35e6196e2e58a5
BLAKE2b-256 93ff8082406c5694edcb2a2b0278502ffdebff01009f4a963b9c74bc7c6a7f16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.4-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 67a53dca79577e1442f1df7bd6a3e336baf86371ceda93bb1a95dc28ee3f165f
MD5 746a888e1d07fe20514edae0da74c1a2
BLAKE2b-256 46ab6a022e616f7dda5fc8a79288354d71b7b1c36ce7a00ac417e0b4ce3c189c

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