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

Uploaded Source

Built Distributions

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

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

File metadata

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

File hashes

Hashes for psqlpy-0.6.2.tar.gz
Algorithm Hash digest
SHA256 f932a4ccf5243ef9101da196b59c124eca1cf5998223f86a1a4d88fe557cb36e
MD5 df71e44243e788904f6780ea79afe4e0
BLAKE2b-256 62adc24f1c57e9b9170bab10c4fb069fe2e86c9b9188b9a914c230ae2e77de7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61e25867a12a0bd02c94df0dc09e324e303043698e9bb209a0824c7bd590d735
MD5 6af0333c75e1cb0841aee819558caf04
BLAKE2b-256 aa499139ad71002d0898fa941ce854ded6b32ac718c287198eab266aa53322b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a69903b96f59c45dd4e8827759918081db97f63db0c0edab1087dacb1654ac2
MD5 1106d7accf4a82dbbdd66837dda8bb22
BLAKE2b-256 d9cbc68e05b3d8e70de789d30349a2977e10d3519a7a8cf8259cacedd729b2d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a1b56306b96960dc1a227b12e69ebc9a52673ba4a9559047f98e1966be23711
MD5 fe508ea2b5428cb1a49dac352da769db
BLAKE2b-256 e199be9f6271b2e7f0b5e8467776d214f0f66a6da8599af45ad925cccc998c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b7117ce8af4cb2f2d9244f2eb27d573f2b9c650ca5630a54c2913ee38d9e4a4e
MD5 edf8d2109ec0c1cefb6c9fa3d6643253
BLAKE2b-256 894a8de503fb647eda758fb8da9e6f0e1ee18fd2b322e6820ed6d30c8b816860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11f520889157f899ad125718d6d54d89ba9e224cdc823f335740ca8d9d924a21
MD5 ba37fdd611968b57f96bd49925ffb91d
BLAKE2b-256 fbb19f3badbd50a614644db0448a0b6c5c3a907166afd3db2dc4c927f367ec7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb833959b650b0828d0803ff918ea25528661e747995484b940e2f87c9f15387
MD5 863f8f45232476eef96b0fb313b18ace
BLAKE2b-256 b17809827dbdcffea125fc2f39e9f686831bc2be1c7f45ab4255284fff5a47ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb3be5d4676d9b9db2d62ff76c355a7a2dce2c4f7e12eab8693678a5dbcd6b61
MD5 8cd5ebe70d8c6738ac19efa4d1a17e13
BLAKE2b-256 4102e77ef865b052e523ff01b2290747c44dd29846065fc48b43509c056517e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42e3e7ab74de082d08a63f65063fc06fb85c465285b3a6228ce0bfc2dc933ff4
MD5 790e18c000dcbe9e296ac43ee921f74c
BLAKE2b-256 62daa4333943ff9a57b1650596ba4a7bbbb80834ca5a0202b61d8b8b33e7f4c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fba35feb22f611cba7709ea20719cfd609b845f33d7ebd22ec19396aba5033eb
MD5 99e7e5bf77d0c6e3f4f010bb1f6f4f59
BLAKE2b-256 f4566d5807319011756fdb9f4099070a3bc6a60e4180d45f4a0121bd8be3d25f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae5205ed9ee850172998b023dff5b85656577f259474d605a35a1d28a238e0c7
MD5 8194d66c0ff0351b47f7fc930a1ba7a7
BLAKE2b-256 b1c79eddf6edadc026055492528580a6944f1502b8c9fb7536654e4bf8ca2995

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b01f1deb5b9c8a47b104a880576942e0757580f26b65e6690de980c371087473
MD5 5a09650be367d79d1fe3ed6806cc5f1f
BLAKE2b-256 8ae5ce2022f44c8a038468e6c9d23520d036abc915eec91fe05dcbc66ff746c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af8fdd62299380d22174b5f8538c732547314900c9ccea57b48cce65f683804b
MD5 4be1e4fe17c88fadd664751e36b62abc
BLAKE2b-256 04d660eef4618baaa1efa558b7bf871f4b8712a1106c5bc6022c56f9eedcd7b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34169c342944aca2401f95ac59b395afe88f522b813ce9ff0d134f9761917bbe
MD5 a5b75c23333120894992da5b56f0a20b
BLAKE2b-256 6685484464fbaece0afb1105bbdf8b30bb8e4df7040b5d33f3c4038b4a729e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c884fd3392586c3dac5bccf829807af7438e357231511d93b2e6087ebe9f3e6f
MD5 91caf8c38914865b30dad64dac0cb8fe
BLAKE2b-256 23e06ef08e1eaf4bc85cfb792615be5793b17d7ad13b7407ccdba39ce12bb463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22cc3436213c080e92a9a8fbc1492cf0701a49e6b166104edf96957cb82b5423
MD5 ab2631f5d4780af5378e9053487489b4
BLAKE2b-256 205d8d99aead28588573539e6e4ef64bcdf8275b88173312f478169593525481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 371e99f5c28733175558c08fffd436884141f26610c8052f3f32113015ee261b
MD5 bb92e57dcd2a8e11fe5e06a83db06a1c
BLAKE2b-256 28238001248947f90f2633eb86cccb028fcdbbff56e3b72bf26c6f13a74bbd8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4706161496aebbc57c0e0ed0a559dedbe888882317bb1fd5130e81e8854a5f99
MD5 77d2886a8124ad821b1d0d155c342dbe
BLAKE2b-256 b40cf000a6af83666f8a31c675174ee279acc8bac19560c2ffefc2212b9ecee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93b5ba325d7490cb93e25c9dd274b2feef7c647e01b5ca70378a79d563ebb07b
MD5 a60c8ddf17c0f4db7bbf35bc0a988599
BLAKE2b-256 69060185ab8781258b7507e28846b4a451f58a686c3a6527456635b82cc17b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 564c9296c17ed368043d299663c571c5bcae9dc74f1469128a3fb58ab780eac0
MD5 a25d7e2e518afe9881fd3351924de4ce
BLAKE2b-256 9e8ed0e0164b83c9b8b1bb71992cab6a333d7b149340e07176c78c5f8bfdf229

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.2-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.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c6f07119e3d4b9d3d6cac065f7c28618413d66edcaf1a84bd25183e692e41a4e
MD5 998878e475bbaee2bda2987ab004f1a5
BLAKE2b-256 123c5f2b777883376d88a90c5cce127dfb41326a242e7e215937ded73e3ba13d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95186aa52d5a8d9f725429139e61f25791b0ebd1d368ec2b128093505fda7cea
MD5 c62fe5988fb7b64b9a13c3da7091a2de
BLAKE2b-256 340f2d8c0777ee91e11663521e3cc2554cdeb2ac63ef30ffc6006b387ae9e07f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc0545abc5b48ff2f3822ff755e9c48d0e2ff41e33d169f033b6d9923d7b16ec
MD5 68ff0dc435bea1c5251902114d466006
BLAKE2b-256 cdf14d652c8b721446d9efcbadf0c77601904dbd9db7316cb429855d27b94b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 377496f6c7a34a950597ec03802a9ed6811adef51591eee1229bcfcf19d478e8
MD5 f305f3a58e2dc1bcaa007d65718a265e
BLAKE2b-256 7bbf64a4224a4719268d3a74066c7c9a37b42dbf7a74d3cc614829dd666798b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c02075e779cc55507d62570163c9bbf21e3cf01ca1592c216d6620a32dc98f4
MD5 8b2da012310f106f7380590f45e08a5b
BLAKE2b-256 a7d23fa4b41c704584af82e9bef2c1de05d629e9cd864deba7bc40d1ad1e3c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7dfb71f9a46dfa60b46e92d68e8be0bff76e448e9d7a2d34e5eb44c56b275f7a
MD5 1ecbe2f5cd9baae0ec026da5bea05d0c
BLAKE2b-256 2323cb9cc30fd3e35a09cd66a6fa4540a9636a2d27d312d360530a9bd09dcf54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3a23e0da75a6ba3f4ca4f0740b6637a42a5d1a30f2b3ae72401e7920997d7b6
MD5 56d9f327cc26bb79047a043190521fee
BLAKE2b-256 e59b8d593b31d885047034cafcfa078882afd6df861a786c48322a00d3e902d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb79f0f301d834da66f24e1a35ed71fba0aeaafeb471471e8a7f94f3a03ff5a2
MD5 900f7a43aaf6e79973b1f6ebc6fe09cc
BLAKE2b-256 9b41015c3ecb25e17217236149184e715086a3bd8af0c40a8b6cfcd1ad0b361a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c7678062f42ec27720ada4ed8483e3f5fc934e2df7b7e2c1f735f66533da3fc
MD5 d7be441b5a382431a15193a402935c82
BLAKE2b-256 8cebe428c64bd44905e5cc17747d4ebf5212b58630d316f64c1917dc894d626a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 362c7f1d4a331a7e20ac5a9e62b764b6f9fd14fce861b3390eab583d6842fd9f
MD5 78431f82982ac75645302c0d03d06dc6
BLAKE2b-256 dbeba7222019c03c1aa87d7208a2f275191b70ef48805ccd8c9cd70dca7204c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.2-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.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 75ddbd0befd1cb5a3ca4afe246ada3cc7481314790d64639c02bf57c6c131441
MD5 f9b17f3f4da5aa1ff2a0a8c458e67998
BLAKE2b-256 3d1c6c6512d4143468b108f956e5ec5fd562c0c4ca9a0cb3e16c006a5f835229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c373bd9b99f5211c4873e95435b9d40da50caa351b544d731d78e406a26b8df
MD5 21551d83ac7f68a207583b4189deebd9
BLAKE2b-256 ed181e2ca1f2b6da651d9c9d5109e7a59e97119c835d71c99da9687857fd4e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 12f5f6f0ca33f0b35fd6495af8c7a07493a1c1b0452076477ef23819fc7aa149
MD5 668fc42178b4e475d64885e3212286c1
BLAKE2b-256 42c749968c281fed71de9ce22d28852024c452c8db91d1cde2e0dce149f001cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17f2ea8a68aa4f4aba6c2471fe01543c2396621606c6891a98af37331d482797
MD5 72218051a35255c983ad8b99001a4371
BLAKE2b-256 c7f4d10fbfa7aa62ec71cc4570c2fa340cdeee431042be578970219c915872cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7152055119677ae6d1afa3d0027853c8feaf535b14dbcd9ab29b7d03b3a7a4e9
MD5 072e05b998d42a1b6a231c6a67f0ee40
BLAKE2b-256 1f32656fd2d6175d280b62cd75e47627e60d133235b4ec7cf48184e8ea67bf49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51045967862b06793a24e144b137da41668daa57e5c73b86c4052643a84cd2c2
MD5 f82f150192f00e4623e878c7d8f401d5
BLAKE2b-256 9827a5fe9cd311c8df442b5aa986b2b0ff5e2d9a31f1fbb9eefb520c75f49c15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72935e19c8a0db7010ff87d5efa27e4f5bab0fd4f14b2d232393f95218944ad2
MD5 567f6f0ab85c579cd625a5ebbb90fa94
BLAKE2b-256 653b3e150653a8ad4be00f8823a047470ad4f6211e508848b80b8c998d4abec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e58f9c5da4aad5ae76e08b4f3b068cac75eedb311e4c4dc1785bbd74b0a4911d
MD5 d297d24bd498327691fc600aad96aad8
BLAKE2b-256 db75613736deac0c3147e66c23e9ee536c52e5f8f7433c6814acb12702ff8b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b74071f6c07cb37ee4df43dc07f0e4d0bf46c0681be35fee1a38a0e74b850e74
MD5 9ba79f448c963cf14f5d56e1127de87e
BLAKE2b-256 f5928be919dd7e6b7fe8ef0a9d7a6f48cde34e1706d875482418260e4b7e594b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 218ea50ad523b1a5d60bb44fa9fde32a9cc1d2b367e86ba705b83a9b2c331b0a
MD5 9a00245cfce0d32634ced6a9813f5f14
BLAKE2b-256 acd65fbd5f7b22816c67dfbed5aebe8a838b6fa9d5a2f9b3428f8565fbb6e09f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.2-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.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6db4a392de09dd15d40a5145cbbf53f0845795b9369e0af31a32c9b22838cb2c
MD5 a8de1d6d75fec093233928aa3b70209d
BLAKE2b-256 720a271d098defe0c7cc4af0f919cb05e1cfa94fd0e71c987b46aa3e80a175a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0d73b931709d750749fc03cd628fe03ab1eb21b723c8e3491c8760f57b21046
MD5 66de2e6dbd261a02e13c10b4d88871e1
BLAKE2b-256 fcc8fcbdd6262a5be134f19016562cabf418e19f7daa729d43e8d887a1f57a50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a23de68bc21f11294f7de1e410a139ce281c929b18426271f988aa1bf35ad11d
MD5 fc53e1f3caa0c02cfd14d251e6e5ffcf
BLAKE2b-256 8c25b6ba756160c5996a62fc0de7165a92e3610dde106ac87f9047418f01dec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89f603f1fe9e1d9165ae88e7a13576c005d9b5d7e602fc225472dfc34b5f79e7
MD5 b76e0f0daf160c49ff57fa088d2787eb
BLAKE2b-256 af3cf5fc7251a6b0d214627bce33e875a2f6a12692b10c0c6a2311d41b2d07f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 65911bf4464ccc6debf03bede25112b5a9f8965e5a5d44a0983c3a8c81d36ea3
MD5 dee2185e733ec88db3e991efd1c98a1a
BLAKE2b-256 4384871b49961e2a9777e028f46bd180790234ca1ab0c06ac6d6754afe5bc6d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 faca8da67575142994eb519046ecffa561cbcbfc738ba50b01d12f5413c8e2be
MD5 1cefbb7c3a08f9e6a4a6b7ef9f9d19f5
BLAKE2b-256 9f45017efb24f5e6b5622aa5868682a04301560cb79878eb2d642fe4b39333a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 030017e30610e31684402fb0be41eaa1fb90019ab0edbc07f9dde8d30969b53a
MD5 f3965653ba197e484aaf20b1acbe67f8
BLAKE2b-256 433d78d4228dd9d8d93fcf7e99e25a0ae214732f94883bfc17a8e36e4a440095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 372ed21c7ffb32c2c1996a7080dbb5fbf4908635db59a4f17c6c4b42155dfbcd
MD5 9337935ca11744c7895add132f94f5c1
BLAKE2b-256 3e574ffda9b68cf0b9740f3c3f2162374c54c144de9916f2ee200d13541a6c1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 277bbde74a58cd7cb6302e4ae53ec488c2a0f44b0d7f11b48a0bc31235f578af
MD5 670a0eb73cd5e5635df335683e035471
BLAKE2b-256 e81a1b192338a7d2adfe436e7ceccbfec3dd23ee03e620bc320615b88ab8fc1c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.6.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3222d3e6db105df04f35830266f606c5fa5843bbf48c00b80d3dccb51ccae3b5
MD5 672ace26d55dd5fd01f8b8984a1a1011
BLAKE2b-256 89df7363f3175140fb1e3257019a4a46a73879ff932ebcdffdcf9ced502b6eb2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.2-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.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 401bb214cb755d0f583cedfe381e6f006cb59f3ed01a51db054e1c3b91a7788c
MD5 64775e30be8d959928a7fe9ec353ed61
BLAKE2b-256 d523803c1728727687c6c6e4d9b542cd1eac210d499e1f95be1a7ca3891f4a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42ecbcb8e374afad98a67dd2ed186863b36d23e27dae64df157ac710ff9a3a32
MD5 9d6de07e9793579f35d63ca550082fe9
BLAKE2b-256 67c97b133f933639b231506af89e3c88cee79b56d65b66f000eef7436cf3000a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b068b20da1b1edd807b0bc31a96098484f2ce79684e4cba6b24aa25c2b301c0
MD5 5df8c1451a3e177296046b5e062d5519
BLAKE2b-256 e13c6ead37b93dd28a5a722667203d6a905c2264ac92217dee580b1b13df4d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ef4612d35937d9a2dd8ccb724cbc19436d0efe4effbdfd283cddcbfff76184e
MD5 795dd145dfb604d7c62c1d951c354c02
BLAKE2b-256 438815bc37f3d11fa5c94b393e5ffa4bb914403d8c85af3f376237d1a27fa5d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1ad36aa5e73532670006f80b40ac662c2009613935a180bcba2d32e5f9c088e0
MD5 ae7d8c6eab81d277f9e7d752a8754c87
BLAKE2b-256 1abb696a720e047c98b253fd3f53630ea4ab4f236c36adfee2d9b651a05107fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 360948e75231dd09c4b264b32da5d17d70fafbaaab134f0d1880369887326c47
MD5 f966bb377fdf0fd403776819d8e54d36
BLAKE2b-256 acf28c06a8d171e69181bbddea7e37b004232850751401689b8ab3f5b6c74bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4bc682d0cfa3176c6cfe5eab3f07c7b1ff40009d6d35f6a8e97b35514634f168
MD5 e9776ad7ee91433601f885ce3ad7018b
BLAKE2b-256 889020f87d3433f39da12262934871065de3e8cbd698867898705fa47928ded1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b93269081bc639539e41591df50a2f79944e93d72b4878d9e5a4562a76d56763
MD5 c89b875d6619bc7ac907ebfe01fa3bd0
BLAKE2b-256 3c992b5cabe680c9d4241f0003501c8a26cae71b5e1aff57d5067917acacd110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 716925172d7271c64cc4d14b356c3d1581f0eb521c065743f0db3e27bec5eeb0
MD5 09bc989eb90184d84800eae0a2e268ba
BLAKE2b-256 6aaab6b045882e649d07c2811f89c2c62382da1b4d71980e0970527e3a3df2cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.2-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.6.0

