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

Uploaded Source

Built Distributions

psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

psqlpy-0.4.2-cp312-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.12 Windows x86-64

psqlpy-0.4.2-cp312-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.12 Windows x86

psqlpy-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

psqlpy-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

psqlpy-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

psqlpy-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

psqlpy-0.4.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

psqlpy-0.4.2-cp312-cp312-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

psqlpy-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

psqlpy-0.4.2-cp311-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86-64

psqlpy-0.4.2-cp311-none-win32.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86

psqlpy-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

psqlpy-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

psqlpy-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

psqlpy-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

psqlpy-0.4.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

psqlpy-0.4.2-cp311-cp311-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

psqlpy-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

psqlpy-0.4.2-cp310-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86-64

psqlpy-0.4.2-cp310-none-win32.whl (1.2 MB view details)

Uploaded CPython 3.10 Windows x86

psqlpy-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

psqlpy-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

psqlpy-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

psqlpy-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

psqlpy-0.4.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

psqlpy-0.4.2-cp310-cp310-macosx_11_0_arm64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

psqlpy-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

psqlpy-0.4.2-cp39-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86-64

psqlpy-0.4.2-cp39-none-win32.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86

psqlpy-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

psqlpy-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

psqlpy-0.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

psqlpy-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

psqlpy-0.4.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

psqlpy-0.4.2-cp38-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86-64

psqlpy-0.4.2-cp38-none-win32.whl (1.2 MB view details)

Uploaded CPython 3.8 Windows x86

psqlpy-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

psqlpy-0.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

psqlpy-0.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

psqlpy-0.4.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

