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


async def main() -> None:
    db_pool = ConnectionPool(
        username="postgres",
        password="pg_password",
        host="localhost",
        port=5432,
        db_name="postgres",
        max_db_pool_size=2,
    )

    res: QueryResult = await db_pool.execute(
        "SELECT * FROM users",
    )

    print(res.result())
    db_pool.close()

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

Uploaded Source

Built Distributions

psqlpy-0.6.1-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.6.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.6.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.6.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.6.1-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.6.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

psqlpy-0.6.1-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.6.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

psqlpy-0.6.1-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.6.1-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.6.1-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.6.1-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.6.1-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.6.1-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.6.1-cp312-cp312-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

psqlpy-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

psqlpy-0.6.1-cp311-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

psqlpy-0.6.1-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.6.1-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.6.1-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.6.1-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.6.1-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.6.1-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.6.1-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

psqlpy-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

psqlpy-0.6.1-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.6.1-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.6.1-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.6.1-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.6.1-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.6.1-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.6.1-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

psqlpy-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

psqlpy-0.6.1-cp39-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

psqlpy-0.6.1-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.6.1-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.6.1-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.6.1-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.6.1-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.6.1-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.6.1-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

psqlpy-0.6.1-cp39-cp39-macosx_10_12_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

psqlpy-0.6.1-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.6.1-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.6.1-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.6.1-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.6.1-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.6.1-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.6.1.tar.gz.

File metadata

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

File hashes

Hashes for psqlpy-0.6.1.tar.gz
Algorithm Hash digest
SHA256 554efcc0f27d0736f4129c338c1983ca8c541a3943e035b40d10da873952cac1
MD5 1b1ffae5e12c76c18d43b15296cea562
BLAKE2b-256 e738e9ac758c66cccb2517453eac84abd6895565a5606fa1d39311766f2b0124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b40d6ae87ba495907f429fe86d4752244d252fe05034d30be7cc4e0339d52160
MD5 8c2bfd7c1534d7695467a878f975ba21
BLAKE2b-256 1cfcb483303c7aa802109349f466bd2a5970899dd338f270ca80a414250c3ead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a13e47fc0cbff6a6bed2a236bd7f2cfc8548bef09828dd638c385fb2298df40a
MD5 e97119e162a66f4f19e0698eafec8e71
BLAKE2b-256 02ffceea6f8a3d3c1df00588f2310805f7b4b61af497096d302c13b45959e248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 530616b1373d1f4340836f93d0ecfaba05cc3dd7b22fae077e601bf82c23d5f0
MD5 093f17ccc31be82091238f6350d53260
BLAKE2b-256 f1bbd5a21c7ff0a5d38063aaf17d88e75a54a596f3e4057b9c29db573be32a90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d98c9e3b2a23a6eae3c972472bde14402448e059476d9aa436f4f89626b6a1d3
MD5 08c10ef0a96a23f5bd58e19a7effb972
BLAKE2b-256 aaf45b0ef963f1c193cd5864100114ec5acb0f6751ddc0bdc0d3751c0b20c1ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7755aade60e432cdcffe89712320be8839c009d7ec7d14c90d77ee1ab854cded
MD5 08f0a7724bc958e1482c0d33e5aeea3f
BLAKE2b-256 61edb5983377fb88c4e193d83b19debd436f30c8932da4844465cbab69552329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9673291fb1155b04bee27b3c0d460140e9241b81d16ff92ebcee6eb1871c0436
MD5 8cd14a45ab46266147c2a64c511a9f22
BLAKE2b-256 61e29f2ba83ce7179a59ced89237fc8b736af18779cd6ca06f5fd71c23dc6b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6564e85721e4e9c857f23257aaf7d32cbc012c9943888e024fb907bc903c42db
MD5 f71114680509b141784f2c144e7f5670
BLAKE2b-256 e2bd23ce51c4836f299c240d571d3fec14f70bd28f083eacc63afbe24ca4fd96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 43dae5001aca762d1af0e8023f84f467ac3a416b406c2e056fc4c0e3a71c5b62
MD5 42c84436c734fc236c34a082b244ef58
BLAKE2b-256 7249b5cde098c4ad7bfe9d690ad1210d3f853c381e5f073452967acc9895d612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80be25e657a11633825c72e7cb4573271b9c4232c09f553564772271303d8809
MD5 ea4feb33e46919f024aeff7eaf710d11
BLAKE2b-256 c39b2e529c46ff1a0ca90d16e2ad2fbc5f9f43e9730bf897d56c3b1488ced93a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 358ac6b5951c4049cef782d000b149696a5646a73aff47d8ed9503b5de9a96f6
MD5 78e0a5d87b708ea21afa93d33b4af0cf
BLAKE2b-256 fabff2ee159ec599181e7b7be8481f4d77c607a837ca35879859b3e04b3d775e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4aaaea16981637025e281862bb24602c56ff4dd921a472cd5ff7b374acb2299
MD5 f574603149eee798bedafb77613aae75
BLAKE2b-256 520d5cacd985ee05215d15da27a96c62cd26c8c732ab1d8db079767d2760f360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 605aca28dfc2bd4899a8914d3fa342598dd90da1314601b0f3280a8ec601e215
MD5 f5cf7edd087aeaafd232f6ac3726817e
BLAKE2b-256 47f5784f5260bfd2bafa8d5b12730d479c18fb2c38614b4ac496b696d932a1d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f5228dfddb142d1bb0fa40f5fe44e188429a021987bb6e60c7bc756391c6cc50
MD5 33b7019648d8e7f5065094d2e405981b
BLAKE2b-256 9cfec5990d521b02423fec847d41c931f47f15d03fea333d757c9cdfa8abaf36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c05d86206fb09f9691b9b90b1cb4e3650905bd0fb725b076e30638bd4542194
MD5 f4883a10892aa6ed72eaaa48db9051f3
BLAKE2b-256 a5fd1e8f618889ac23c690815a6ca4726fa16b4ff76343ae8fd3177f7db78af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be3077d650f524b11c9b0ca1b5a2439d9e7b7928197b498d82029222649fd9a0
MD5 f51f574a9ce747300ae14d2382038f60
BLAKE2b-256 b199915737bd10e588790c05db4d2d25f4f6f4f1b258b44e1aa3a461bbd1bab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5645b5df8363d608d2343c2c97210a59d9a4178baf9c53b1542f851e438dd8f
MD5 5d454fbad7f55908aca4e38d8c400eb8
BLAKE2b-256 a790e8ce05db24299611c73abd5e81ff56713f28b1592b64e31241a1d9a4d0b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 66eef8e24e957f99e4f2869d1e8828d8dd00331ceac1426360e71ccca46d9c91
MD5 2b49486101137cf89d63a8d744124c61
BLAKE2b-256 8c520cce851aacc597cd56cfb39046dc753a87c4662ea9378a728bcb9e18202d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2282b772da53d9da319f323d91063aeeff9128d6166feb1734671e9dd453f76b
MD5 05d249e1ff990f0f837de814627ef889
BLAKE2b-256 ef5ebd3e644e550957acd1d6a5337930f74f1e0600f21525f3ab711ad3ada518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 c9dec260762d44ed212594a379032e51ff2bd853d0b11aac7ca434c864ffeaac
MD5 4e0d03d3974ec19fdf26c9f3e929894e
BLAKE2b-256 b44a0f912cf8e9f7ada7a204b5849746f1c0c3606b0cf4bd722c67e877463fda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.1-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.6.0

