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

Uploaded Source

Built Distributions

psqlpy-0.5.2-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.2-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.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 Windows x86-64

psqlpy-0.5.2-cp312-none-win32.whl (993.6 kB view details)

Uploaded CPython 3.12 Windows x86

psqlpy-0.5.2-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.2-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.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

psqlpy-0.5.2-cp311-none-win32.whl (996.5 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

psqlpy-0.5.2-cp310-none-win32.whl (996.0 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

psqlpy-0.5.2-cp39-none-win32.whl (997.3 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.8 Windows x86-64

psqlpy-0.5.2-cp38-none-win32.whl (995.7 kB view details)

Uploaded CPython 3.8 Windows x86

psqlpy-0.5.2-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.2-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.2-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.2-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.2-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.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for psqlpy-0.5.2.tar.gz
Algorithm Hash digest
SHA256 1383983944d2c45968a280da5e71c6963c9d7b83d51ed4068734d4ea1a37167b
MD5 b6cde41d4af873ab5af62697772cb3f1
BLAKE2b-256 d78ca9a69dacb5588ef78e48dee6d5ad2c244645a2e7afe2b6c9b525924fa4db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2d04afa9dca39a705db7d773aed71139579a0395a84a411f34bf8d92337d4e5
MD5 94ef26ad4cc0dc78c7d5c14e9cd6d765
BLAKE2b-256 1309c2d36ba23435647365f07034a1c2f7096183479ef8a3586c53335f53687c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4bfe8e5bea40ed6f8a219c102795d7df1fa395ff20dbc3ef17af72bf88154d5a
MD5 f63c74ebaa01509b4e456d7d5cc167bd
BLAKE2b-256 e03edfe3e7cd175447bb18c490497dc14dc7047f012eb3494b0bfe4c0830daf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e631803199e941be89ee4335fc73e658020108534413eb0f36b4881767ce13a
MD5 9ae0f34a668f9133fa5ffb892fe709e3
BLAKE2b-256 b3faa562767ac6010868a6c6d2e078cf6fc62dc4e2d7d16c5c2a2e55098ae1af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6312ceec22b123afffca280d603b8e7bbdc1afedb7b93004b8ef3c754dd36ef5
MD5 03943111035ccff04054d9b7c1255716
BLAKE2b-256 d2bc2f5f1716f245a1835bd2f77eb7255c1114c61096b98ef3cd35b6472d7099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bc759b0d182773b05c3bf64e65d350221e1ae9205fa9d8d131aa43c05d2156b
MD5 7d530751618757edcc94d77d315094a7
BLAKE2b-256 a8f795de8b14569f695bd20444d0c330c569fbe54e9c3f26309aef9f96123e8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 898bd9040f1b7ad1d067732747c2a6e046c3198a456a8c30707e51cf146f8a78
MD5 1e64460235f4aca260b9f89c440285c3
BLAKE2b-256 5eed6e36fde0b517984c5ba9c4e98e1f17e1f09240118bb1db0440339c05a01d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98c44cffa03f098b0a71668be3a1ba3794b55b405f22f9e6ce8a43ae9448b45a
MD5 16c6b69a8fad5cc78baf68e65eb64973
BLAKE2b-256 08eed3317be7134fea348701329be3b223daf25937c00f6441c0c6c3e392001f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 efa25d43e1e7d1a1fd3736f3a60054f3a097afd70b198435981c104b19e2dc62
MD5 5d4f3f6e0dbe98bcdfa065edf155d641
BLAKE2b-256 2fab89004605e82e0f68eab40521a2308f352fa8b95dc8c1166bbe59be9301cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c5ee639da687518c4ed935dc03f015394d5848f739ae40ea2aaee7fa425d0adc
MD5 60edcb9a91c26e0b97992147a3ed0355
BLAKE2b-256 c15c43cab935a2df2b747f61dc855240869cf3dfb1d3abb5d2bfa75e3df167b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 23c749b6aaf4ce66d72b990c46f41dc265b4665546e9533a382f79d0fce1c3fe
MD5 32a9ff92405bbe5f7bf74146644d4b84
BLAKE2b-256 4f83c6b6013fd7bd42059695a6f3e3562e4d031fb2d99a55a2db8afc88f99ecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4233c305e220a9e95fe49ee444b5fbe864b0b9c371a627878a2373f15001b8d4
MD5 dcd7384df29d5a6cee41aa0eb4b6e99e
BLAKE2b-256 75c55e21548ad2d0d2c02b2e2b09425555ac5bf57660d2cfad8f13535c2fb142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2e80c279006010fa2c2f18e5d4513b222dd4ed28c96d45aa74d9e431c201e296
MD5 b8b71530266386d5dfca969b44b5875e
BLAKE2b-256 fad376e4e0af5b70a5bf0b773b758958a06cc6cd21e51769bf2a97349410535b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cdb67047f8d0e5b76734fb1542aafd9f4401d6f8ec34b2c35c62aebab943354
MD5 d26fc144c4aac6c33f1b51423867d5d2
BLAKE2b-256 e704fe8c85b1bdb6f72fbfd72ced443cc5a9f92fa13fe4bac3d8532f93887985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa07cb41a5dbebe2300551d356333acc7b5e7855416eb82f7f3aa05c8fb98334
MD5 f53a98993f9023eca7448041532a31cb
BLAKE2b-256 53b9c1f218ae35a2037b3e437b409a595a0cfd27cb075ff271f31ef67896fddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb8894d884debd697a03341a36cdd722d2bcf14fd81bed192ab737013acdad28
MD5 4aa821efa2c18ef2013a9d3e79a6fb71
BLAKE2b-256 96d805d4370e312f042d908070804cc50d7dc90236d58e3a1a24db80bde92dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e5a6671c5c1dad5c7e2359afcf5c19437ab83d619e4a6011994dcdd9e68000f
MD5 cdecef1dfaae2cd098b407c0352c978f
BLAKE2b-256 59bb9cbe3a8b76f0ff79238034c2769b6853869e5d9b0d639b03cddfbcc652e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c5a227d90ab2a7427af16c656bd9df67e8c7f523fe3359b71e462a80f71cad3
MD5 4b37ba1e4cb2bb34a29e9b822a063d28
BLAKE2b-256 28763b0c0885965f6be1eea7d1a5c5c4672c3b4a9981ff2ea5d2bd3fcc7a7481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b30e9d98651664dd6abf286b6e965d0e2a785508448c867e4c007a70268c181c
MD5 1fa920360328cfd166b24610faccf82c
BLAKE2b-256 c69c170d1656a7aa193f5d62e6d49d18bb0139b492a036d4b587776c2cc5adfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8799907c00f7aa212072c0851555391d5a2457920f3237dcdd18f0c7906ffa43
MD5 caa513b3b5533907cf572fad9c4e3a72
BLAKE2b-256 d007458c99b07605f071a51b6b17e0ac82b619a393a621362293d340784e4d63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.2-cp312-none-win32.whl
  • Upload date:
  • Size: 993.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.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c25603855cb17b7c11ff8f7a8cec602dd86fd8be21f6a4fb77f27be3fbd764b4
MD5 7965a7e9decad70f8633a9966085e814
BLAKE2b-256 282dcbdeeab4b52b6e03c5295b0eab7d691cb6f15d89b6b2ddbf04f7a5051e28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0e0d0e639485349cb86f30ae6d014a596c6793fb9e00563f505e85c329260de
MD5 40ca47f5f7ee261bc47d94f317b58ace
BLAKE2b-256 478c13e927b6aa2287fdb8e4176778e90aee86a2d18c9bcaeb717c73bb0064c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e2f34a08f846230086900adbdf1f80d8390d4bbbb5ef420aa282c02ba7971d9e
MD5 660ec54f6a0613debee20a2cd7b7d22c
BLAKE2b-256 1573b4c2018c455124d8a9b5686b9807667e784596a6be391b3371cf3a4750c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 07ba9bdfb0e75550990770d13196f24bb60c45ee380224ed87c7e6f39772151d
MD5 ccfd5233d3e1eb4a8fe7f55808ed0b45
BLAKE2b-256 1c2a5ccb8776f6470950883dbcb79337cbe735fe86b6483b75176c45c5d7a3f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c03b5a777ee0195bd3d19f284c7ca6d3b63214f468b4df672f016d0120f08c28
MD5 33c0f81cd8c44645ab6157de879f7fb2
BLAKE2b-256 afb5269873cc15fa05f1a7ef09c0b6af1ad4774acd43a255b6bc8730903f8c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97b8c2ac26a348189d0f68a65ff15c112c880e3e7d394eb971ca0a061c5dbfca
MD5 ebe1735ff38a12f34a72d0ce88a97142
BLAKE2b-256 a40c2758ae53b2c946670bdb62669a6b135983e233eb3d4e8b9f40041e5c4a20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b4e4fd42bd89740f79c082da663b167c952dee3f8f42e1e29865d3110898e0b4
MD5 8802ffcfaf78e95f780085cb12882f88
BLAKE2b-256 5757daa2a806568feb3cb65e90687b6e053b713e4b85ea3aacb605554e506862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 397cabb7b216c577af104c63b224dc8a65b1354b7e97013e5370100d33ee1fc1
MD5 07b8ff22019348bf9b419f2085d4ec68
BLAKE2b-256 68b77260695017b4a117d78ec58a5cdb59964c7c0cf431146bcb1f9da1636062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 043fb45dafe01db49f852ca6b9d05ef412fc1a4946d87c6e86d7371dff9cb306
MD5 1ff5408b4a9c54dd21db04598d658393
BLAKE2b-256 24a3e5923352472aea3a907a9977daebf5a661b07e9925704332a270bd1efc28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a8b445517591a5c8eb8b45c72d2463d40b76e7ca965f54a97e6172ff4681321e
MD5 0ce4f058d364ed3aed7fe8cc4f210371
BLAKE2b-256 661470944088f9cd7990e3b87279a79a7f293eaa136f9183d759e81ea2f98733

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.2-cp311-none-win32.whl
  • Upload date:
  • Size: 996.5 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.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 3fc1dd087bb727c7394b1ba71aeed7de2d3597967ff7cbabb7be73c652511a70
MD5 a369ad5d0aff52b798d9d67a2369ff43
BLAKE2b-256 61033c2576cb433a8b3847dd2119e6b4b4be1c1db8c6ba7a8ff46a7adc9da74d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3442b0088066c82a01bca81e1c8a8b3744c183582fa1342342015813616a053e
MD5 a29fa9ff438dca9910c56eaa990baa1c
BLAKE2b-256 8bab0066aebf2f8f09c7516e966f365575d81974994d9e5032dd1117ed4a82f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cbae7dcbdab684db1515bb5b28d23abb39b8ebecfe749f071ffc2e9d66145b13
MD5 656a0d9d9136245c23590e59be7f64f9
BLAKE2b-256 a59305d0438aee298121cd645daa987485b6a206fced56eb9ecffc2d21b723d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10972e9516ea2e85cae27e7d163ee931a6eeabad7ef4b007452674a8a9b94c56
MD5 47d67ef5501c4ddd1b153064e3df61bc
BLAKE2b-256 a18e4eea42a71507b30b1d2c10fd7b97f899cf378bbf75ef4a50abf7fab90506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf561754ba8b8d147dc2ada2bd837b8d02c3bf67f88efa8993e1aa5eefa5a17c
MD5 eeb880af5ddd05f98d59c0c336f65533
BLAKE2b-256 fc81b29b4d4b2805848a65e0077326ecd4ad1249f1bd9dd7f2a8f96055198b5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b431f879fb20d4b77361f23029cec76eb54f9e8772f2cb53992db66b0f431a6
MD5 ad0f74c7a7a60146b69b272ff1946408
BLAKE2b-256 f56c53989305b347575c197e839751b1846f9ed4e85c9eb4e42f0c7e5fa2c44b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f304ed285c4442f4ec406e9b0d7a4f386b6625cc56195815d75fb07873476771
MD5 c3f81d700bf7586e4d38090b5cb304d1
BLAKE2b-256 81ed1cd66d55d3076a3a6f58a817e1798914278ed730e597d40b79e90104a4fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 655441472ec225292c773ad6c616754d05b06d87ce47a55437b4068e3f48d166
MD5 4ffd32b5e715599c484a81bb2665bba0
BLAKE2b-256 03386a368f8218f6a2db609f61a976726b9de4b06b77a43ffbdd441e5507726c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 acc30a50bec89bb712c35789906fde1a3fb6a0deafceb248abe25d4a80267947
MD5 be35f21801672e58dd46507688de0a3f
BLAKE2b-256 44db0659d556f2c4c588018dbcbef5e89110a2bb4389b4dfafa9cee0e0b5f978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7540a7195d05f1b11c0f77187e93dc2091142df99d4b7553342b0c2047a7163f
MD5 e9abaa4d66b0999b9094357ff35c6676
BLAKE2b-256 8502d0bce1e036bc296db2c514a5e6f9f0f900cab9e192f5867aea4687a85ee4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.2-cp310-none-win32.whl
  • Upload date:
  • Size: 996.0 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.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 1f97244fa08bb0266cbdb37cab5905f4f849c84f3cd3513e187e07060e8fd8eb
MD5 c414c05f0caa9f4db6bb58e80dbffe50
BLAKE2b-256 801f401c75bb21d5764f81579a01a8e756201abc972f7a836431878c0380afb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea1fb1e289c294b3ef9c1ca45c31edd7be5c591ae2cceac1a6c6c39b3118b2a3
MD5 57f7df8af50004243e7b76efb2fda34a
BLAKE2b-256 8ca9112d9df9e6d693384f1c464dc4c9af6ba1e4afd3b45031ac094948b066ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c10ca73aa3a796711a18661cf2cc135aeba3731e3960840113d0370ea7df1f4f
MD5 412be29926f75ea6f762a0301a219590
BLAKE2b-256 0bfd971caa1386d58a32229760ad4b09dff04e55f28ea1207c7d875edd9fb9cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de3d28d7baac5ab634497798d02a22c4a77b2c783c90c320febc1570627263f0
MD5 deb720c679db5fd3137201a71c0599ff
BLAKE2b-256 3064bb5022593d45754f6e82b251dd0157469e90f45a4948a20f1ad85960c3d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7308590f3f50ed8c4ae2b76676e26eab667e1ce22cd3ae64549667b2588c198a
MD5 8f97d72fd3defd4927cfe36539ea4052
BLAKE2b-256 e8c6bdd003ac48f2651f52faf3fc93c203c5532dbeb2060dad70152f015fd594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f597f6897ce54cd5b979cbbdfaccedda27d7b6f06cc1302ad1c9991b5b3e05d0
MD5 b44d762ea3adcd3819758295588effa5
BLAKE2b-256 50252d69e404f11b3927c4a9d6fa11c30c3e7e6c95e160dd472aedaffff26705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 50a01b9c3b7ab932b6d5fe131e636b8d3e872460888cf00e1d2d951847aba5fd
MD5 3efaed949949ab0fcb04537245b944a6
BLAKE2b-256 2131442d36f0d098d122ef9be2629336a11e6c5f7a5018bb05bbf0eb9b66f668

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c531944b38300899d2320c21a97f52a940d787ac1180f2981ef75c1e60daeecc
MD5 e06c1a7206fd144ba8ea9067714eded9
BLAKE2b-256 e6cae01c5db5ce8d78e03e09fad87e2ebdfb22459b782435c12a9328da060eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c1f4772e1b31d295a55559a611616e7f762d7c6a861ffefe5eeae62362e70fd
MD5 df9637cb20c42324f7fce32dba8b01bf
BLAKE2b-256 f86380f4c463a287831afd217c3651aa6d0b2044dc25236b6efe11ccde81a5d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.2-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.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 edf842888689f4f484001769a6a506689963961859f65e270206fa4d76e1b8ff
MD5 724942afb65aece80e3f740283ac4d30
BLAKE2b-256 f92bc81c2422320ee2d93c7746333c2866cf176336d1fe8f497d5bb49580a212

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.2-cp39-none-win32.whl
  • Upload date:
  • Size: 997.3 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.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 4c747c2417e911aa8f50e9aacce7996f8de2feee7e262070f952732806129ab5
MD5 9b7b604f832df2e43bb14f886940c7ed
BLAKE2b-256 4df3f79762be34d2bfce0958b1d638320ad6819b66d0f24fea623ef5cf23b413

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0478e161af18424410829e19882e3bfdee2eea18d07e668a1d83ec81b6f020a
MD5 99df5b5268cd503e60fa25d3d1501c2e
BLAKE2b-256 5fd30a29dd3dcc566c19a63e156d7f4d3701f6590d64ac1809b69cabccb5c3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f12f30b8ba13a221e2ea45f4c3bacf2029022a16e55683761e132313715b922
MD5 0eedc03f7831199af314bf6892fb6733
BLAKE2b-256 74d1656912289e05d7d68f8e99a8254adf6c59e8e0869f48a0b0652da3017f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 401dbb60f5b7549041001482aa63124efb0ab7a02aa3d3e36f96ec8429209b36
MD5 afc6dd3f8e774d8c103d9e7e8508b0cc
BLAKE2b-256 d9c75f3b41ed9600a80ac1a42e66ce9bba56c69d4f556a3fca18805026fd4c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8e4e6d28095b1d06bd8a84b4e835cb6bdc68da70aa6de3927c568bb60e28844
MD5 5aca9ca014ee4c2cb5ac4935ce4d8971
BLAKE2b-256 a23675fcadd136136b0d53e06295e7b7890b5bb1027255b64878601089b599ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42bf51d24e7f758327c0aedf983ef8429f782f358d3d1367f96df91492dedabd
MD5 823514fd7e7241ea5052b4177d1b4da2
BLAKE2b-256 8a7fd303e070a341656fd1503a1138c5e65250ec98d27156f9e90f7e30738eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ff7bea2168014dd480ced7264fbc062062b526c94dd1bb1014eaa309f6c66be7
MD5 d630441ba71e105d3f0d1dba49bc135e
BLAKE2b-256 f902c865c1c5b10b0a89eb753349040e39f0132eb18865eca6a292c9619c46c4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.2-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.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 cdf2a07cd09a772d8539f0dfd6b82014a6368a550311d0c779fddefbed89fa53
MD5 dc95194d502cb90075c0e6a30a78488f
BLAKE2b-256 8ee59e6214641d759da48580e4632016eed7c4fe4a336ed4d489eaaaa1f6ab57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.2-cp38-none-win32.whl
  • Upload date:
  • Size: 995.7 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.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a65ce487d69ce471e59ea277c7ee02e9362c92c878d15a7d6f7b497f0027174a
MD5 403a99cc84ae84298c2dfef7a9d41a26
BLAKE2b-256 a25785b548df92ae458f055fe57c3e8f3a49cbcf30d54fd36955b2a028fa454e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c48fef270597ab8a82b87627e01daf3853b738459f04a87d4c3817aebe5ebe5
MD5 cc0e225c7e0caec8c08fb85bd7e909ec
BLAKE2b-256 18c3761ea638614c59bfd42c9ce71015cf5e459861e775e39caddffc8ade3a30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ee1d5ac775aa0062af39ef6e8824a7ae1d55701bd48a6c7fb96472d5a5a0f680
MD5 4589d8f4f735087202a14a2de41eb952
BLAKE2b-256 146fb65c29eba23e991a5c9de4ee187462143c00cd5947b2b797a5c06e4482fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e20329488e25a7bd21982b6be16feab3bcf1d43f0464ea33cc49bb76c83e1aa5
MD5 a2bd880edbbd9c959e9f16bbe3bd714b
BLAKE2b-256 3a412a2040659d81949fabd49c953e448c50f641e9e3d0ff4e5f0b86d0f012d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 616fd132e5c1e284f0d1bfb4a42ef76ae377477ef97c965d30c181f087b757e8
MD5 9a58cb0caec12df4df31e243d991e699
BLAKE2b-256 06f6b294750c14a944593d8e69948dab7248628fefe6f931ee7c5d2a475a8526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cbb81ae83cc427e2738d418a48c7deff896f154a2ad4d38ad3aea56f2bb1da8
MD5 bc7f65f2412b608eff4e7689f854d241
BLAKE2b-256 73a6c69b0b43f054a405b2408e42358d35644e4526b8d2bc91af5fc8487e4b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 17fc866e110d3d4711dc6dca258d17dfccbea663faaed1baf3353a3486f8a47c
MD5 bdbf10e36fd828a72f59d4710b683422
BLAKE2b-256 b3006f93e999a6137dec5c835e13fcf62a7d862e5cc96ed2d5e79a8f18711430

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