psqlpy-0.4.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.4.2.tar.gz
Algorithm Hash digest
SHA256 ecb0c45d304c8b52ac49fedac4324e9c9ce52279015c7fdcf3544adb93c1c3fb
MD5 26e7670a8d0517aaca7011c6fcb094a0
BLAKE2b-256 932c8c6b4383e3d92e869500d2808f6de627ab756d63d1e2acc6952514a1afe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2498c793f781df64dbeafa80281de72f84745406b490d869aba5e87675d42ce
MD5 3ad41bf8bcc40ab598116234f440ca7c
BLAKE2b-256 07d4280a1e08c00a4f7fa8fbdc50325d1504978c6f69541e502528e87593e465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a14a46d0ffb2ea12a6888d353cd05305319572cfffdea638276b0429d7d9781e
MD5 c11d2e63da013840392cf90c78190f3f
BLAKE2b-256 149e0472a2764eec6074ae7045ffb0db9533e806b891350dc347c36ac7ac9a5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf575c56510b68744b6544013f21ace332dba0b3fa47478b17c5083b15cacdbd
MD5 f6c65d9bef6fba75f5e4ef149155a611
BLAKE2b-256 7066fdb7df44498d6b09a8863c63b2bb3b956b9e8f01d703fd874af21b390f75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3dd120cf91787f84d3574651fd73b96ad0aa33b6a401dfc3920f2032cfa0b7ef
MD5 76c3ab88cb1b243e50acd2c9e7fa6336
BLAKE2b-256 216a8b934a53ea2e971d16156f6f9945f087d97df0ae6c9705721ee1b2f7cf19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d0e308aec68a23cd8a629ef147ae2a62102fac64e4857a5b548e3f6c76c03568
MD5 72d6ef91cdabc097ac9a28fa3efd1e78
BLAKE2b-256 40fba88a84c68d9d93d28c8560da7219f1cd44201de1481ecb423f9dae276fc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9d916bacf855dabe362f74dc886cf4025568bfd98431f40d02a7d116b4996673
MD5 b5e2d68d0d48b7438616c3bcc2ce3036
BLAKE2b-256 afa0e8d1d144827eb420052377757bfd9a0acadd3643afaa0a921b7cee485a23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d7de8a177941ee68a010a87cc2da247821365c7d42fa444e5c5b376dcee2f5b
MD5 d7f6437f8dfc53a1f77a4af50c631a70
BLAKE2b-256 17be47cd7d2cefb5333f7de3fd8ea25140d18c62480f7f34360514eb53aecb20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f48085efd095c65c09212822300b53c2872471ab627e56c57edba0a24a75b18
MD5 4b15d567548847623d857f8f9cafe3ea
BLAKE2b-256 2cc421635e6f811fb9207b2ebb174926abef63dd77c6008e95d3d8822a261bfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8125717209c208ad5c3277f80cc35cdf05363df70eebaede743f30ca519e7d2
MD5 3f276d00cc3cd2817b80a0b444b146bc
BLAKE2b-256 b9e403d2dec5c557c938acdd4448bb231966326aa1538e583b1febd2f3c1ef9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45918a3d8c0d600154dad1833aaadc759caac7220d8b0d14e41958adca7f694b
MD5 30bde7ee673c78b5216d8d214b943571
BLAKE2b-256 bf625e12eabf328640488ed4fe2969c21832642320c6e0a2b32ac6888c56ee31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57a44250efba7197a3902e3966e39554bcd3f8eaeb73165e980b760588d007b4
MD5 7388e13c7604a3c4ad77a29081fa6c99
BLAKE2b-256 5e77e70091c1fba76ffc7a0c9ee06a33719b0ea98acf242ed1d418017b1ca1a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ad4795c7fd0baa1b7f5aa7ffbcc951afee77e8551e1f08dcd3c716e682a3a056
MD5 b74f36dc780a0c022b070bed74fab6fe
BLAKE2b-256 3b0abfe87b1d41dce1d02477142662ddc38ae88acfb800277649cbae60a46796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66db9b09ac08890c3d28c742b951c791d2b34067909214baf360eb44105f5dc2
MD5 e0ddcbc50019815f4acc9421c9913f69
BLAKE2b-256 e7c3bc4afcf76ad1ad1022dbf6538f3213c50904156780ab1e7bcb64bbb3b8e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4bc4f9fe6eab2278ea2bf6ab5a410790517f6db939ddbf6dedc0c6e6f4a61e2e
MD5 b1b2a34b2b8c6590e1c0650d036d0e04
BLAKE2b-256 6209a3c5c40b7157fe139748ed40ddb453ab0601de11612e573af9c58dcfed68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 31185719f6219799c4e1a83473ffa57d29268d7d5417bd5b77150af897454733
MD5 9b6306ff625e90401d773f1e8dbac462
BLAKE2b-256 4651aa2f05af1779500e4c0be5fd9490d13e1813d0775af13aeb9f62eac2e1e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfd847bc961db67dd1d7e2c0e5a2f8e63095f4ef81aa82abe5d31ff53756b2cd
MD5 b558d8397f0e8cadc26cc14b00fc9149
BLAKE2b-256 f373e9b817d8c66b870262f667dacae3723235d84798af61f896d497caeb271d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6df3b1aae8ce1b9c183a4bf2837a22dcf27f3097a4aa34ddc911299c9a0cd36e
MD5 a484afa95b9095bf04d8c405cd578063
BLAKE2b-256 3ac929335e784139a86427eac6ce91c7bc19bb20889f90ba86dae97e3b366c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 4d8a6d64a1845da1cb1372db3719e5aaa8f73a1216ab1b152b375c04897de309
MD5 629287596437f41841c877324e8dfbd1
BLAKE2b-256 5c1a96168df44ede6435690b1b90dfaddbba515a8bab189a2ddc2f7dac83f931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 ff3dd12510da767d46ea8bdfcb87836af6eb330f9dde3320bdb7b4913142387b
MD5 8a874379ee061a851ca0095c13b0a80f
BLAKE2b-256 e598e23efef6e357e51ce55385434002aaa7dc5a139b20da5269ebf7d60e1310

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.4.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a4a38fec6d7aa49528add705e7dad0aeb22d4a75d49850d9af4a9e4c6f8234de
MD5 d6f6a7f9c583e4e6cd0039d173fabab9
BLAKE2b-256 f7cca4ce5d7b567a640712b221c04ff12b469fa6bdeb8cc786e358b96fb4e92a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5be1eca734470e66c0dccbdad052d0b0e9c8ecf0c2496a6b70c9df4664f117a
MD5 a77fbce1efd7a55c377a26d559c510c8
BLAKE2b-256 d54f1e1c28d9956beb12a39cfe424e352935994e630ea59fc62776bb0c3112d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cacf35428b5bddc5484575744453696f016676a4e78e9626146070ddda7304e0
MD5 3927070909e71bd95d296fdd70147233
BLAKE2b-256 0fd0f7dcf8ab75dd0749ae22faed6adb369cee8ae0809610b5e725afca3f34ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 024c0f93da664f4c4516b65b1d25dba7c1c0ed54f5c501fd156028f02912a7e4
MD5 e99009f69db48953244ff2a3acaf9f2b
BLAKE2b-256 f8654f77df2829e2518b872b7838a0549ef36a421505e2dedff536acc6666540

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4be8d8248f5ebabe31fee0dcf7543fce640f8c76adea623e23683d1da2333a8a
MD5 4e93e28ffb613d6e8f96f5e1fee5d4af
BLAKE2b-256 0ef905be4b261742b2d7011620a789a7774e2aec2b56ed21e9caa7cc567eb5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c83d04aefc4a4970edae9e08b37931ba81fc2e2c9c36801294b94e8fd1f70ab
MD5 e414d7f619704dd2db2791af027579fc
BLAKE2b-256 4301851fcab657b8b06ec20ed20568507bb5a75e1fc7df5d358d4d8c7914f807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b4ff42b344df032fd09bc6bd9b1ae49c1c902fa530227e0e2042356d911bab00
MD5 0e5f23c1dbe21bbbd0312baa6ca136c6
BLAKE2b-256 829ed81548af080ffbf6c6ebd83571f8cafbb31b32a8e6a65b53eb3511c3a88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce2e69f6403dab6fff4cff6cdfce38eb1a4942f5ab1ea8e90e6aa3af3ee55ab0
MD5 915efb041712d2f2ea1c15de5e7f3390
BLAKE2b-256 d1d2027b7fd8025f99c99c47804a5c28cd2c067a984572479f3308a5661e86a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41f85b32e809ff49f861faefeeda58e23595931061e38ec7325f969ed37c9c9c
MD5 2fa3a96f6126dbcb92d7dff27b57aeef
BLAKE2b-256 ad2e4cb32d301ccaebe642442e21409320ace9621b46adcbfcf20f1c30a2d747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d8f3836e0119fa87a953e602203f473b3d30585daadaff093fe2dbc0da1f7c0b
MD5 91763ce9cd0f0edae227e0e25eabd984
BLAKE2b-256 871a0d5dd75b9325e74d68493d2864206d6f7753d54ae15b0d645b427523b67d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.4.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b358e5d62a5ddf534b10d9cb62330d147bc2835347510d34fcf1979adf94fb59
MD5 01c921e6c31f3f3025a66d5ea6b81e73
BLAKE2b-256 edbc98a1467af19814eec6d2dd2d7e588860eee4173b27b1c79cbc0c504652f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2d3eab446ac3be45be57771afb3d5abbc82098ed1b5f90606d5de9e65d72872
MD5 004e265580d12a9f4b8412fb1179ab63
BLAKE2b-256 95ed12f9a788d2750d6c312a8b7927dff45c2c9fc003b86827808b7f666d10db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 111649be945d2f35ace224a4bad04e6e6b438cfe521afa86d34217ef88dd7cdc
MD5 bd58b56330b015e3001b54aa1be0b7c1
BLAKE2b-256 f0ccd9a668a029568c17d3c6bb5bab6d98e8b5e8ac00b9d1909d3a5e625d79ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc79f4128840b30af51299deed970ff77136bef1da2515111aefdb7032a12856
MD5 18daf63d01c2acff557841d2d35cdece
BLAKE2b-256 a2e8cc34c75d902d67bd65e32de7d17b74cb49ba4ba862af039baf0300fec7f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 407b16fa358f4873f4fede334de808ef95bfa2ac38d2d0e3ae98e970b85966e5
MD5 d10b8fd9cbf32bc18dc261be133a5873
BLAKE2b-256 17ab96cb321bdba38e09ac83b6a3979f4e05a3483772a8c63054fd9e60df5ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 946561137799af999120570bfbcdf08436821870a84708dfe67c510845514ea3
MD5 cc83ae842a8041721ed506b5adebef3d
BLAKE2b-256 bc98dfd3f10dacbc2207c85f5b7a38564f5515ef88ec7e3773ff004743707b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 dbbc1afff1fd6148cab5d90d61c6799a7fb1627155104628f8c527e27a048119
MD5 c1a42af5140ab837e568d2149aeed06d
BLAKE2b-256 f7f71efdc6cda6b90ddcdd8693a3b82af19726d6c3dbd71ae1f00423cb4edbf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec0c80fe6e765c4345cdb63bcc32cdac21ce747ab02bd3af8381bad71fda5aec
MD5 0b179ff6ea3f4f7a4287cb153977fc48
BLAKE2b-256 964ec62947894c1ce1624cf2893267e41148f937f4401689db3f20820cb8c4f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 33415cc30a9dcb433e82fed91359af26eee61e20433e8919e29349494a692c92
MD5 7bd7952478082f20432fea7c263af1aa
BLAKE2b-256 9744ecfca0d9a1fe39079876a9542d8c5ec5c6727e98fcf5b542bfd34148d14d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1c7801139da9768bda6108a2b5a470f8663585e296445d8c10174217e57c0004
MD5 aec909d731450e45bec55c4d31f6d310
BLAKE2b-256 a6ec2a6875d21ed759b3172164f734149a92f0bbffa49b9727cf23d52841a8d0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.4.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d115db4a45e7bfbde8e0003a60fc27ab8b6f91257caa7d6814aa3506e7c83a85
MD5 16c37fb1865a0051997053694a11322d
BLAKE2b-256 af94934da73793c6be0d3225c9a51c86a032f717e38a59bde849f53126115d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3671016404adcffaa2de2384b2b40425480d7b0abbccd63f5ad1510c13bd85a0
MD5 2be7e56118800c4bb39e3418fe8c3c1c
BLAKE2b-256 a47dd1cf88b3424eef82402359d93a96f5a643d86e08b68217bcb6d3e701e6bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 12679f0ab46e7e3afb2315d10d4dab6ea29b38bc0e4d3d7266b67c5ee81126fa
MD5 b4f2de7f65ce45a375265e520cbbbd4f
BLAKE2b-256 95644051c20a82ca4a8b19e1ca069cf641eaa4c9c4e81c0accf850d621c5e26a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d88d49d347ba561f85d06a05395eef84ac2e340cbc8584e25b8a3cb82ee09086
MD5 698d2448966b92bedc9d2c8bcf4d9b77
BLAKE2b-256 ebd176adbf543781998e097e89d0a45561696a27f4204a2d1f37af97831bee38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c000351140a517326005c6894fe2d9d9053df4ddd6dcc5494890fb27ff2ecd05
MD5 a309ab18006ea9ea68aebf278b0fa203
BLAKE2b-256 cda8785fb9895c1b2c681da079c0961c9379645138eb34342687638fa9834bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e59672e055a19d013a3518dc7558520973b8285a843321c4e737ffe7017f2e40
MD5 d639c36006014d8bfd97fac53cfa217f
BLAKE2b-256 abf5a41daf5289400d92fea79eac081045d8e855686056eb137975cc0d4d6176

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b341738a1826c9ffa81a49bc724ece4aa2934488f5ce945f0d95e37381540920
MD5 93bd780ecb55ed2933b706ca4dfcdfe6
BLAKE2b-256 4a31ab4ed833bfe5f51023352423dd69452e4da02ce6fb0062c4db62af92a6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd8d4af48f73dc571be1f0d87c441a1ecfea70ff7166facd5df4cb59f70b8144
MD5 76320b1cbd222848ac4b4441f305da0a
BLAKE2b-256 434b81448ff6fea9a4fa4c3caae9660b8039a4072971ea95d0cb72d53f2bccd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab99ddaf1d4d1df028da22d4e38556edf276c7c8e8898853a7e1981ba779400c
MD5 2ecabf111e9496a81ff2a4c4012b64f3
BLAKE2b-256 5d9d13f5617a1ed8c0eb95adecc4d0edc0ac8a4cf5b6a175f422ee502a09ceaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.4.2-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 1.4 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.4.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 f21c3552fa9873fa5fafb2a635b412b0da57979171d85d241d275d1096b24a1d
MD5 06c88e004f7f529e828d96154bf2a967
BLAKE2b-256 aa553543c4543446b951c120226b422daae77cea2c984ab7e9870fb263549397

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.4.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 2592574d2a673732854aee97a955c542a4d63bf632b1895d9a5bf78aca188c52
MD5 7f7e38e5c5350d9ee20bde17b63fc141
BLAKE2b-256 fef04e6ddd0bb01007ba1e9df3cbd09be390efc16a468f23aec395bef6aa1171

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e9eed2ffe0222dda2f909479a713b17ae08575f6bc1b02f690551c4f52e614c
MD5 360973386010404b17e2cff09d1c0877
BLAKE2b-256 c2689b4ebefb7ef7f1a586302b85f34748c9743eb67e9ab98df8ea3c3cbab6a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e5e9a5e257fe6646a1d9f0f6711b425340f8946fb73d8299ac0ee851b0338e7
MD5 6afd5ecd2608c1fb5dede4cc095dea71
BLAKE2b-256 bf55363e6d87164c2aa8584fd1ad4fd4c7b0c18a583b30d3aa4e0b4f5ac02cc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8cb32d63bf7babe5f511807bc392d7191eeba5051b2e169257c8901f348c38bd
MD5 6f314d86cb9e9c4e6647b553bc1252d4
BLAKE2b-256 56fb93f0cf5f233b253071f987a0d72ed7bf6c0520a25198807c81493cc5fa2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 216ac184537db00f2a21bc8656c509c9a98886f2fb4be244d71f1e521dbd02cb
MD5 bdaa2aa5208d2e4d7b972eb4d9252443
BLAKE2b-256 f8a9ce7a043ecbc743005651c82489c1653b53d4661cecc430eacc9fa9c2a65b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 511a478c426b387ffa9c9deae442168599f16934b140bc1d482378fa04e6393f
MD5 91a2c52f3c2ec4c07aba85ef99ddbe33
BLAKE2b-256 cd26d920c27d6c61e67c4c59fde85c076b6d6784cd0f001665f8f6d16a01bbc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5c435858be3005970646013a08952553b243aaab9f262dde6c25a21777490130
MD5 910f51f54ec69bd186906cdca4e51af8
BLAKE2b-256 14a52652fd0c03522efb0a58395d71a59aa7da49fc864c899bd3aeceb13f78e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.4.2-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 1.4 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.4.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 176822341e279ccea566d6c8e29002853f7e439c19b221c9ff17d5062a281f7d
MD5 db188aad6d25e40d0c8fc5b7ec946698
BLAKE2b-256 7aeda87e1061ff848b00bfd506461f6659abf90005316b4bd3566968f8ebcbe1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.4.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0cb7981ac235bc10db39f81611c4223a4953feb85364ef42bc2fa89f9bce2b63
MD5 a8b0808a52f4ac2e98377ba6273effe9
BLAKE2b-256 9259b625303d07b71c7869b540e9169fb429039611fbaaf09850199f67f01c21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bddcab0964d459e2f6998fcf1eeff37d56181e4dc91fc91eac37f10749c9249
MD5 ca9fc5b1194f36b8f4d816c893cf4966
BLAKE2b-256 097d671ef909292aa99d231a93a1f51bd681f8885f152aea6f13f17b22a98ff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7b3919c589612e83f87cc0ca6e5fecdd2a73c0e4a0c1616be76523bd6f60582a
MD5 142ef34f1d840f8945e8d7ad090af575
BLAKE2b-256 ba6a7c60d541065b14705fd6d193b3bae7e2ef41747a1be17db021ee7590cb03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d285d687edf6b311e412db82c0028a3adb3ca46ea425e9ef8fc65f58948989e
MD5 f923bcc14c9a0d7d60aa722c1440ed85
BLAKE2b-256 51cf30c20309c60c1861cd3e500c26fc16d90d9e777580fff3154f57ee895db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bcb481977e6b45b1a2cd497955946680e869c62e9ea51f8f7672eb8da9948a9a
MD5 b530540b0fa42f2c03dac8e4a4f8ede7
BLAKE2b-256 47e33fe1cd83986ea9900f7862170093c4cb1d64163175de4893f507e4665ed1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 995e6870666d6a2a7ee800c1469d559e84bd068fc09485585428e12876bbf33c
MD5 69170c88de8e59c5ce29f4c116ada90a
BLAKE2b-256 416a8fced9361fb95b790af5e971662fc5fc6e5df054ac96a8e351fa20a739d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.4.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2547e18a7ea81e5f6a73daed1947b64463c5ab51ce834670948e7b838e633a2a
MD5 bf782fc885e2aef791086ae281d8ce6d
BLAKE2b-256 71be3322072db32e2a2e4d0f8c212de4dcf88c7284b6b5ec34151fd30a0a68ed

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