File hashes

Hashes for psqlpy-0.6.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 81c0cf923f874f55b5b37b65c69d0556e69017255b157b8e422542008dec7256
MD5 15875ef6c38f8386e317477a9b7781ae
BLAKE2b-256 33ddb00c5e72e956694ac035fd1294a6d0407fe97f52be5050c85ad9091be441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1b28941cf3f89f861b5d23d802f7dba9ba9c25e8c1da41e3385bfe151af7013
MD5 8443917f65c4ff34f051d14c4ca3fed7
BLAKE2b-256 f8cff9042d56423fbe5aa683583db9cda819c42951319f65202d5e361e361eef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7dfef4ef57f6baca3d7c04cc3caba6d026ff4f7ee10dee69fd1b7d6e5aae0877
MD5 5c380eb8d634ede609bf3be9efd90555
BLAKE2b-256 e16fe9b565f4a31d2e2b842b16c856bd82c95a85a1cd3aa465f5f1dd8fe7c5d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ec169512994033d435316bc00bb5897da084786b32e077aaf32801483378155
MD5 fdbfa8ee38b181647c48a0189368d51a
BLAKE2b-256 81d7c977b80db2ad9aaeae19dab5a901b1b4e8c4991f70b820063deb9b0b9b76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20a16f6327ce7d0f111dc2d6412b7af93b31743067841d94e603cd3d13d00258
MD5 c82945981a51841bd4f7f98f8af92d15
BLAKE2b-256 a60dce34e751bfc901da5e2f30702240fc70ff5a4210b0ef736d0e57dbbe2f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6443cca17a0151f5b12b7b0e6a4539fc82878a65497043ea3f9e7364af0cbdfc
MD5 8c2f11dfa74c0bc79cbe4bd5133d7e82
BLAKE2b-256 001093488136f7e09f4a1d44005ec0babcae286444b82847f7b53fcfa05e246e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e1dec7cbfb811eb9faaf093bee2f5513218f1407170a215656f9c2e6fb4a39f
MD5 016adba322d6a12bf28f7fcbbc94b88b
BLAKE2b-256 0d789e9445ef8c7be43fdd2b695bc13a5e59f6f56821f87bc49518fc31812672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0f76f3a7704695a91825f976b5225273a61c292c4c5a7d0d21ed1c71da9ca83b
MD5 69fde99161fccaea89a777552c0dc186
BLAKE2b-256 217a4bdc48602b4c181425b2fb0ac3fbb8d9d3f4d24ae80d8ec0a744dbbcb246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b0493e9370efb3a3a708b1ecbf510005cec342dc2ae1155f16e05049eb4db3a6
MD5 19a9d81ea712eeb346f4281eaf810389
BLAKE2b-256 8ec738dcf928e7c0bbfb259c736d402bf9eb7597e746d472cab7742640b3693b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 dc29ec4415acd865e41da69da67ce3bcf8014a8f6f54710adcca02c0a93995a5
MD5 9306451b32039b7a68269f0c8bf26b6d
BLAKE2b-256 d7b58ecf29fe263002eef54e0dd117f9f6aa40922aa7069d11f9d1ca4d5ff00a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.1-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.6.0

