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

Uploaded Source

Built Distributions

psqlpy-0.5.5-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.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.5.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.5-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.5-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.5-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

psqlpy-0.5.5-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.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.5.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.5-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.5-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.5-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

psqlpy-0.5.5-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.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

psqlpy-0.5.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.5-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.5-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.5-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded PyPy manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

psqlpy-0.5.5-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.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

psqlpy-0.5.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.5-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.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.12+ i686

psqlpy-0.5.5-cp312-cp312-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

psqlpy-0.5.5-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.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

psqlpy-0.5.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

psqlpy-0.5.5-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.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.12+ i686

psqlpy-0.5.5-cp311-cp311-macosx_11_0_arm64.whl (1.2 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

psqlpy-0.5.5-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.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

psqlpy-0.5.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.5-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.5-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.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

psqlpy-0.5.5-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.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

psqlpy-0.5.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.5-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.5-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.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

psqlpy-0.5.5-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.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

psqlpy-0.5.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

psqlpy-0.5.5-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.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

psqlpy-0.5.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

File details

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

File metadata

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

File hashes

Hashes for psqlpy-0.5.5.tar.gz
Algorithm Hash digest
SHA256 53808d05b9d3c24c9c0f688d1dd5ac9972d0ac15896a474ea46e9884ce51fc75
MD5 53e7b437d20b2eee36f59b9c44df67f4
BLAKE2b-256 08460c4cbc29ea34ab1fda0c848ff1bb2f023950e5aef428d14657039f32d5d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aad5a760c8c857165487e26e0455f400af28aec0700df25b0c500e49ff70d653
MD5 a08f29f930cca415449bf9ebd28974f2
BLAKE2b-256 0bb9b5be5d77d860fd1bf462271031f12d844f142be969e2dbc65346fc023236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c478bd2e77121f078f28d5fc58bbe0dd7424be6dd9b3e5068fd6cec206e043f
MD5 e85623608bbcae12bacdc5e4194b0b70
BLAKE2b-256 b2b960c331e945a6b2a4cef19fa3390b3341b266983b7d2a6143136d54e6c2b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0af2d12bafbca379e0d27c5299117273badad4da356cdde43bb52f77f94f2af3
MD5 65daa9153703c692c3606d642ac2190b
BLAKE2b-256 1ca8833d04b427e0ea8a9a029178c2e7e8c4b5f0da9971e9091529544c5f84a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93561eb6e10dfb5eb3ca83811fb76533f03d879da8308c682bd4d0e8f1ff2b1e
MD5 e5448c1ac6fb4e611526d5c9b4c8cc40
BLAKE2b-256 03e2e891d7459d8e11328593a9e99e4a5055edb84977912637f083e920ff4208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26655fdb592a706b354fa8152ecbbccc1692f138715b6a6edf4382c3ca2bf692
MD5 86c9ad0c2be6e5d768879f1d08fda208
BLAKE2b-256 f0b4e940aa4933f53252c34b4e3c71526c80fc577171d12e113a81f422653c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1d255854688c58e2abc0730305dd9c95c37ece1c0d12ba56b080240dfa205deb
MD5 883465e598810b4fc680d8f302e7bd30
BLAKE2b-256 e1a277d0a71a4744b784d8d48b08f05bf8bb9e96e7c0342dc58c65e4c87008b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6dfb02f9b3831d86fc1d370cba831790634bfade6a15c7c7204f044c3eb970f
MD5 5a0b7142bba8eff1cdac8fd277e13f06
BLAKE2b-256 a12025ad954e577a3aae00c531ef73e4b7d44cfe66c6524a2831e3623ea27532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9f05730a8843d197e5af168ceb6b5e57b5e6dfd72ed1f0a1c1e1ba36c60aa963
MD5 bb6035435e3209bbf2e2bf49c13088f3
BLAKE2b-256 2bb73322fe8d1f20aeb7ef6027f1953fbe1398e68b0f1d130f032bdd23a8b3ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 822861a62033dba9606a32f1be497cea66b2c572889b33ef02c5e1b57543eaa6
MD5 2ef8bf2afa4e47d468e63cbb1ce0e62d
BLAKE2b-256 f10b0aac850c82ea6096d06bfd3bb13d20f9c3f82b53cbebb9d4cb2170fd2e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb6e8888a2602be236c12a52ba1ca6358460c4190f55604c6d3805fe81e4782b
MD5 c6873c127cb26bac1c0b5374571a7e7a
BLAKE2b-256 b49657e4a349c011c3b5c36d36588aac7cbcd0adf39b282ab1cb6c97baf05380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68d5455a4e60356512601eb78aad6ad6e879d381598c18bb15771fd39d28a6e4
MD5 77ffdce059391ca3823a03a7b784a6e6
BLAKE2b-256 9516ee4b5c83037276a7dfb9014d647b417012c0c2e1196d0b892216f844e287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 861e1dd3ac077270091ac5b6ee9550f60d2c56ce0fbbbf7c84ad3de5431fd0e8
MD5 95f12ae5b75f21d08c0f0d7efe349574
BLAKE2b-256 594c009e1345d2bb83dbef1587f7270d446fb36c50a0f4fbb3588c4041964df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e6e48713260f72b996717c32ac121d27f4b925993394f71232f7222e2a39564
MD5 969791ac0eb5db5ecd77f91c1fc14aba
BLAKE2b-256 0b0619f89e781108293f577d70b2afe6ed736c558e9362fad56612fdfc938dd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 069848c561d524f8a6b3c03f06b1772d102706aa3d8ecd78a62e6d14da8930f9
MD5 abb184d0f384786c1ab63d385c9e3eac
BLAKE2b-256 9d3a2c435b562d57ea74cd5db63e4f4d059f42f6221cb2c971a09771caeaee13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf8b16a9a766c02d3186e1c2d5b4a88f04ca945a79b3f1fdd66315f6efbf9206
MD5 f744c9583cc39cc5419de3259c866050
BLAKE2b-256 734ab14939a4d2965c0f2c4e99471b962f50a5e4a9cf2568df59e736e9aff8c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0857c8b153684f7c3dc56a99d3423f2990c7cd6ceb25104ff709b6ad0e6e559d
MD5 5abc466beb9d49d705f81edb2c64df64
BLAKE2b-256 75c9442b7867c9d857bdcf3946e9c850609f5074da17e8c23343a0a9843c027b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8dd5ea34328e996d11ce071abb7543d4875d77a57852eb85eab996a2fd5360cd
MD5 bf772d7602af4c6bd0c28158209fd37f
BLAKE2b-256 ee794f46ab36564e28153f26fbf7987075f739752d58d8539c3d2184666495b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 739e888ce46037266c4b3518f51d89d929cafa5025e4784acae1dbb29f9e1417
MD5 75079ca0f3ccd052aa77e5b482c23054
BLAKE2b-256 8d4b1e3f0d488fdd88b2e0b7eb0ca63bc1e8d50624679b7f8aaf1d074577400e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 338465ebfee1b9c242920cbe5589b46803e25e7b5eec177e0b5f0284a61adb32
MD5 e8211847e148ebdd2cc7ff1668163e95
BLAKE2b-256 1a42139f8ad78e0c285d40ea857249d402f5463413827d231428af393c0b6f7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.5-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.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 441e69224048809495989a8c3219f57abea97c15042bdc004a21cb8737303510
MD5 5b92fa514f0f5653742c0089bb8b6ca9
BLAKE2b-256 e9f94f0572b9e41beb3b0002f7ca1dd660e47d1cf2ae2c81877b113993ec6c6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cab57aaaf7172f7e4b17ea2d6db59f6b5e1eff8467ac751147b3bc6f229afe8d
MD5 778aa05827cbb250efa17d69afd80e91
BLAKE2b-256 1da9c9438f945570353cd8f8f50944ce25529d055dfac6fb9da1d2881895583e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2fd92bb058a223e42177092c5cdf8d180d3c215012e8b640fcec955bbe76e057
MD5 a7f0e080510b39cd4676908bd793c31a
BLAKE2b-256 5729fa775d0a4d6650535cba645042deedb35d628cfcc6bf2303335cd4fa8974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62ef96607a987de979f519baf8d396feb1bb47edaaae52cb99fc7bbc1a5429cc
MD5 85a196831225deb768e2d6d0bab52a51
BLAKE2b-256 15fb956ea407d68622e9405e1a154bab839bf372e1da21d4f4d3721a98c8a2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 545165c0a0cb013125b94fcc5f78842635eeb5d1d469b566ee62442c94f0b40d
MD5 c568339e50c04f8c326fb01769ae08ad
BLAKE2b-256 2d543b6ed8c2aa0ded108a75a0d65ef8233e472dcd30045f2de17892b6926e9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a552fe5be0d8f22a6e9f160680a9ac076638b6a130ba0676975e1c69c98bd132
MD5 66acd54eb8319625e68f1f4249ebc97d
BLAKE2b-256 e0995f0aa7f18e71eb8c5b46babe8c1f9d75bf0c0b656fa1403156a386bee077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 63c340c130604387d3a97ad96fb8f872286f4d390ca39d62bf924739496f73fa
MD5 45170a2a16b85bc19a06428da5d7efae
BLAKE2b-256 89f9abd64e12009e90247b31f59332aac0839bb16fed616312e666a11b281953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5deb7e166254014f38641d8fe4d1e12ca3fe1c77445ebda7c355b1526030415
MD5 5be8b605b9e67d4c8b577c1ea94e8bea
BLAKE2b-256 46caede7981506fb60e2221aebe1a58f89452fa2badd01b14e50e6c718e6847f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0581090ed2db592ffd7702744cfe9341da0ea7a679c7197ea77a51d0d4e1181b
MD5 cf6092be564c86080db145e4150e17e1
BLAKE2b-256 6e285da968d3e58cd73ebe438eac4829cd1ef94de05f9fa0bf808a3e86305837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 0889189f7bc798025ecd1172bf9b76857c1e1ad2453ed21f6b86bf2ea9d3a6d8
MD5 e448dd24ff95ba83bb06ab31c4fe2cb1
BLAKE2b-256 b0692d0c0a73a48289a7a4ce5072bd820dc784a9b5864a0d9a8aa26e72003dc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.5-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.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e0159a9f7c3a87071980fde23cb15f9d1bb0d19b1c1f9231d6c49c1ff844b02f
MD5 be3a0d4208c4bfd4135e7a1b99bf3f73
BLAKE2b-256 e7ca6e33a51a88bbbe8c0226d5fd29427430fdf42846964311cf1a8dd0fcbd08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3390fc7a985eb242b1532be515903b360a7139e16880f14e7b32f4388ce963a8
MD5 129b83bd63e5d029ec6f23ae5d6d6e06
BLAKE2b-256 f0e6145e96b8f6a40773de59e9a614ffa892f2791f425b4effdad29d951dae86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ad7f258310cae0c5ee6e517536fcaba76b908a10874083e5ae796ec5495420e
MD5 8c65c385635279e8fd3b2ed5fa7b6a2c
BLAKE2b-256 5d95c9c093c506f0a2f7ca60312b3c9638cd12b6ea1cfb2885b68f3c928ba38b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2ed5e3d8f0990ff6b900cf2c1ea4487a5e0d5f9a96735022b152c3049fed4a0
MD5 f6060434020139d00b0b6fbe69fd5e0e
BLAKE2b-256 9ef3e6ee71485b2b1f63c39f1d9ac2496f1537551bd967115c725146690ac35c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afbced56b21255a297d9105a058406763a031b0dbdbb25640c023ce012e3c4ad
MD5 e8743906656043ca181eb3345e8b4f00
BLAKE2b-256 5735cc63e2808b15c4beddcc18f71accb9fcc76839fd89e0800208d24b80511f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 334bf0eef07c661c9b0620210bad4272f23d83cb4049127f66e857d7b8dd3589
MD5 43d9f0849c58a574d2ec3315f68d9864
BLAKE2b-256 30fef181e51073e21ede95237d9790fc863cd12b647cdee068c7cb3b60e859a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e53b4a2f34f45a7c7e16a4431aea7f0c8332db5930d6e09c1139c2d6d4b0bd8f
MD5 7cb85318a4efcc24e012f1d2251a3872
BLAKE2b-256 96f861043251bb7218743c2f82422789281f5d8935e4509cbf7daff02d8e49b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f72027d1d9f6a14c27275f00fe85c2383e260fbfdd09fb05786af78e857f4f63
MD5 113ce4f3838946089ff11a1f6b2bc940
BLAKE2b-256 f5255f55b2b9c56a26596a84f5e7c827756ff19f4557d6c337760d72984c67ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6eb21fedeb0166675231178c478bd95f00daa9fb536581e1ef4921db2cf06c8d
MD5 ce4c8a5a1bbb025c0209a16a2f1d6f4a
BLAKE2b-256 a363451efaa258219ce3b8663e2294f2702b82fd6a27a9226b811cc0ab450a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 be2a45fedc0ca7a0796321dadcd0d82a70a4a50ff4fadb2b99c24bbe2b328fe5
MD5 350a6204587b001420e85cd0082d43bc
BLAKE2b-256 a2cdc0df214aaec2c5dc5bd69677dcd0c9f7bef3e2fc22a1d14fa521827f8765

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.5-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.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a9666dea10725b8e3a184e27d0c2369e1103772ec7c434f85b156a0e97c16d97
MD5 e25a953ce66f218d568a12465e4b5bab
BLAKE2b-256 e93f0bcf52e47c60065adac6633278ea83cbb01ee9238f2c906f2bbdf5c6d2d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13aa1d57ad7116c8f6829e2480cf7b0de358e0a6f90923731862976c380f7a31
MD5 a69efdee61daf2594cf6c9563543f495
BLAKE2b-256 8b606faff39b7c4037e61645e4b910af85487fb4df334ceeaae204323f818b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe4e127bc37238eb8350b3d5d9abcca1a06e2a03ce7c0d4afaf60b98670e9b2e
MD5 df22b62d44ad4ad5d1ff369095017057
BLAKE2b-256 8cd8705111f8673644d86456686ea7b8093e70034d1ca5a965cb4973e5e7ab45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53e8214d81b3d417ec262e9924964c347e3f37e39c76f5c50f088575db0b9dda
MD5 0fc554d02ab49f84953a20e1b4921e06
BLAKE2b-256 c5d27f553576b046a7a04c8ccba02badf71de92daa23ebe7bbe010afe1cbf631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae4c7895b939a0f699e64d32626b9fb2b1027864faeea98e3dbe9854e65ba9b9
MD5 a208b460c474ada1d64a42f714ef7c5e
BLAKE2b-256 2dc4037fd93832a3485d7c0db7d7d25e1f136ab5ca8e025d0ee07272722e6b69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fde92e6889c22e3693f47d40ef43ffc20adedd97aecd6b3beb0c5db202606148
MD5 57d806e72f32750b284048b4e702ac94
BLAKE2b-256 9e87a44973899ff90773a89c0a86dbe0d059826076e9e863f866585cb07a317c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1a4d8804c8431c4af6fc39b4f49b0c97331a839e33147fdae71f346772c777b4
MD5 f048d67e3506b39aa575738b4dc3885c
BLAKE2b-256 ac74c8a6c0d001fd71dfe3ce6a434eb27c272e31c306b61df460eb3078e72c2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 733b4f04d0ad7fa99bfb06d3370ba8b0c6784579a4caf24212b7fb12c9d5acbf
MD5 d5a25a1c61ad42de0518367ad42a7162
BLAKE2b-256 1f65db0973d94de943ff23d4f7a71fdae8a3bd3b2ed48044af8a6fc30a113032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f676ef440113affea1fce20b608e7700bb0d4c053c3a296657d31458a6e6bdbd
MD5 c50c6b22986f6910d153f87f149ce0fa
BLAKE2b-256 2142b459d4490854d3417f81fde1d6f7db006d20a75f1d4415bc5cd3cc974cd0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.5-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.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5635dde5ca5ab0494fc86f68a5a0b06ce663f99fcb1a564c8f1b461ff5bd65ad
MD5 9b1c1064c65d3d1497378973eca144a9
BLAKE2b-256 b6e130bf918549e1d31e3ebf573d091f3994f74bd831455c63220f609dce7f6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.5-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.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 7ca69ce767eab7cc2eb859b3943b4bd53de62f1c02e9ddc973f6ddff07a04fde
MD5 a125f5e8fb4011e625f8f016752f060e
BLAKE2b-256 ba1d20c415f775b9a7d48fcd18e6b1c8bd9f9daebe546c996555a45ae9c37cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 401242611d0056667829f4c8b5a32fa0cf27954dbf1660240306fea5f29fa176
MD5 80279f561b38607e61e4522b30d76402
BLAKE2b-256 5f8d84c6473fa51f3f42df603d909ee5adbad93af491521328495493be8b81c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 994248e8c3cb8104dcc5ddae2a210b70873c72d0e50983fa4d0050430b823c36
MD5 79c6aeb45ac7f10c5435532d3eacad4d
BLAKE2b-256 770f64a35242c316d6a10a8039d4a1921cedcce47c97d1b24fbee4e57f7e5595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d49a0a01e70a1492a6eff217308106b9e2a469f697270394172e987159a1fb44
MD5 c32c787973efda5aecb5612d829b0479
BLAKE2b-256 18a11405cd038757560bbdb6b78f1390fbe63568d0b797945bd40f8e90394cad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd38e3e36ac1a6b9c8b594da722a8532c8c439a72c99fa856b0abf0ab00258a6
MD5 7c63688b065fcf987d6a92cf12fa0af1
BLAKE2b-256 acffe791460df89eb0baa07c8ca0e16f3d00bbfb4d9a5f94a12df01bae6559cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af9f4914a86305af0f54174584758faa725f7c56530273cf1b92b5c27cb7bba8
MD5 6bd99110f390df556a39d5bff0854764
BLAKE2b-256 1695740adedecf6ddd8068090d7d0e029a5cb06d62b6ae5ac76b54d8bdba3582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6d50dae4a984dbcef0f1d048090aa4bf95f2353d7738eae6d76b2d63838d6706
MD5 df4c410bf0735cd831a99119ee63ccbe
BLAKE2b-256 3ffaa95fe0088146805c9035bcb29047dabac16a8052ae5de0ed11a4f6f1e64b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.5-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.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a8d00b1adb10eadfba5be5e72a0f9f4f106554023b08cae19d0272646e42c881
MD5 0574d332a3a6d8f5c7fe4ded300064e6
BLAKE2b-256 494a07ce31759687ab8389b428de663e15169d64ca9a0c15f0966320f594cb19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: psqlpy-0.5.5-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.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 1e3d87606eae4a3d8e7a896acf8dae2135932995a262527604a9f231a2426b95
MD5 f6f864d9d88a02a6684f251991d991e8
BLAKE2b-256 baed8dd071d90e65eb4373085e0a1aaeb071ebea92f04e20eb9e9743e32c18d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f017300b76eeea40f627900f1af6c91845acd2408507b78ff013c7428809e2d
MD5 06cf65357adf7212a59b9b0c63d1a4b5
BLAKE2b-256 1403f7b6bf4f865b2cdb42b9da6f6b22dc6729885813a4ce916d2cc52b82399a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11958dc85337d25dbf2dc77399520aebf539121f376d2a2fe7f772c67b06e661
MD5 ec057d5f460df999602d5f2a3bbf676b
BLAKE2b-256 a57f45688e9595689ffa7fad94a5a1d8a58af371dc613b6d192aad9c5490132c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 752a2651c2cc701002c53010c9d3a702dbaf76deee6243e71c14c12f81a40b8e
MD5 6d83860ffad83032438791205c6d5cb3
BLAKE2b-256 a94b7ee1a68f1d25324a6517f87848bd4c0e7dc26c9a1ba4461ada15748debc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74daf3c10be85a871eac5989fc3ed6f2e3e2f978f3e2462f888a620dafd8a36e
MD5 9ff568b4b7b2c3f77e5e45fb7d99f491
BLAKE2b-256 976bf936a13453bcc138d564d1b55c82312368aadc2c11589962aba94940f8ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e60142771badf2813d32b9ef08ab5d73956f2c8ff5a33c116c7e11ca69e15ed
MD5 95bcf303791b1a8213400b726e21f1fe
BLAKE2b-256 d0f5bf172fa8c4645e2a3a0a96641c95dab616e053886c9dc08145ccf07edc37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for psqlpy-0.5.5-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a7d3a00eb632bc40eac8e35d9ebc5170f5ecc68c0be052c739fff97374332ac8
MD5 72802fa24f9dcf0fd40cb9e0d4ec11c4
BLAKE2b-256 cddf12b31e1e88e603e3d38d0973fe4338a6cbcf73870cdb31241f007aac6367

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