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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

psqlpy-0.5.0-cp312-none-win32.whl (973.3 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

psqlpy-0.5.0-cp311-none-win32.whl (975.1 kB view details)

Uploaded CPython 3.11 Windows x86

psqlpy-0.5.0-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.0-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.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

psqlpy-0.5.0-cp310-none-win32.whl (973.7 kB view details)

Uploaded CPython 3.10 Windows x86

psqlpy-0.5.0-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.0-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.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

psqlpy-0.5.0-cp39-none-win32.whl (975.6 kB view details)

Uploaded CPython 3.9 Windows x86

psqlpy-0.5.0-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.0-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.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 Windows x86-64

psqlpy-0.5.0-cp38-none-win32.whl (974.4 kB view details)

Uploaded CPython 3.8 Windows x86

psqlpy-0.5.0-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.0-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.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.0-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.0-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.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for psqlpy-0.5.0.tar.gz
Algorithm Hash digest
SHA256 69fe8d6bd35b1eefd3ea10b2c5c354fe9f15dd0c854020be3eae959aee334b00
MD5 6d4498cde04f259a2e6b57fc6e1a5b6f
BLAKE2b-256 4b95ad9ffa46fdd5dae57de5f1b2687e295d573e78eb39000b7c0f16a17cb8dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af9dec0a4e95fea3036991e1e26af280d674776bb8555f994e0aea71b8cee175
MD5 5ae58431d9e9c89cb588e10231542bea
BLAKE2b-256 43390097da8fb5ed108c63681f6c7a1d53d6e1c4b52eb2349d9af13681a0bea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89bfa1183632b627089ad51aece30634d07e9efb33bc543da78d3d442359126d
MD5 2b88b8aab454366b0ef5939b236d958a
BLAKE2b-256 8b54057aab98f80429712538c200186ec78a42ebff7af39a1d047ef951a505fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 684a7597c216d48ddba9aa93a5dbc0471709ba010153820ef7e05e384222c932
MD5 3150dda8a97cb1917ca3e8258830bf1a
BLAKE2b-256 6a6bc83e221a51f4ac23ebc5645d8b3911092f3e974bc3f5a7931a5eabcb7bdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60f61254ef9f9366a660eea2143025b92193abcaf7eafb6ab1ea1181739d6465
MD5 e93bfc8a671979da11670759ab47defc
BLAKE2b-256 e28ec949831d9a1921fdbe172adde27e1e51fbdff1a8b5dac8d22764adeb3419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9529c6d6341e8c17124994628cf97ce78d2b8ff0fcab3bb3ad5538c606685032
MD5 6c522765ee74c55ae8800da2908b8a38
BLAKE2b-256 4282ea5775882b59183f06547bb31d977ffefb648b048d7229f22a36df85cb69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 09d5b8d33dd5bbf230b9aff90a0c42e323f6fe5c16910e3a511dbc13c32b92d5
MD5 f6a0b929ff364fb8dc4e9600e84df9ef
BLAKE2b-256 4d42b55dd84749c8120ac641db27931965322a019c9c60fb94d557981ea4bb76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ece34e49bdbedba8f35a723b29fd549d768f3c5b682ce3a7aebee5d1b0bb9b12
MD5 9a4e0f0e85f2709316a8f57dd08e17aa
BLAKE2b-256 c88e23c48206edfd290cac3d363b657fdf1ea455a480704933fae463781d1dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1988b934f1170e2bf554421f22eea8adb6f14cb4bb0cfdd15ebd3eee36ec6823
MD5 67c2d7c24a1b747d969c12b2354e6555
BLAKE2b-256 5b61562b2249869c918a29ac02e176ca85c2f77461b09d3f415bf65e2ff38bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 020eb2434ac030465dd7fc485a0596be776d14f3ca2cf3dcdc0ab3c14dc5ef53
MD5 20e9edf8af4e2cecad3f9e0100f24e22
BLAKE2b-256 d6e9876df644f8248bee9a17afdd424dd373fdc250d86d9bd8448798f87faaa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5cf33002ce43c3485dbd78b3a1408e08d885a20f53858647f824eb0efae3dd4
MD5 f1c4a686738e191e55f5d139ea5306c8
BLAKE2b-256 2182a680ceecf44edf3391de8d38f697d55851a8e2fce43ab72105873a7c59af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f91709e6bd89b0e85dfddfac72c1a377e5279fe3cc29af51efbb66a3fad5da8c
MD5 be2ffd22dad69715766b1e583f5fff49
BLAKE2b-256 b50be332b2a34492ee2697be8b9660092d248e1eaa258fccb89a52ba089dc5f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a57007c980c163cf379cf5fa6eb9c939ba9bedcdf9f5424096ab3cdb5547e73d
MD5 c2a92c1e51c15524a2b0e1effb97c843
BLAKE2b-256 c52333608c2cafc4bdff0805d99adac60ea85da068204f91ef0e1179bc1d021f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75e0ee7735cbe72545ef6e73bfd633289eb6ef7ae0a78b3897d9a67e6c564b1f
MD5 dc2704de7c0b33cbca112781257fb581
BLAKE2b-256 8fd714b0304ecc277e07dab33810f6d3cf2b6a7ccad2be5be0d98e8115c3d8b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 859f8ac46894c2042e0983bed94553ff2c4fb1b23e16c0a5b6d9d6c10a0e897f
MD5 2e4c354a08239b24abd82b0aad673ef0
BLAKE2b-256 971223dc0f7df5afd25396db84a8aab9c9173ef24d8e04d818db49b398a7b7dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 02e1609d46b8d1272fecbcae9ecced322962c84a84b3a9105034be4cef087222
MD5 307cc1a322782385dd6a597cec9b8180
BLAKE2b-256 11c4595ef5c70d7cfb9612b8dc5ccae203b3afedad78b2dd246bc06e606b1f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3972589746b2ad8968b7728ae2a83f3d0587de82a0fca095e0a160d2a77242b7
MD5 261cce4f146fdf623a1c3f9929e8f669
BLAKE2b-256 b5390abcac3d82192b5a8768e5fb1cada9fc6a7179595c5483d54885e5fb1887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 505e82ed8ed213526702e3c965d92d42efad5d93b669d3abb5adc19827571d28
MD5 cdcd650d1155becad5137098500b76ee
BLAKE2b-256 01a715af8796fb9ebba196da5b02cae369241065bdbdc5f61f1a11826393fa24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 487755dd8ce2f570ee7d551146c38363106eeb5c7295a1fc655f9f418c0f76c8
MD5 eb95095afbca7531adbd0c422d7417c8
BLAKE2b-256 1a2972a1b65c76c533f9130dff43e5d9862c0ee930a816c6dc39757380fcf789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b2933be3ec0e188ba35ef294193711c9e8b0ca3706b0c167a634174d6573509f
MD5 e633fe03de30e0f372216d9be491c474
BLAKE2b-256 a3662bd3b5a3f842481e684cc5b8e577a4bdcbd56e4bd91fdb6b89749e41fb94

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.5.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 98ad96f2a8dcd9dbe3236735f8211a951ae3df5bd7d42ea3bd36fca4033cdb14
MD5 5f7d39063a80c82ab4c504528da7e84b
BLAKE2b-256 eb27cd8e812e4955edee4e6a0a55bb513bdcddb991a6ba56e4c4d5c31e061d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97216b3fe6f16f637119a90164d5b1c46473faedaa0a881cb3a29d88ecb30704
MD5 3fa88beb6f4581f5ed07846c1763c71e
BLAKE2b-256 f5094621a69e1d51a10bcf1c09d3e1f3f34ea37545a0aae2fa67239bf233000f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fafbef7408c1a2dcce8c77169565afeb3f3dd4ccda4e4f365375a60ccf1c2c89
MD5 17454bb4af71f8baa2c1bb57656a5ab3
BLAKE2b-256 d04a103a67204a52f44d4c9315295b6e7763e0154f4a75143b06ca18ef12ff7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29c7d801eb46b9ec36c4e596f32b04b22d6401b6fa4db5ad4a0b1094c745dff8
MD5 b0c020b957376ce403f18ad65b27792a
BLAKE2b-256 046edd2af64d5c7aa4944b5c7c5cb5d5b7e5544ea5a78d9e558187811b66a4fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7869497585fb73d8303bb033e417aa0a62c4a1458b4007bc2f6f169eaa55073
MD5 4fb958ebb410ffa140a544986af4ab11
BLAKE2b-256 8eea8ff9ca90e8128a02c6a5c68d618e103f1366592fe6fa71b1ac192f229dac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e281a5de46ab847330beb527aed95db567d145371a618c589efa4eec91db323
MD5 45d7c4bb8a4d1024ed8bc96b0a2cda9a
BLAKE2b-256 c2a5e8fcb15c94ad5760b6ad3cdfcd3fe4ff595696554a554911598974f969a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 239139864a34f1f206bcab9db0b68de1f15d740b627f5ca652433ce84426fc97
MD5 78663a4c9b3ec246216a6e8c31211f46
BLAKE2b-256 958f2fed94ffdfa1f4bf626d1a4175ea9472a87d44a3226dab1882fde01aa3b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a4ea71e51bb03bf9e3afa65e094689a2db4b84d777483e1708009f2947bef7a
MD5 89228edc4c1883d40c6c8a84d21e83ef
BLAKE2b-256 b1961f7f4695db1d3041475e161e727b564ec4dcc2d74cb22fcef3e409da7977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74d79cb1df873c43ebd0ee4772c6e11ba5a1f4d708a6e578e1845dde4f81a929
MD5 41c6fbe83012c166cfac3cc34a14517f
BLAKE2b-256 7e9d493ca590ac432e2a8a7899d773a34d87a166f40a1ae022b8280077a81ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 28a5c295e79502a260c44aa1221380970bea1a46718a5151337d59aa2f99dee5
MD5 204c1db43d1237bcce8a18318d0c7546
BLAKE2b-256 9a8da86848d2941bfb5d5c7d27e34f5ca16e61818bcfce864c774395def67d47

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.0-cp311-none-win32.whl
  • Upload date:
  • Size: 975.1 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.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b2302c585517a09ae9f2f6ecd908158a558f59dc06589ece3f178ef5d0e2a834
MD5 ad47e9df250da7666089703017d9bba4
BLAKE2b-256 79abc3773a0664acb445b3c65ba47755d5403163d7ea9519d82bf5abe3c44b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29d838baa9407447ac1f063dc40eb254cf39463ea951c188baf281a06cbda5fe
MD5 dc852fb1379becb982c07d41d71e84d8
BLAKE2b-256 0d5aa3e4ba8db747072a060cef263b71074acf9ee1b60b6e6720be52a86daba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96edc46eff05c4ac5679f23953e15813571fb18389d036d3105d71bcf51457e8
MD5 fb5ff1401aa6df3629568814ac14e792
BLAKE2b-256 8b768a114a6bf25048e909a9d2ba726eace2cc43546efafd1cf5a22768ca2c71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79b36afc79e0fd69267fb9d817d6e32eaf7d6020515bc3757d545c7f07aba312
MD5 d1b9f746e21f378a344e37de1c1eafe8
BLAKE2b-256 d9dd55dbbadc8cc0b4bfdaf07eba1670cad0cb4bb934b7f3868e685c54f93496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2d746275de7397a9f1901513b2a0c30ffb8e4a314302d3a3e3484b5fee86a60
MD5 58448c539aad2a98fba78eb4a289d698
BLAKE2b-256 ed5a16dbdde27ec524244fc71e944469408ab9abb0bd06b8a3c41b018c0c8470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fde154f7659d8474e351aef562424d9ddb38e244f64737236c0372ecba6e335b
MD5 6f75697f3e606f94f245ae36a285c8f8
BLAKE2b-256 ebfda9c5ffc22737b5fd85c0768a4a87c065acd80d1dbfe82bb5f5b894ff613a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 311f0d97f08651c9b9be0058cea6d259dc7eaddf229c2e3042b6a19774620840
MD5 b7c34101b10ab4b2f1060accb190dd2f
BLAKE2b-256 b39d59e08569959b9411201b1a03ca080b84623a2cd366bbe4c2401486f0fe3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e35993b5d2b726eb5c6c75672cde12ac83e73622319a89a94eb36024dea5a639
MD5 047b95fd6aa92ad247da481a004d1c83
BLAKE2b-256 8653e8c0470633834484eb24819922cef4e0c60ee7ba3380247986fd5b850137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ce966b1f76da39f69f0585970764f47d264c7c0f529b16035debe2194552334
MD5 183e627425e796fb851d9d9f48dbbd81
BLAKE2b-256 000d49ce08defa4d5b6af5b56edf3226e727df63551362efb0dbd2418957ba0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 39d8b6f24b279c0522fbd1c11ff233853d3e3ad50cb1bf64b3d5f85ba4fc4142
MD5 5eacf9dc5a40567726e5b8871a2ded5a
BLAKE2b-256 982d5697d2cc7e03555d13694530c74d1e6dcd10c076b1da6685cd9b3d70d511

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.0-cp310-none-win32.whl
  • Upload date:
  • Size: 973.7 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.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 32fc786d49395e5614d8144e5e5ac81a17bb941b99ccbca445adb0be44ff9313
MD5 ec9282fc8cbd54873171fb5775e54c72
BLAKE2b-256 8a36155c23155d22f789626c1de15242ce217d90918a5b3f154d4265b6ae7cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61d19dd33ee3bc5e75c6baa5113401dd4e6201b3bf32d6d6082dad9ae75a318d
MD5 d08d30f2b2685fc42e1f0e08fe718b9e
BLAKE2b-256 4c8a9309d23c87efd24042d12025b280a18fdf8ce8a958dd17509f3adf15f8b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cdadb798a0feb9814db615efc71487d3b0278665f6bef1c05d318fe9016e9c08
MD5 9d0688433045fbd6b559248e7a9d6796
BLAKE2b-256 381fca5c89370ffe2907bc200bd291ac6b96cfd911929aa51dde8a2da8ca1a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fdffc255bbe09ce6224eaf9d5e0d1fbfa27cb747b0a3e41d2bf5dfddce14efa6
MD5 8f497f75082655b0e7c12f7a2e0e0181
BLAKE2b-256 7dabacdc2ee0ca0a57c830792b3d218e5fb792544142ed140eb8ba25a01af462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd878c806f9de5e172ccdb74f5dba6ecd39c8347b97f0848308428970da0782e
MD5 27e6e09b7f38f989f3b1aa0312e22a68
BLAKE2b-256 d753ba091d37b22051de2af3927553ec8b1171ec12e0593f5fc408e5d90d2380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9cf924f03a1ea7641538f3bc78388e90bb4387b34734af62f4b135030700cb64
MD5 1f98bceccdfec99347d893a490e08f92
BLAKE2b-256 ea0dfa16f1b526a85ba877b166ec93bc1d9ce6b064a99d0ba6e210bba0bf0859

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a977b24b81a351e2d1900172300b6dd1ccda2db0fd3ff9a40a9ea1cd7973863c
MD5 ba2695e84dcdbe5866a6ea0f4d0280d4
BLAKE2b-256 96e31da2f0bd98de486c995ecb8df7e4c339dea7431b119bd620a12f76ed165e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6548f7b954fb744833f22539f04c2271b8c64365794d2077d16bd451afc1f1fa
MD5 06279444f6c07ce03b00fb8254f387c3
BLAKE2b-256 6409635a5c06d0a07fb9d85d1a8df1ae82d79cff4bac17c1c0f7de572ebec36b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 36e2e4b6fb52e66ecc6c26bf12b388b63eaf77166877594edc66838cbb5c2cd5
MD5 92cc66ce512bd41baf65cf43ce41ff8c
BLAKE2b-256 50fb5fb3e5b23249da11ed3b6b7b4685ab609e2139335578d88d83c4cb246f52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.0-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.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 43bef9cd14ba0f02bb6429c418e22c22e43565469b1d44b151281f03c11e2451
MD5 03f338ece7e95c8ce8725f0ea6589973
BLAKE2b-256 be770e6cd1e6b0ab1b4fa95121c615c3bb672b53eb5e51641a75e9b7f93edc97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.0-cp39-none-win32.whl
  • Upload date:
  • Size: 975.6 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.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c038b50caf6392afcda465f7384f973734e2e301861deb2749ee260283da2f40
MD5 60538b232b4fd216b48520ad93fe3201
BLAKE2b-256 be88c917834fc0f40fcc699b6578f931b75de09265c0c92c3330c4bc063d36db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2afc0556cc4f3857ed6d571fe912a0873f3ca47e8d471b8a512f9ec42ff4b996
MD5 fb2ca387b20d5168168046bc739e06f3
BLAKE2b-256 bb042d291a2833fd4eb2ae0565d4d8be7a86d6b1f368385cc5f762ba18cff6b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e41b78aa0d9a7370cc6f2c630e5db346c0c718aa259c2ca82579c8c87678b6a
MD5 5513f1d9e62a24a80a59dc1108e430e0
BLAKE2b-256 01d814eeb4ca170a1d6cc4b329e19115cd9ab50ee05d9d16152c40fc6d5ac611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc992f9a99d682e2e6109afdc70e8e61398e76875af645f4c30bdd732984d85a
MD5 5840a9abb634c14a14adb5be14ef7ba7
BLAKE2b-256 b2858f9f18825b9a2e1ff23d792ab5f30df5b10a9f84796c156fb72733349813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2f8f74ea746cfa9e8d3e84c3b9a4158e93426e7c5d662aa67472efdf1bda48e9
MD5 705b41a7ef70a0be25cf4a217bfd8062
BLAKE2b-256 0008c572712db38175546df18e812f572fd2678b7672a91e94e13a81cdd38ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efe160e9d1ec9769eb00894b352a0ad3aa396cc07ae58cbf16ce8da14de12686
MD5 710ccb5e69c570cd1178b0ebbf7bd59d
BLAKE2b-256 233f211ec00b9e1f2aa3881d311441b9bb82d18a3c95ea52e247ab3cfa2c2c07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 7d247ef37cc8e324340394282a9590edcaf58e3936e86904eff76998ea338f99
MD5 49c425a1707099d9cff7bd23ab09f6d7
BLAKE2b-256 633c6db412a0b288c7abd303ae803b0e3aaa55280e8efddf8fe46a3aa39bd20d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.0-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.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3cd2168e4528877317842e04a34a7808afa3fd8eb2b7793976c9d5e949ac9d08
MD5 a0f644f4cae10ce1116a68867dbcb515
BLAKE2b-256 11aa08233f4db6d50efe2427f829f145180ded81a620fb18781f4554e6a5cd10

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.0-cp38-none-win32.whl
  • Upload date:
  • Size: 974.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.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 9eb09b91007a6eb5669dcec1662a3816a9336057257b39b7abb23ddac5a947cb
MD5 91f35b331e6507074e3cd471a7975aca
BLAKE2b-256 7ea2a9daf8489e9eb71aad9c0cbcd902ae8b3a3d5218a6729f442e6f7f454464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3c7661f7e3b67e15bf7824b4106ae1acb69922030a53dde765e9be83f1825e7
MD5 1deff6eb609764daa7f6757da1a1b506
BLAKE2b-256 0724fc3106457a81f3553218e45e4963ca7f6e69c15d58e1217d442368b3818a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b578edc8eb0f4a245db55e7e654ebebace3acf3661445b55010e9efee66c9baf
MD5 808950aca5eee7118134ca9ee1be1cda
BLAKE2b-256 4f89f38c9ee232aea1c52c8bf2b1567cf0b3f6dfc7c20cbeedc63097c8497ce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 081ff818dda4b0cae237fac5051abb25d2262b8ec595c870f6b22e4c1a67d48a
MD5 e5882c44426ba45d44e1051603913f9b
BLAKE2b-256 fb50d095ce4416b43e752ca8da189413425611c5b1b22b98e9eaf3e3a4783930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 96cb8a3914bf3d9dde4994b84f0cd2a38cc046df2b25cd0a5188adb047917302
MD5 99b849088d7eda33344a6b363aa546cd
BLAKE2b-256 656708e46643c6ff1091a59231358d33e5ad2be2aa993df1af6c66355372dc11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40c896a2a2822382f9c4a1e726fa8892cce9460fbce68b6a7d9ca731553d4636
MD5 c04bd5ae9ccac8dc9a5ddf1e19ce7a79
BLAKE2b-256 4cc2f2ae35adc56c1d09b55194783d03eed481a9a0f58d1b68d8ac502f65f36a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 3414d94cb8c46ae2339e3d93be53a4ce08b18c0d2f87b7c63a45f9c37073dae1
MD5 3581639cc2ff3315b799f76f767e3a1e
BLAKE2b-256 91eaffa32472c6ed73c424e524a1b0d64a353e9971e18f4e190f08f1344a87cc

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