File hashes

Hashes for psqlpy-0.6.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 99659243cccc1f03aec96f948f9f3b99699c43d0cdc09478c7b541159a180bb2
MD5 de3311b04b7b9f8b558776eb2b395951
BLAKE2b-256 31e2d1d71dd179c42e43415c6443e4d1cb021d301e59eef22b2ffdf7a6cad592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 657d7e7eda67387c185dd3d2fd6a0af06bc935078aba9e15bea2c49b8964a552
MD5 5943dd83f7dbd62d1485d186f5ea1b09
BLAKE2b-256 26854067b87c3c76aae9aabb39a7b18486e9fe7c96f905a2550936dcef011982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4cd2a0339dcbdd923bdf57bc951b2b6fa455fc07c125e4671642fc18c51c51a0
MD5 b20eea7fb073a04000de5a3cb06a10f5
BLAKE2b-256 f16ad95ea25dd3a7b1ca147dfe03d99248389ee839d2286e86679cf69d51efdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a78df9a5286bdba83f79c48896040e77512cece0e3d3942cba0779ea1792e9e
MD5 7f79c29fc4465aa4fddd62a198c1e5ab
BLAKE2b-256 dc2b1cafa510b0ce515386e66d2e58bbb5a143a08d6fbae1b3c4e260670b1199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e20b9394253e83fbc61f2732642845a040cc5e0dd8e58d0742b16f0017df8c26
MD5 500f2301c407bf96ee0a5afdf0d85a70
BLAKE2b-256 4bd4564e5412828767ca88c24332849992558a0fa6aa8627377ce2401a41e192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8845b0c496f2eec0075c1c23cb6229c2a0a00599a61252eb817324cc749cff30
MD5 9c8d18527df63f53288a404f1bee6da4
BLAKE2b-256 ee16eb711f0d92d71bf3203ee822052bf87d8c3186975b0a18bed05d979fb64f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7624ff7185d7eb68c2307f5e0f92f57bd7bfa22a2ef364dd879c8e4be9c331ec
MD5 561b458712c2e58b1b7091d03043f60b
BLAKE2b-256 885439a8df1c526fb3eebfee58500960e659243d6833ba53418f05fcdd851c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b3ab9fdf7756671725ddcaa982a3cfc780caab8c7bf98cbeb4481f7fb884985
MD5 878ba2fd7e3c506e3bccd3f6ab7ea286
BLAKE2b-256 62182c2c5d2d7315cd91d077b574dfa18a338d974cc6919313076ecf254bfce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09f2f686a5bc5d978b79234deb989e20cb3154a5afa74e005fd3f24df5c2f89f
MD5 26b085dc53ee7bd094a2c309172ec674
BLAKE2b-256 ea262bd68bf09fb1f3a00677151d9bb8e16e99f4bc8842238e7f233807d2a2aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 58bc486c0f2c70ea9012f6c344d8b964d2b422e39e93a08961c633d99da3ea5e
MD5 9af24857c29a068a9a009631d0efd009
BLAKE2b-256 8e43df4bc895bf31a5bc1414e65aa56026df8c98b8314bf0aec11d36aa11c47e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.1-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.6.0

