Skip to main content

Psycopg is the most popular PostgreSQL database adapter for the Python programming language. Its main features are the complete implementation of the Python DB API 2.0 specification and the thread safety (several threads can share the same connection). It was designed for heavily multi-threaded applications that create and destroy lots of cursors and make a large number of concurrent “INSERT”s or “UPDATE”s.

Psycopg 2 is mostly implemented in C as a libpq wrapper, resulting in being both efficient and secure. It features client-side and server-side cursors, asynchronous communication and notifications, “COPY TO/COPY FROM” support. Many Python types are supported out-of-the-box and adapted to matching PostgreSQL data types; adaptation can be extended and customized thanks to a flexible objects adaptation system.

Psycopg 2 is both Unicode and Python 3 friendly.

Documentation

Documentation is included in the doc directory and is available online.

For any other resource (source code repository, bug tracker, mailing list) please check the project homepage.

Installation

Building Psycopg requires a few prerequisites (a C compiler, some development packages): please check the install and the faq documents in the doc dir or online for the details.

If prerequisites are met, you can install psycopg like any other Python package, using pip to download it from PyPI:

$ pip install psycopg2

or using setup.py if you have downloaded the source package locally:

$ python setup.py build
$ sudo python setup.py install

You can also obtain a stand-alone package, not requiring a compiler or external libraries, by installing the psycopg2-binary package from PyPI:

$ pip install psycopg2-binary

The binary package is a practical choice for development and testing but in production it is advised to use the package built from sources.

Build status:

Build status

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