File hashes

Hashes for psqlpy-0.6.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 4011009b06970defe593a5f8d18c6dbaef138ed923c0c6e07b87816fddc68b52
MD5 047553ed6f9fcce7c7fa6c922af5bbaf
BLAKE2b-256 67eafa32d38424a916aebda40c3411935c232c583685377893bf5354a69e622e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.6.2-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.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 b64ccd67e5ab2d2f2f272a40bec28bc8df22c20caf7f0e5fd992b1dd18acc237
MD5 b9dd8d71036629deb8a9b6b17e97b244
BLAKE2b-256 da358fc11d9b3d1d37f75b4005f84cc8453bfa3a4d93b0b278b37bb1da09bfe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63ba3525b987474e020bff80c968db54dc99f3b3749f78a9fc2185285da38961
MD5 0598f55d3c6b5bb4003f26d732f55f25
BLAKE2b-256 3e7fb61d588142d0cc89dd1b2b935e87b4946a322ff06fd8e7b8bfcc089d6d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 841000606cd7bf76434a1ad77d7f80c3bc25396f89417af44d0d2e76f60c2d23
MD5 0e20305b35c8c88ea1cb335db9d69a6e
BLAKE2b-256 5495da7ab5caa2dbdfb935f98d4a81a09c962e577e7a97fef70a282d0adfc6cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14e3c8316211630e3d74dfa45ee1d26d4c9ea6094ced1bb1a59ba7b613d25c37
MD5 69cfb7a7f9639e243bdb7f26834a8da1
BLAKE2b-256 ceb48a5c19debd1ac76a416d17e250fc394024b135d00d7d9c02f80a662b2719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b467a0b555a5b17f6c971db92ba98967aa8a337b8c01f5c40f97344762265e2f
MD5 c14cd8549f4cedf17bba2b05da8f5d40
BLAKE2b-256 97abf4daab64c88ef4c293a974727e8a6bd6cdd42ce027506829279a76c05282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4518543f628be2c5bdf4e8ae317c0079f7d8589ed1c6942d00c401be1f0c18c0
MD5 6374fd390441ede3498cb814014eb99d
BLAKE2b-256 75b67cae0ca9b2bc148370677ed7d17b062b6618270334f841646015a84f648e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c25be7dbbe05c39984afdaa12d535bfe29a59c14ca7f0ab73cde62b8310f8976
MD5 17f54e9e6bb38050efbb73b91e9ef046
BLAKE2b-256 43ffb739bf7622e714f7bb69b6eeb6a568021ca3e7ac39fbe068b299efe07efb

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