File hashes

Hashes for psqlpy-0.6.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 aabaee80ba6493206131ee3d099d581a20d97bcacc54930ac3807c60c885516e
MD5 0516bd27e946763ac54c6c1de4b096f7
BLAKE2b-256 ba8a6d1eb23c8c574f04e84c768e743aa2184bd999c1828186bf74f992fd6377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7cf40e0595ee8a5aadaa6c8f2187b92247494a815febe2c14a4f5afbbd36ef7
MD5 f52f8525852f8e87e01ef4abef5f7c4c
BLAKE2b-256 a9d2760d242b9b47d4abcc15c0b58256f6b4301045e65ed0dcb89ac44778359a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd63c8f02469e3cfd5bc3858a646832069888fedd898af62b9a7ae36cb16776a
MD5 cf40c9ba84470366aa523e2d503a471a
BLAKE2b-256 50d7dc17f11237cad781912d5af6ba5d168ba800ea7fe67889d10ee16bc8c4b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1fdecc8234ab2c7f3bbee9b5ffe6c70d769232bd5c1c09ec77bad7fadeadb83c
MD5 6e7ae291c058ef1b4b9612f0bdf07feb
BLAKE2b-256 14c4fff472469f80e280d5ba94a1f8140b7324b4784cbd399918304fafb9ec62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b71a250111cb2752c778c6a568252c7f186dcf6e219df17b66b3f14207562355
MD5 0ba2c16ddabdcb679af10b0460ccb6c5
BLAKE2b-256 78f6d3720fc2fe8f44fa9c0eeaf8f4241c786a6ce0c0cfa8002cbc0a679a62b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d2f9e8043f4172051f7fd1a8995dd3c3f28644953d94b6351d2a4bbc6d86871
MD5 a9465372167c79cb67cb1f34f8ed3250
BLAKE2b-256 9209e313e9eb93bb35b183b8d18cc89431a7b9f7f115b2d7ff2ab40184138333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5450dfcb710e9d98a66312e6141efc80db906ca9ef907b9c19324e110c036f10
MD5 2e141104398a2a9ecad5e3d64907ff98
BLAKE2b-256 db4dd2d20bf4918939920016bcaa56e085cf168676a995fb187e9b7c753b21cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59a0efb8f2110fb5fcd87dc012406a926a3e8eb9c741e6fc2bb40759c91f4b19
MD5 8df59a1101a2a765fd10f733594f7e77
BLAKE2b-256 6003f2bf3398a69dbe2948f926bfb407ec8797c81581c9ac1f3adbdc624c4efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c62fed32490ea5fc65aee865961835c383a9168dd5caeed01fe7d4655d3f0e2
MD5 ef86d7842f8c9131a1dbf0bc3e560c8a
BLAKE2b-256 f220fb859ed301926338dfe20f2bf69c875df3ad8b7fbb2b0c8be201b66c9e93

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.6.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 333cfea517039f51ecb5f4923a00f39c0be2d705aca6f65ad139e8250e696b94
MD5 5d83f8f6b959f995b5920f11cbada1de
BLAKE2b-256 3ff38d72e529a8954c48849f8b81a1afb72f7b19e04415343ef80edb32e7368e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.1-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.6.0

File hashes