psycopg2_binary-2.9.13.tar.gz (378.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

psycopg2_binary-2.9.13-cp315-cp315-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.15Windows x86-64

psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_riscv64.whl (3.1 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

psycopg2_binary-2.9.13-cp315-cp315-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl (4.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.38+ riscv64manylinux: glibc 2.39+ riscv64

psycopg2_binary-2.9.13-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

psycopg2_binary-2.9.13-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

psycopg2_binary-2.9.13-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

psycopg2_binary-2.9.13-cp315-cp315-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

psycopg2_binary-2.9.13-cp315-cp315-macosx_10_15_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

psycopg2_binary-2.9.13-cp314-cp314-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.14Windows x86-64

psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_riscv64.whl (3.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

psycopg2_binary-2.9.13-cp314-cp314-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.38+ riscv64manylinux: glibc 2.39+ riscv64

psycopg2_binary-2.9.13-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

psycopg2_binary-2.9.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

psycopg2_binary-2.9.13-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

psycopg2_binary-2.9.13-cp314-cp314-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

psycopg2_binary-2.9.13-cp314-cp314-macosx_10_15_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

psycopg2_binary-2.9.13-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_riscv64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

psycopg2_binary-2.9.13-cp313-cp313-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.38+ riscv64manylinux: glibc 2.39+ riscv64

psycopg2_binary-2.9.13-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

psycopg2_binary-2.9.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

psycopg2_binary-2.9.13-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

psycopg2_binary-2.9.13-cp313-cp313-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

psycopg2_binary-2.9.13-cp313-cp313-macosx_10_13_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

psycopg2_binary-2.9.13-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_riscv64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

psycopg2_binary-2.9.13-cp312-cp312-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.38+ riscv64manylinux: glibc 2.39+ riscv64

psycopg2_binary-2.9.13-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

psycopg2_binary-2.9.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

psycopg2_binary-2.9.13-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

psycopg2_binary-2.9.13-cp312-cp312-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

psycopg2_binary-2.9.13-cp312-cp312-macosx_10_13_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

psycopg2_binary-2.9.13-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_riscv64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

psycopg2_binary-2.9.13-cp311-cp311-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.38+ riscv64manylinux: glibc 2.39+ riscv64

psycopg2_binary-2.9.13-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

psycopg2_binary-2.9.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

psycopg2_binary-2.9.13-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

psycopg2_binary-2.9.13-cp311-cp311-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

psycopg2_binary-2.9.13-cp311-cp311-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

psycopg2_binary-2.9.13-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_riscv64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_ppc64le.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

psycopg2_binary-2.9.13-cp310-cp310-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.38+ riscv64manylinux: glibc 2.39+ riscv64

psycopg2_binary-2.9.13-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

psycopg2_binary-2.9.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (4.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

psycopg2_binary-2.9.13-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (4.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

psycopg2_binary-2.9.13-cp310-cp310-macosx_11_0_arm64.whl (3.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

psycopg2_binary-2.9.13-cp310-cp310-macosx_10_9_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file psycopg2_binary-2.9.13.tar.gz.

File metadata

  • Download URL: psycopg2_binary-2.9.13.tar.gz
  • Upload date:
  • Size: 378.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.10.12

File hashes

Hashes for psycopg2_binary-2.9.13.tar.gz
Algorithm Hash digest
SHA256 e324ecf60f952d21dd11413b8bbed0951bbd99579a06fd06f28bfc37737cd373
MD5 20abe7e369e35f3fa3d16d776fc075ca
BLAKE2b-256 ed767b4383014be0fcc6c1c0e24292845a14e1672cf17fca62ca0a2bd5f4563d

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 1752b9821f1377404d65ac43af03d59a1eccc57fb2c1eb8305f9a3fe8eb7a8ba
MD5 d22c65f6286696890bde9f1c3d3898f0
BLAKE2b-256 e8303991c9fdcca90a5a1e55435292f4d74d176da2be15f3998f6858da3658cc

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ebcf3c4266a695df9d0ef51296155f60c86ac51cf82f0d0dd2e827255a891c5
MD5 090b6dd9f83664d14c646669a8c43b4c
BLAKE2b-256 d53a5c2cb71a844ee236be2ce91b286d797e34a21489909357c7cfba0f5c0197

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6ede8595767e19d30a7e8a84a7d47bfde6176d45d194fed08dbb68d1584a780b
MD5 df9b6548369e2e7b43e08eb606311c19
BLAKE2b-256 36faed742cd4e5dbddcb44702f9c4a97f7f5b62d97e3d9d00907ecc8ac750ef4

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d79530b4c1af657d5620a1d21b8e39f2996aa06821d5564d05b22d6b8cd413d0
MD5 13f3d63d5e94fd8a9b85f285eb2903e3
BLAKE2b-256 89569e9bbc7c773c5de7bb25dd35d7f041c2a6f0fcfa9207a1ceaf01a1bc687c

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ff0f575cbb14f30445858dcfdd751e043486f5290915df78a9818bc74042eff
MD5 567a823a9e6a6828ecda6f21f1c52d96
BLAKE2b-256 17e54d935acb6d3258c7a767b3d527e54c0b537649101b55002a5dbcfe747e2a

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 dddfe650e7dda464d676c27fbedb5061f1ad05e1604627f54c770d7f799d36e9
MD5 0bf9b1b08effbf35b2f8eedaa60db107
BLAKE2b-256 53cc359821c18317228b8032456a3740c98045b719ed003a594b9ebac9330b86

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 562fe2a43b30e781848dce63d9080c15414c777c96df348c4342558338cc7bf3
MD5 699d95b284c9a4417fabaa48bd782eb4
BLAKE2b-256 f43ce8705ffa381160d842eaf06a8446e8416f1a2497dd70a7e62277f3be6e7a

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 541a487a9ccd72b5e38f37f27b0ce78cb7eb3e336e7b5277d45463010c03a7a8
MD5 6c7aa167982a15dc78411240778737a3
BLAKE2b-256 bb4746c227deaf322dceafa0b7b321b4e5de9cc797014b7a353349b2e09b1118

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 08d3b81a6a91775c937abf97d4c58fc9142e8e35fb91c387d24f81d15c98e6cf
MD5 f32032f9a8a1c109362005055dab1b36
BLAKE2b-256 6b9867d2f34a1d18367b5f655bdd101759f8474286c74ffe701b7d6e3abd7fda

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dff5c70ed9789ccb0d97ff4a7da51dc523a255c4ec95df188fa5d44adcae4ea8
MD5 3ca19713e8c59e52374bff70bb746598
BLAKE2b-256 676427208e67cd6e663f69bf7bf905cf69db066a015c90ac9ca948a56a8e9d78

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 38397def2d794ffde9db80f63d6820253e61b17483112652a318355f51a56f50
MD5 77248d64024a6371025ed913111b4622
BLAKE2b-256 6ef1377d17fc8425220d17552691cd2b97aa232da92173f5dead71278b83f8ab

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f3088eb80f58ed933c62d87128741d31e786edc862e23266d3c286763d646de0
MD5 f211a92410db49acb05cbe7656490a57
BLAKE2b-256 bcaf3b8220633eaf955e95ea7be67d76e81a0d1cd3c76362ea504b91ffa079db

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 215777c62ce81c3b487cefdb6a41969944eb982309f91349ff3ca0323d6f17ed
MD5 a314075409b63c7d0cf47ab8d5c5befd
BLAKE2b-256 9542aab651bc22bafa961806ca3b21027bb0739a2730b0e6f7f0778baeb95e67

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 dde942b46ce20f6c4464cdf551f3293207f803f4e4354454eb1f5599c3eb1fa1
MD5 3a2326769e840e70c1d9f7d3b2d0491d
BLAKE2b-256 4edf22f4aec952cd5b2dd02f438399583ed69f7d04b90e7c31659d9571bbe188

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3e60b06ec7f9dc3e5f1106d12706514b6d6b92c3dc438fcdf4e43e65cc660d1b
MD5 08740021bae893ae292cef6c8f1457be
BLAKE2b-256 10a31819a01bf951eab2afb5ca2a3d11f50500bf536fecff088154372a8d1985

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e55357d1943673d491bbabb171c891704fc6a22441fea539e05a5c27a79ea3c
MD5 e76255aacb7587e7ed0044bbf9d1c9a2
BLAKE2b-256 41ce3c6d4ad71853a59eee6a575fe36df4bb40752a9735a27bd62af66b454ed5

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 5085f7ff7b1e890f279577cedeb8c628957869a340fa34a39f7f406500b3c916
MD5 16b6b448511afb2c1b5154e2d7bdf695
BLAKE2b-256 911a171ea5dac7b3a0fa57b3cb59c2ad6d7b8bc60732368fecfd2ed1f1288392

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c00ebe9a2f31151aade0db233dc1446513a95e92c39ce055ee097af0ae86be1c
MD5 3561538e0bc2203727380d098d7992ed
BLAKE2b-256 3d2a1a472059b198942d99651656e2bc610575584478bfe68d297ecabbd4887f

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 190c18b97d9ef72f2e88c451b6588af90d6bd7bf54cb94b963280dc86a2c7076
MD5 65b166b6e4685eeb5178c84d65124161
BLAKE2b-256 91ad7f52f92cc65c23778daff7eec4ee2099236694a0a4723a5f180d0708b607

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 5d89e064bb12b40cad696cf4975e6da86f8c60f14cd06cb6c1bc0a7f5d01761f
MD5 69f2ee3c4eb30b699760b386a23555f1
BLAKE2b-256 7229647724c43ac510dbc59b80e20e85d439deb94f5d5a024153c32330fa041d

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c0214c7da18a28d108aa7108c8a3cca8035c7911ec97ef9ec0827569c9a2720
MD5 d4d4c91c33391426c85d510a24b82155
BLAKE2b-256 0ff4e3a789de34c9ac25d20b25c2be583da16394a2ba0926da1c863653831f41

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 2ca263643ae37998ae04d18e431df34d0d61f12b47640dab585f14b6dbe00798
MD5 056474346d890042ff332153161a66a2
BLAKE2b-256 5f32897c074cb99fbdda7d34b0a2546097a59162bb3d04c0d546ae4ec82345e3

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 691da68ae5dd7c3ac77514357d35ece7b1ba8b5f3e6c92735198aa6159c355c8
MD5 a080d3531c286d9a935f108e07b7f586
BLAKE2b-256 87c20e0ffb4caeb651631cbc6c8ead83e2a16457750b1d2eb7f5ef111c1f4d36

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 feb7b1856f6ca805cc0e08739858f6cdfed8ce903390126af30343c62899a389
MD5 e564e3a41821475da88fa729bbd24902
BLAKE2b-256 b35d42a8935ab280e8dcd7c07a655c0c3d25d62e9e242be1961ac14630f1294a

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 81404c37e0344ebcf10aac127d33d35137e5dbab1daf9f3deee46188fd5879c2
MD5 8243c97d3995b95868a1d44f087483f5
BLAKE2b-256 83426eba8306a61dc890805ae475a9e71790a1c5461ccacbd4f0a1f3f57b40f0

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5f04ae99c9fbb94c3197ec88599ed7db921f6adcddfe83687a74c7ead4037c22
MD5 6fb3224669f10da9866368ddff214e3a
BLAKE2b-256 34c44f9a84d55484c9794b364548eb6e1fe10a57f123afd19729e5a1cc8ad7fc

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f699a5225094a5c61402984e2fc1eca20e940223e76767c88189efb0c313f69
MD5 727c400fb3c9d1f3c131bd832f47a683
BLAKE2b-256 42083091347b9fc5766e979aba6b0756ad14ce867a6bb245f3d69ac71fb768c6

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 41c2eb569ebd0e1b02d30d361a46932923b193fe1b5e641fb4d547c75e218955
MD5 5dbf0e47138a82fd7f6219f8eb673131
BLAKE2b-256 e415f7ed0b90b47b73a9087306b42267eccfd919f92c0fb057e46bd2fa2efa4d

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa37089795bd9701576edc2eb5849ce77a439eda9dfdfa47857449332cfa5292
MD5 48d9d4a3b8bccf9043d8cc895123c21e
BLAKE2b-256 91e556f9efdc9337acbd1a75798d97163183b63a1babc17602f7163009506c96

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 f04ada42bcd537adbaf8b7f3140237a204e452a88d0c1831cfce69f7d2e59f4e
MD5 b6949be6405a898c319db3d97a4a5a94
BLAKE2b-256 565c87daea77c4132114d1a5da3a4928dd59446c3b3cc73d288cae08cf0b91a6

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 31db6cba66df5231dfd91d9f69188bec3fe6c8baae384e93a0ce792067ee2d98
MD5 eaba2fa6a7ef8bc6f70df612b6086467
BLAKE2b-256 6ce2b2e3b3a4331dc8b58e328cda30f3d0cc43a94b7aaf0c8383efd53dd10e95

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f818161d2302b3b3e9c75d5a1d0a5c5679e92e45cfec6432b9d5432dde5ff1f1
MD5 37a285406d8511f6f65f32254c2f2a3c
BLAKE2b-256 b5635a9633f4563a73beba69b20a846ddd14c1c6ac072f5e8aab0da97ffabc2a

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4d66bfd44a46eb88cff0287929a4193fb45166b6c1f84bb1b233cc17ece0813c
MD5 d42b036f57674c08fe397175c98cd7db
BLAKE2b-256 820a795f2869788373cf7d08410341a444196e8ccebbac07a70a8f9a1f60e72f

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 376ebf7d8aee4b7386b2bac31fdc27911e7e57cd0a88f1e038b8b149398ac008
MD5 50c97980af714e41bb03adaf9120cda9
BLAKE2b-256 27646e3a96699770af2d0d49a2002f722c69b656fc27623ff89281cf2b109644

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e2405196a8cfe6cd3e54172a54452dcf85c241eaf2e9dde7190d7469f7f5ef7
MD5 9bd86ec6d77758ce917f699b59903342
BLAKE2b-256 7d3dc406c9f698f518c264381192c2bdf8952ee84e469ffa9f82db1411f57385

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 13d955f6054a705a19554364fe9888d0a6e8b0746dc7ebc08a447c7b4fd4145c
MD5 6fad65321fd31d3cfeb0919c678edce9
BLAKE2b-256 77c7d9737e222a377dac67a0ce0a2c73e7231a57f5cf18bb35a65d5c8d45d5d2

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 81682c227cc1849c4a6adf7b85274229073bb4c9d6ad5697222c695dcea5a8a7
MD5 c1ed8809ca7119eaa409c12cb9e60290
BLAKE2b-256 d954b17616472f09a0fae96f8852692948b7eaa7c971d7629696da0e5932d996

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6ae51708201f501a171b02419d0c30878a743c369c9054eb1289f0f8d5979e2
MD5 6fefa78d620c4c60ac5c9f1cc372e931
BLAKE2b-256 c4ce71e8d9e1b4f3e78157b49a5abdff50d915e95f2812550f6c9b4f2e4d5e94

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 0405dd4d97720e7ab177aa02e493f524907c4cb3c445ac173e2627948d3d0528
MD5 acec5a94914df24484c4588939eae461
BLAKE2b-256 d65321079c10a581c50b6817498eda7c3481c1b3cdb41482bd08ebfccd3664c4

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3dc3372b3731b3ef23407fe06b94f640ef87a2bda242fa386033d5589c87514a
MD5 8db3766c92696931e2c79ac1557d0787
BLAKE2b-256 b3db9d459d3da12e0b841cf1596579455aaa27e9e593e3e9a5a4ded5a55a7c15

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e3861eba31f8ea8663fd876166b032fd89179e42aa63764d6feb281f13f9eb60
MD5 28fc3c61c71abd98a38b84f7bc5b61b3
BLAKE2b-256 8dc4a9a67ae65ad3d567eb0fc9cdf9a5a2783b779aecdcdc8945f1807b13d99e

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 0463c00f946517f3e69192a59e6601e023ff9de45ad0a875eda3d6b1bebeb7ce
MD5 829ecb648f36170eb01f356122d44a2e
BLAKE2b-256 3d433e4783f62ae3f4fc19a5acf8d1c394df54458f1336febe188f317556d2a7

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07b7bd9f410650c34c3532162cc329f112368d78a3fc8668cb1ea9df61bc11bf
MD5 83807908a5d5270664abb18f7614c49f
BLAKE2b-256 54a5b5a73d0910555e38ee12c49c1740855f8a1e9776e87d65f0c51e1bab762a

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2bf9f97a6df69a5d89d054b8cf5257a0916096c479800715fbfe7974dbcb3a26
MD5 3be292ad8636a7f48cfeed1a768bd096
BLAKE2b-256 fbd1d0125c56b865e3bc9f318d84930b2df71a729229dbb0ce12de748a82a6d7

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 70d091f5c3a6177fac50c0da20181ce0e0c053f1e43c872d5f75bd6d9429c020
MD5 9f0b65e17bbdce2a8eb0de9d543ed37c
BLAKE2b-256 402cdd379facaa4bd41d7b04711ff30931ca62981c00a91502250ffb49da08a7

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f28b5f2fa8154d0d97e97a664136f58d1639ca008d45d6e09e69fff24826abee
MD5 ffeb40826a8344ace1c875848fb64425
BLAKE2b-256 4ff2b10a046cc19ab1e01b92226eeb6e8653be7e6691939991b2f347995831b1

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f47f23db2d70db39cfb714b64fd5df76595b51b2ec0a669710a78f2dceb0c3f8
MD5 232d7eaa6f4e78ead86286d3191b7ab2
BLAKE2b-256 9dd28b23c57591c6d29a463748ffc634401ce14719dba7e78ab91bcbeac70934

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 8cb734989420c18ca1b71a82da880e11988f5ff3fcdaadd669161de3e98794ac
MD5 499f2e833ff77e4a6917257aa3362762
BLAKE2b-256 affc317d248503aa29a5051ee49a7253daffe1c57e43ba174020e00bbd87c479

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a6444ac48e2c04f691c2ddd542b38ba30c89463a2d446b3d74ec7d8fc90c964
MD5 a7c631bee06ef13d0f70f5295efe56bc
BLAKE2b-256 87c7c3d84e330d1584efa0560b756914f9128b1b6fa2aba93fde54bf101d4f65

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 27e539b4cafd5e03dcd32921db1b12dd72fe549dd06bae6d4d2a5b5838465f24
MD5 5f753dd15f86998bf1e905329bbd296f
BLAKE2b-256 f82b59e1519a22622169e2244f12227b3acde6114ea531a349292f455ab8503f

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3aea95340825f5ff236e7b40f0b5602c2c77a1e95943f71fae34909834043d29
MD5 70c85cf49f256ecf66ee1079da7b2abd
BLAKE2b-256 434b9fd928eaea9ec1e8d74fed83c9e82826f830506ba0d8c58a8fd41ca93656

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 930e7e58b33a4f9c39e7532d7a40147925cf3372baed4229cbebe0cf3ba9ce6b
MD5 5baddf020c3685b2f8e611afa3094554
BLAKE2b-256 9763057c65532bd12cdf9d4f568e59c2a078a38e9ba8f7f251292968dc781905

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 6e696297891b56ff0115f0665de6ad774e1e301e4f60745b8d5024001ae7c2f6
MD5 0c81627ad7820c6d61e718d367a06bb3
BLAKE2b-256 6cf34004cfbbfc52b9b13ffd499f2103eb05246e92828c7237d2c198e028b95c

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32cd049095135d2b69e824aea9056745a4aaaa9115a9febbc65584793665d0d0
MD5 8b6c783a8a4bc871111d8556c884f0af
BLAKE2b-256 535ed50eb688e7e6dfd1499e68cf2d02f44a348b88f381cbc2bebeed15e345f4

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d19aec88857d2a52f99eefcefdbbb45921fb2f777bee5186a355a23d9cf8a0b9
MD5 1c6c31723176765ebb33f4f6c3b796b9
BLAKE2b-256 7b03639c96ff8ffb933868252308a9917ff4170d8c7f4bd16cd0ea2536814126

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 28eb30bf4a52c1117406f45771038faa96f882fdeeeb0ce43b960a1dbc6c1fd2
MD5 9497bc08ce383aeae1a434f376a3459c
BLAKE2b-256 a55ac4b1cdba78d3f60389d768db580cb9255b6bd1f01df98e5131b26322133c

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db31cf7f617a51625f1473d8a66fc35dac159af8b28e80bc014ed3ee994a9fbf
MD5 59dcf2f23dc3751a96ebfd021ebe883f
BLAKE2b-256 4249a040b3d596cf4128656d24a5b735b0628bb196d7ab73c0164898ca90e420

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 202dedd5cadb3e5dfd4d0415ab2fc5d5b44f4208de5308938e3e74ae222b638e
MD5 974d741a0c6f493507da1a9b848c8cf9
BLAKE2b-256 76feef2e4adcb7cf20572235da4d2d24b98788466d4e62ce2db72be865859d0c

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 33a6d3c47f9655b481b2cdc1b4bf71c235e054e55663d3066036b6ce5fbe5165
MD5 f18cf751d2033a3559ff6e8626d4420a
BLAKE2b-256 a5be7b1fe00770083c303a835267dafbcbd7a346ba7b79909652f4ec484ca7fc

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4cdfe41149dcc5583a3b7a2f0ad433f75bb3afd1c7a7332e63df89b05e34666
MD5 ddd5f42a64abafd6bc149e9cf82114c7
BLAKE2b-256 c7685fef23ee856d70b152a46fe3d33264971bc0daab658d88a76a9e6cab7a28

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-manylinux_2_38_riscv64.manylinux_2_39_riscv64.whl
Algorithm Hash digest
SHA256 c24c98fe1a113db287dfb1958771eafca97b7db812f23b7897c2a12b6b904c22
MD5 b2c20eeae301a3f38ea98b1219d51b1f
BLAKE2b-256 a0e940febef96f95ebc08754d4a70332fa8da1c280c9fcda420b8896b2f8d855

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f124954a32640dfb5c000d33028f48053930d7ff226bc74cde5fb316f9c6fcb6
MD5 24c45c24504b18b2dddd55c430a4bcfc
BLAKE2b-256 ee29b41c62219b232c9631db1a8cfb99a93abb9afb8a00291579b830f756ce89

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d2fc9342aad969b9a28490a4c3eaba94b35beb2d26e9a39b31d1430378aa71b2
MD5 3c2c108416d8cb897bc99672b24a00ec
BLAKE2b-256 fd96ce330aa1959250e6fd254678e6489b3b39eb956669122ad4b45dde3b02c3

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 1f4c7bdbafdf9dc018efbc29213b73f8308332888ba76a4cf503f560bfd21705
MD5 11b0dfaf0970db279fee6dfc83f9d085
BLAKE2b-256 03b2412c92a391472644e4059dc68cb20bc9bc40be2ca61eeb5882aa86b092d7

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 086659ab083119f7ee87a779e31b94211cf162b708fc9a6bec771f75c73ac3e6
MD5 24987ca891210ca51e21b916bc51b490
BLAKE2b-256 27efe6f9280c2327e52f6c139ab549e57a21202b724384d4697dce5794c59f64

See more details on using hashes here.

File details

Details for the file psycopg2_binary-2.9.13-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2_binary-2.9.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c519e406287085f43aa0d3061936edf1ba51286093532f215315c6ab8ba92c3b
MD5 c29e369846aaba40ed458672811684e5
BLAKE2b-256 4f5d4a82fcded401927a320ba4e0fd341f75ec7c83e92f5c1388ba27ccb21f91

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.9.13 This release

67 files

2.9.12

67 files

2.9.11

67 files

2.9.10

68 files

2.9.9

72 files

2.9.8

60 files

2.9.7

60 files

2.9.6

62 files

2.9.5

71 files

2.9.4

59 files

2.9.3

59 files

2.9.2

36 files

2.9.1

36 files

2.9

29 files

2.8.6

35 files

2.8.5

30 files

2.8.4

32 files

2.8.3

28 files

2.8.2

28 files

2.8.1

28 files

2.8

28 files

2.7.7

30 files

2.7.6.1

30 files

2.7.6

30 files

2.7.5

30 files

2.7.4

27 files

2.7.3.2

26 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page