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 ConnectionPool 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 ConnectionPool, QueryResult


db_pool = ConnectionPool(
    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.6.tar.gz (117.7 kB view details)

Uploaded Source

Built Distributions

psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.5.6-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.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.5.6-cp312-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

psqlpy-0.5.6-cp312-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.12 Windows x86

psqlpy-0.5.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

psqlpy-0.5.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

psqlpy-0.5.6-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.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

psqlpy-0.5.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

psqlpy-0.5.6-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

psqlpy-0.5.6-cp311-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.11 Windows x86

psqlpy-0.5.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

psqlpy-0.5.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

psqlpy-0.5.6-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.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

psqlpy-0.5.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

psqlpy-0.5.6-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

psqlpy-0.5.6-cp310-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.10 Windows x86

psqlpy-0.5.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

psqlpy-0.5.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

psqlpy-0.5.6-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.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

psqlpy-0.5.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

psqlpy-0.5.6-cp310-cp310-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

psqlpy-0.5.6-cp39-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.9 Windows x86

psqlpy-0.5.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

psqlpy-0.5.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

psqlpy-0.5.6-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.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

psqlpy-0.5.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

psqlpy-0.5.6-cp38-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

psqlpy-0.5.6-cp38-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.8 Windows x86

psqlpy-0.5.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

psqlpy-0.5.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

psqlpy-0.5.6-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.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

psqlpy-0.5.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.5.6.tar.gz
Algorithm Hash digest
SHA256 3becbef6c86f639ada133166362b26a4b6596cbd03f3da599ad6030532edf0c4
MD5 d5dec0aa770247405481f108a0dbdfb7
BLAKE2b-256 94c7fd3b784d6046b64a671cd8826d93903eae4aa61120d7d3eb17c482325b09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c1175f1ceb54a36178d249ab4c7a84e2f8a983e042d3d8be85ce6813a1ed557
MD5 7a8162643a819858e752328db24e7d7d
BLAKE2b-256 10eb5f615ab96ca864893e63e1d4549075bfc34b69abcf1b717ac9c3a5d33304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fd19dc8965cb48e3236bc48036bc274b6b9c537a3a05ae9f8c11edc2ec2bb71
MD5 be54b21f21d93b3f0a0f29e7153c8678
BLAKE2b-256 17e5619d254f7c8aaa6d13ab1c8fae359d053a870c8a7af98667debc8f837325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86a672abaad59f2992caf1a21bab3a18e3f225819e7033f058de54b24bc35f6d
MD5 f2e39a14a70f467923e3da75e25de341
BLAKE2b-256 94382bb8ee5d75a0e7c0795fb9f271ff5b24b6fe940aaf9abf63f0175bb8008d

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a00b1d854e7c9d94a2c1d56ced1f0645e839d589e54e4843af4220de74d5337
MD5 69118886a380fc71cea7c64d146f0960
BLAKE2b-256 42ff341b994dbdb49bcf96680d6882f28204fe4d731561970c4d13b8e6d8d9fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51ba6420d3ccafa1f1e21098752784ee8f2c56cc41f868657fe61af258df4f65
MD5 57d7e575c003255de20268523337ba6c
BLAKE2b-256 b29298a9c653458f5fb2c23bb616d8535d44888a0711ed51df740a147598cb03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 441b408382baf18aee27753e24684e80e057c09cf38b505cc9b00c769778c5a3
MD5 09809cee849af77cb6512892134698f8
BLAKE2b-256 0d93c7c0dc49fb3bcd2882181f34b723d1c3ddf0ce31cd438dc9709b79d1f38c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64f9eabaa040d80792eb01f153f92f3a8e1dcdfca0ed4072aeb180f62a8eafed
MD5 5600a8ec7e3cb5baed5f5fd14f152fa5
BLAKE2b-256 c56a6e549e0bc9530cc850c6f175d24b7aea819c632c509e6036ccb191ee2c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 975b17f88b72b090e38dde7d9dc195ff47261fe001c3d60755b98c1c024ddfcd
MD5 4a42fa5aeb02cda299bc5ea573d61b42
BLAKE2b-256 60bd4a880149b9a02895b8312488570ca92d7ffb618f8a63226e3e7d3020e728

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e15c3447fe2b0bede1ef02e36914fab00d3b3f7ded781fe9915960306b8de1b
MD5 028b45c1495cd40aa0e360b7f84696ce
BLAKE2b-256 a9e9b477dca9a97ecb751903644f70ea7af6d4b556862686574c4d9a7c44ea55

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 83d73e2ec19709ebf308c6b03631f89d6d715c048c21dff3a3114f237a725831
MD5 0baf096d9e8ef9519d458c9dd08ace93
BLAKE2b-256 731afa97ca6fe18bedeb06aa5948395219f5d0a68e71943226748efde7096f88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21f0d03f87c72e3ffac525f132f17801bc7a72951a8d6b655dc18c8ae2742656
MD5 883f86120c18048f59a49d9e2f757079
BLAKE2b-256 c32cd4303a1fb4b94c1e678f5134aa5758d0ad6cefa1283b00188f62e99ab3e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1556932631d0b273018f96258df993f130300d060f89ccb84a66bb856b42c49e
MD5 2b3e24dec2f19e014205407e03a2f146
BLAKE2b-256 7c22523dadf754eea72340e5b5953d2e2804dfd8c6c94280eab73c08a5b7f2d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c09ba951fe07052a71eeb5984bd4b4c08e5584b9546af44e276149b0ba89cbae
MD5 a00a03a236c4cb28cc720f7998a00614
BLAKE2b-256 c437cac68d13f27915ff01ea3b224209c22430da4b47d28e6769240718792d4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 17aebea5cafee6a5a440b41a8bde5f58626ed322f87baa27f1aaa99e95b268ae
MD5 570ba828372dd8538d7d264e92ba2ff1
BLAKE2b-256 5c44d14b28706154a222375ada79453a73f9f49363e7397eaec0c67c6e2cf6be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4dafa619d9843bf90563e750aba598ed680ad35605bdecb1e895b51dc9180f25
MD5 817efaf73478dcd7f302dd8bd0b7186d
BLAKE2b-256 f3467958f6c08a2e3d6ad5eea1dca179c4815033a13db9dfb86e7670e38882d0

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f6d4d64ce5067917eabe5c75af9646d2b143b1c606c56e7727a371c8bf1dead
MD5 74dab9fc17550b8e4a11150a021a94f4
BLAKE2b-256 002db8c576f892b88f170e8135dc44c9756feca0612a550ec61c2b8389b7f6e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45d84822bd09645b4ced7d3cbfaed1ea39648c21f84357afcf3a7b8eec1fd520
MD5 d491e6ea70d958d8609bf247dd2d2334
BLAKE2b-256 58426f659e5e6c037a4c73b436f1f9ec613084ccc6b266a1de4e4a1e76b1a9e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc8aff38ffc0f15d382e9ac805ca44eccb460669bc9825200e43134663703d69
MD5 2392b6d752a4a9940fd10addbd7d58e9
BLAKE2b-256 d5d4c9044ba5a1861c8c48dcdf41f04ad478557726e22fce7f78aa67fbe14c55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 bdd35689bb988de1a85a279f71c195334ad8d6c29bb553ec1e5c3b5fe166dbe6
MD5 e218404316acf0eb0f7f881f620f3d84
BLAKE2b-256 87adab2482e06e2618b2be22fc47f73c4a88ad67a770a4f788179fb4bf99c04d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.5.6-cp312-none-win32.whl
Algorithm Hash digest
SHA256 ce8e40b7bcdc341700c8941a2aa36f60e58364dcaadb9751ebee87333a1d6abd
MD5 5b430273c700d477578d08a95a2b60fb
BLAKE2b-256 06f721426d84357e79e6c1b48c7ecab6a54b52e9deaa1ee8c9e92ad7defc07ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f301c9be30872fd8a9ec868d77c9786e0d93b57de3858cb5220a7a66d1f44f91
MD5 1da59d4defd1582d447493550d558d24
BLAKE2b-256 ed6cdf0a264506e0ee4db93aadf64698ec4d5048b3bd5e8c8583ee20a6b1246e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 080119308f2d296a9deef1102a78c2fb6d830de1982ed46906b68f67b246f121
MD5 c09f20848f37a1ca4a8ec900e0448294
BLAKE2b-256 e9aa19af3f21c8e967cee6cc37a43c5d295bba4145871d84b0946c31ffd282a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ed25580e7c9de842bb0bb2e8d255ca94bab56492181b80222157ddf102ca21d
MD5 bff2d1eca665fa875fc8c283732172d1
BLAKE2b-256 2f7e335d17de3183246b1df2a050b7b5a659f20f28d06eb75298ed594359a792

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e9eeaeff7617d6b12a8bfcadc63958b28a60ffa5ca9beb054a84a4b381e6ffdb
MD5 0bcf76c51f63ce64e423151e29f8d2c0
BLAKE2b-256 3ebfefba3dd6a85d1e8a2901fd198a1e93ab7394aa1c68b1e15fb6bc8f1f4650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dcc3820b99e1b942d9e2cea4ac17fca4990a34a8bfbe288f9091c70a09bd0f1f
MD5 cdfff6daa195831732d3b359c1588287
BLAKE2b-256 b7a7d1cffab48e0acd979baca0d6420b2cb5e994f6f84c18b8ec777488fab709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5020f8d75732b80daa79ee2ce882de058260b329fb790a28683ce7d67ead6f44
MD5 4845533b85f341a7c8527bb178a01528
BLAKE2b-256 9167b45394207930537aeeaec5c3746d243e790c33e181c178711820cd7f8a6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed28f8f8ca859aef9ab5cb09e2abb56cdbeda4a4250cd5e53c540463ea042290
MD5 2054b14afdbe90b5f77a65c64d0c419b
BLAKE2b-256 0254e8220f69bce320d3b49e5f573dc3d93846c00b535b0d036da76ba4639897

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac4db7d67389da06172d416d4fed3080e09da88d5ec30e4b90f385c2f51f6105
MD5 ebcd3de65bc18542407791f4398d3735
BLAKE2b-256 0c2d97a326efdcca18a34c57fca740f65ccbabeddc7258bea8b1a01f600bcfe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 418f52079d114f181e95e8762a6d32eb06443fd09800b2d240be869298dcb4df
MD5 6dd820467078f321cd0e288d64caf9c1
BLAKE2b-256 d90ddf73c6baafdfaf69343e1b49090e160b9f698a581d655412187d40878ebe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.5.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e0655fe6fdad201ff0f632396c38dc07223df4cece067ea54464e36492e7bc92
MD5 e24339c33aaeba5acde5ede636030c7d
BLAKE2b-256 9b506fa8e5bb94465a82dc19c824b010614f90837e8a6411995e9d7213ccaa5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9f5ddee786555c95df431673f1359996e5c69c1cbd054951608fbe777294df8
MD5 032ea38dfcecbe48af01a5ce4ae04582
BLAKE2b-256 d117eeb68ad839569f14c182926c6fd6048ee51c406b571f6a91d9bede18e485

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dbb4cb32f0755fa1a79047e8378938ed2b6fcd9e2495a5a1e4f25e3d7bdec5d2
MD5 e464e87bf7891aeddd6dbf345fc2f30f
BLAKE2b-256 117ce2fc69c1d59e372aabcf42ec57e7b76320df43047983bf32413397269148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11c4aa996c3344bd876a291034a046f5f388910fd76569a7bbeb4d9da3e81135
MD5 f1e12d277c965382b1a9a5578abea4a6
BLAKE2b-256 b7d3d12d0e0942b434313adeaee0fa8b0ed58c4b38a7e2d1099a2b514780cca0

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 731df71b3b22babc0a61e9c090ad9c75c8a9b96304b9a8a28265b4a177f4f768
MD5 30a61007d87598e3e14bcf94c7a80df9
BLAKE2b-256 45daf259c7bc8458782b61d6e2bc53582524d9479089dedc997ccc3fe38b3677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 87c40d1f25e6725ffe8640483ea8bd9754eba16dd98e26b4b3aad55a45b92079
MD5 488627becacdcd7b3a7c566109e90770
BLAKE2b-256 d6202ddc1afe7761e8caf3dbda84e8cb5d5abdc2515aaf3e7afbae461b1dac59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 464a2aeca57d594c8f69c305203462b9858b70d78b472ce2bdd816e0f3fecc45
MD5 9b0b317a548159412be620c45add08b3
BLAKE2b-256 a78300c916292eddeff7b2c92fb11e66e789147c788a7b43e6c5d70ad0fb3174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b86d692b7e8ce3f93686049cbd8e199a5762ad2e4d24b2a39bd69fc42296f4de
MD5 524ee4e230262363a8d190d50ad7cb18
BLAKE2b-256 67cdec1fca98d4c9ccef1f1697f966848f933bb9d2c94a3a78c566b6cbf47135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6cf46669e5a04594b3115c85a17cc63bef5a8e17069319022e46aed5681594f3
MD5 0d9f6078cd8f88e1cc17476e42e78560
BLAKE2b-256 f7e1a1ffdc74f79db6be16d252eb508fbd0711de725309736db4895d9f74d760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 fda5711186742b9739082c7d91c87cd6bf98787ab71a63851b7e83e6e174f8b4
MD5 8d39147a222c16eab0fc80a511852c2a
BLAKE2b-256 ef86d5e356cd84bc593d9ccfa9bf39a20da556fa8a4a6502e4f3e1254916e53e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.5.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 15c8a1f0385fea2c6669e641cc1a56e275986ebbf41a23700a4f73bb796b7d26
MD5 b6658821766b91845e0ab77089355103
BLAKE2b-256 3ae9389b12aa8657aac8dff07dd58da54e602e6377ea369b499cd8d6e0b64305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15dd09f741a35bf084c0817197bbda20807dc0839ea24a8874771c7a91be0973
MD5 54f58b7ff710cc956c5a3da0b02f638a
BLAKE2b-256 85947bea4c8d36863f223bd9ae8ed751109776a37ab4d9cc38198e1d26a12e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 83e38a3ad4f04afa430a514f0afa40dbfb7c3cb5cf4e9f81a3c7364708c73558
MD5 fe4817cd31b5c97c047da3ddfa77a373
BLAKE2b-256 24b61aa99c1af44a87daac77cdbf86007ac3a1ca3d7ad29c1358e7eb0cd2f823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54acca0864792fbe23b297c7359936cc3bbb8e9dce4378e7fe284c07934a1ed7
MD5 d146958e8efe03b9ceed76221b9e2c54
BLAKE2b-256 654dbc1fec202e6600b188aa760ba17bb171937f7c04ae96e4c0842e78e0c067

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8623b631553a6251a755f4640e3c014c38e2e8826f3cb51797fb30de932085b0
MD5 a91bff40ac34a3cbf97aeecfa2e21a2d
BLAKE2b-256 8f93d165abcef100dd666572d4c9fc59723e5af07fd46d9b4fc9052af97c1856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bb74c36367b9babda08827cdac3c42319551574febe0602c3e49a8dd23af4d6
MD5 f2d94bc80944368b05ec0b22ef70f2ea
BLAKE2b-256 ccc02c550db60f2fa80c09105b639931c9a22336179ee3ce27cb83efcd22d132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ff4a56e2bcefeb7a620230379c9704f39331571a6f65262ba5f70ae1ebd3fb9
MD5 4f352594330ab5c2237f687af3c03fe0
BLAKE2b-256 c3dc6f349eba023587a81affe329b76dad009beaf3048d256bbc7dcf6ca4fa9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40aaa1ddeca7b53ce79471cf9ac8acd7b0680f97ab2497a76cd2ada21501deda
MD5 a1c02be99d1a25ae851b2a2c81160591
BLAKE2b-256 086a6b373ec7ba0088a5c1226b3e83ee9250adc7f4de8913dee53306e5c96f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ceecba1d2a8e09e3eb2b7197a953ffbda11b70c28ba92159a750770a3f199209
MD5 e699d8f907c6356f557e5474b457ebc1
BLAKE2b-256 69e1a30bdc2a5f2a68a6849b2b74c3610ef064f05ffebef15d93cae5be49cda6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.6-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.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 05d576f71718e15fad9beebaa501cc8dfcf40c8233d803b09846a669bca339ac
MD5 bec0c00cdf28a759c70bce04cbcc6aa4
BLAKE2b-256 5bd1cee1ea0d62a94e4a99796cb00426cb3ed3450a2496c5a362171852db6b03

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.5.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e847abf7c5ebfc8785fe3b2128fcce0a240730ad3748b756f106cf729744a377
MD5 d27aed96552a8c923be701b9db119f06
BLAKE2b-256 e75f110a791d55f3e6d9967e5dc5bd40fcd1cb444fb1804d9d029ff4e2158df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 675e7db0dc8038b79549beee7f8e9febba970b0d58b31ede651efcb2ed5d7dc4
MD5 ac117bfb22f2c9ef06b115f0b9448c28
BLAKE2b-256 e283e4fbf37386c84553c5a31df6d974b80a62118beafec9e32ec51311e2a2d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 139126ee4af93092b6c05df1abf519163ebda26b35c3da7de787fa84bb6003f2
MD5 53127b73d8d266501a798761665322ed
BLAKE2b-256 293dd797695146e6f9fcbd99ab5ddbe91ddf4711dbc1020df8e7589ebcb81c20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1fb1d02fe79ff1b4e64e7302afaae7d135ae1de552c79fd112a26d0998b4981
MD5 b82eea7c1aaeb236226f2fff686d0a6e
BLAKE2b-256 b938ccb984342701d479659b544ac893553cbaae28da48cf89e17db28d6aca89

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1fa5adf0a9248b173412ab724f40a4d47363237572bcb7e634c44f950cdd03cb
MD5 a015761409f128266f4fc2148dc91c79
BLAKE2b-256 eb552e993c77fd78c14785e4392e58238980ace8b88ca71e0068f242389ed261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 126b8a47102b44975c50376b6a965615e160f131903ce16d55584fafc3a638ee
MD5 0d0fde5192e0ebed035a088be78c7e45
BLAKE2b-256 3f1faeb9e073a60892ef389d8697a11af9bf6ce5e40f9bcab7e28ded79f692f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0104c889dd8e48d20a8ba06e7cdd63e63d03f7f1f38a3e2947a44ea3fd535990
MD5 12ffd3f509bf72036849ab2978e2ae5a
BLAKE2b-256 3a4eacdd7bc0deeb5a7e5332b3fbfc53fff526ad8460750a08eeb6662cac092e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.6-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.6-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e260d00766fbe26c8ba6752623bd5573d22a34976bd718d21f7bb3a6dc86e624
MD5 7e636c924f337b3357e2333e6eff08e1
BLAKE2b-256 a7edd7a0b60916d61e43e7a2f2da4dd182fbcc6f8fdbb39b21d7b4ebdc899c0a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.5.6-cp38-none-win32.whl
Algorithm Hash digest
SHA256 182165ee7d88ed3c483dddd7bc9f66c475a51a7e90a92b58c1dbf12f8cd7ace8
MD5 a52e4af28af63b0c8e15d8b4d52852cc
BLAKE2b-256 2bb2448ab8db526d2159555c4341fcc9f061558473906fd6172d71d0daa62737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3b8aa5bd7f077b92d6424805966b2ab3a9c39d5d49962ca045e04ecdd539cfb
MD5 b3ab9000bcae276b8d15b53cc08741d0
BLAKE2b-256 5c4344712b0874e1c5cb0d614d34e772c04324931a09d9ff4866aaa56b9f2cf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 33cce254c03b02f73ef4c7ba13aae5acce4cc2c4f8b2260d511558ae7ba00039
MD5 e14d7d770443801d2ffcc659636ba2bd
BLAKE2b-256 c660743e968c7f8b17f799d3aaf773b25a197071a58b34bc467c223ee424d340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de71d58aab6b50ce6b2d221f168583f2c600cd02f9cb182cd94a7efb13255e50
MD5 1783c7a0145e7b2a4bb70e11772e93ae
BLAKE2b-256 47a060d2e2301d7c27cd165df241f82b07dd767fced72a71616b87b5508ea612

See more details on using hashes here.

File details

Details for the file psqlpy-0.5.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e5ea97b6bffe7ae641a259b8cdc693021eb12f93327a4a555c7c72c850fa880c
MD5 7def480fed1aab256a432623c0134db5
BLAKE2b-256 2fc7e534b40dfc1a850bd3d0d0529cb1dae9b87f98bcb119f4cd32d2557c4c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a8adaffce7a13120943805df501292d8c3bfef3933706f5e1a7a57660c44fb0e
MD5 23e39416edd85c6efae8eef0e710d980
BLAKE2b-256 f11b1df8bbae124e01416fe8bcfdced7c3ea2a5b469112f0fb9a85b510c0f1e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f99fdfdc0ea39710d9460962ddf1612f52012abd1dd23c4fae93d544000da99d
MD5 5579d25648020bbecdc1a450a7f4c95d
BLAKE2b-256 1bd3e1431a0540c2edf4bfeb96e2f5de0839b9e1b88cc70cce293ecb67811d5a

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