Hashes for psqlpy-0.6.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 533c6346cb6d9f33bb0a4d16081de8bd4a4cac04e3cb32fc945fae27d8fddea7
MD5 016f19a2bdf7673e61c150a56519e934
BLAKE2b-256 90ad326410a1ebf6710b236061649c55dea978050bb7135ccf39bf75730d2b3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 154e92b4e6e9881a8aac05214fc8296979ac5a8215cd643766879f387de2220d
MD5 9de6917c2e5553baa6890e804bdda3b9
BLAKE2b-256 1d6d51eeb99b9714a188b409ddb5ea58dea639a566966a791f2eee0143d99453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9eda8c9e8bf257f43d22eaf60f7f3b44b203910ec7c2959627cc6633b205da13
MD5 4d8e3bf958e7266845e153c4adb46e72
BLAKE2b-256 765b1432458cdb321206e0d9446705c7e7d8847aa76919c7cdd3581b01620e19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47b730137c3f6799a16ee42f47c2cecc459381fc33ef2da896fa6f1d403cb0a2
MD5 1894bef5148a241163f7ac74d16cc569
BLAKE2b-256 a192d7940e78e80a02a3706f33dd757f09ceba458b2a4fda1198f24464b52746

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2c3d94992b25f908405d0c04195c994e5accb0c4ae5c33c741366a9b5ad48b8a
MD5 c6aad912c29c73bc6db12c89c00036cb
BLAKE2b-256 23e0fb2f6cbec476dbb4c32d62baec6a3c3cdbdde5a2465931b7674eae9686a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b85ce3af32f299d6339b9c684f9c17722153852984520dd45533e805ffa91a2e
MD5 7afb596569fad88e4e1fd8516b6dbed6
BLAKE2b-256 738a1549cfdbebdaf2cdccd235830de366305f27a06041005daab710c7e30016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5768b0fd0c79f4cfb3d955e30215c35007ca1e7a5d62323be3696525548158a
MD5 0d6ae09de6b817b2d833f20c63a6417c
BLAKE2b-256 da9af87f90a880852cdac148f97720172e868b31a2819a17ee399c43eae69dd6

See more details on using hashes here.

File details

Details for the file psqlpy-0.6.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 933af8c4b2fe55adb7e1abb0c4e17eef3275d5760bf786873e9ae7963aeb4ee3
MD5 a1398140c64dde450aeaf0d1e2da9a60
BLAKE2b-256 7c4d857250fe263d1fd97cb45d44858078e85c11a67cef550c31f3ee4e021195

See more details on using hashes here.

File details

Details for the file psqlpy-0.6.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b081046d3720cd84dc9b48c2637863742e9f1bbe9afe8588168b453b0f2520b2
MD5 a321bee460e712aba0c6a0c8a1eb9e1d
BLAKE2b-256 7e0092b3d7afa48a05cb7b753cdf2327be63a39d9f31cedcbd4cf0ad80e68555

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.1-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.6.0

File hashes

Hashes for psqlpy-0.6.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f5ab81389195954882b0129db3202d7f83e9acbc7f9d83ab1bf6409258fa3e05
MD5 18762c994c0202e0c11c0b7faa4d8b3d
BLAKE2b-256 900e964e1c7ce811ae52159ff3c9ec791d7ae5c1fa6c09b891bc4392a4240652

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.1-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.6.0

File hashes

Hashes for psqlpy-0.6.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 e92c972d485ced24fe1f6f21a153ffc0068d29a6e281cf0c27a6735bb29a61bb
MD5 4d9a4800618bb67610d40487fd09bf1e
BLAKE2b-256 3e4e26f5ffba81d186f0e2d419b95ca71677afb3bdfe7685bbf6e79624ebe23a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80b93d89646e2a7b790c32957e4ce77d2e7d2217d4c041008d75af0c8e97e1dd
MD5 dd6c5487d710963bda47ed4a546bf0c5
BLAKE2b-256 87718a973cdf81081ab92ada5298fdcaebd33833cea0b93db790a93c9e556e3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8856f058419e9f71f35e6c31110e7474b863f99ae42774e23b76278301df0b58
MD5 454ea3d40d5ae7fb1c132f4ec0f6d1a8
BLAKE2b-256 0aa81fd32d57daa45d600b31264c9d299db1f7813283073a7c6001e9d3604888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3c173946547244a4aac5186f450ed8477c6128097ca70eca38ccc5b9ce7dc08
MD5 90c364553c904e84d7041ef8d7a5d1dc
BLAKE2b-256 137c30da0cefd968a8a577077d16ef5a9aaf91246270bdd4061afdd23ed92c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 35737a37eb6694fe6dac21a0732596ad9a0f2611d42ced5146a7abd47a88182d
MD5 32fc387f920163193e9d6db75b814430
BLAKE2b-256 2e6cb559daa1d5b73931e1e7b1a6f8f29db89769c12e928a00cb4bd8c21d1e54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df032b10c57a922e468e600e1b04d22381102be10c20b0ff1f59d60e1d706d73
MD5 8906d90525d1c884ac3ad402c40e783d
BLAKE2b-256 23b3f4f6c582de97cb0fb0977518851e58f22fa0adb9cc714705ad5e51af6cf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e957c8a1aebe8642df702222450b793078c8d837dabeef6231bdbfa5c1bd346f
MD5 1bde66468fbd2740cf9fa0cdbfd8be83
BLAKE2b-256 bebca9afe9ee56ab4ffadcf03fe9df2c6cf63d537e33a0ac516d1848743ef619

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