Skip to main content

psycopg2 - Python-PostgreSQL Database Adapter

Project description

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.

Linux/OSX:

Linux and OSX build status

Windows:

Windows 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-2.7.7.tar.gz (427.5 kB view details)

Uploaded Source

Built Distributions

psycopg2-2.7.7-cp37-cp37m-win_amd64.whl (998.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

psycopg2-2.7.7-cp37-cp37m-win32.whl (855.2 kB view details)

Uploaded CPython 3.7mWindows x86

psycopg2-2.7.7-cp37-cp37m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.7m

psycopg2-2.7.7-cp37-cp37m-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.7m

psycopg2-2.7.7-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

psycopg2-2.7.7-cp36-cp36m-win_amd64.whl (998.5 kB view details)

Uploaded CPython 3.6mWindows x86-64

psycopg2-2.7.7-cp36-cp36m-win32.whl (855.2 kB view details)

Uploaded CPython 3.6mWindows x86

psycopg2-2.7.7-cp36-cp36m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.6m

psycopg2-2.7.7-cp36-cp36m-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.6m

psycopg2-2.7.7-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.6mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

psycopg2-2.7.7-cp35-cp35m-win_amd64.whl (998.5 kB view details)

Uploaded CPython 3.5mWindows x86-64

psycopg2-2.7.7-cp35-cp35m-win32.whl (855.2 kB view details)

Uploaded CPython 3.5mWindows x86

psycopg2-2.7.7-cp35-cp35m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.5m

psycopg2-2.7.7-cp35-cp35m-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.5m

psycopg2-2.7.7-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.5mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

psycopg2-2.7.7-cp34-cp34m-win_amd64.whl (990.4 kB view details)

Uploaded CPython 3.4mWindows x86-64

psycopg2-2.7.7-cp34-cp34m-win32.whl (867.4 kB view details)

Uploaded CPython 3.4mWindows x86

psycopg2-2.7.7-cp34-cp34m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.4m

psycopg2-2.7.7-cp34-cp34m-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 3.4m

psycopg2-2.7.7-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.4mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

psycopg2-2.7.7-cp33-cp33m-win_amd64.whl (992.8 kB view details)

Uploaded CPython 3.3mWindows x86-64

psycopg2-2.7.7-cp33-cp33m-win32.whl (869.7 kB view details)

Uploaded CPython 3.3mWindows x86

psycopg2-2.7.7-cp27-cp27mu-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 2.7mu

psycopg2-2.7.7-cp27-cp27mu-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 2.7mu

psycopg2-2.7.7-cp27-cp27m-win_amd64.whl (992.4 kB view details)

Uploaded CPython 2.7mWindows x86-64

psycopg2-2.7.7-cp27-cp27m-win32.whl (862.2 kB view details)

Uploaded CPython 2.7mWindows x86

psycopg2-2.7.7-cp27-cp27m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 2.7m

psycopg2-2.7.7-cp27-cp27m-manylinux1_i686.whl (2.4 MB view details)

Uploaded CPython 2.7m

psycopg2-2.7.7-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl (1.5 MB view details)

Uploaded CPython 2.7mmacOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.6+ Intel (x86-64, i386)macOS 10.9+ Intel (x86-64, i386)macOS 10.9+ x86-64

File details

Details for the file psycopg2-2.7.7.tar.gz.

File metadata

  • Download URL: psycopg2-2.7.7.tar.gz
  • Upload date:
  • Size: 427.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7.tar.gz
Algorithm Hash digest
SHA256 f4526d078aedd5187d0508aa5f9a01eae6a48a470ed678406da94b4cd6524b7e
MD5 598e2f43c1b26361ae2d3a3254dae414
BLAKE2b-256 6354c039eb0f46f9a9406b59a638415c2012ad7be9b4b97bfddb1f48c280df3a

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 998.5 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f1fb5a8427af099beb7f65093cbdb52e021b8e6dbdfaf020402a623f4181baf5
MD5 f6dc9b386f68b7cb32ce7bb636fc2537
BLAKE2b-256 4030b336d6ac72f91234cd6e2ec12e87c4a2d940112eda994a3f103faae26c15

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp37-cp37m-win32.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 855.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 b4221957ceccf14b2abdabef42d806e791350be10e21b260d7c9ce49012cc19e
MD5 c5cf24e9f214a0fbdca0cd377134ce88
BLAKE2b-256 ef1e285988e6a81ef6f001ce1ce0a523baa85c1c75a97c21a395a2bfa27a1605

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 de7bb043d1adaaf46e38d47e7a5f703bb3dab01376111e522b07d25e1a79c1e1
MD5 ac467b457304857e5cf33116f2d8cddd
BLAKE2b-256 0cbae521b9dfae78dc88d3e88be99c8d6f8737a69b65114c5e4979ca1209c99f

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 259a8324e109d4922b0fcd046e223e289830e2568d6f4132a3702439e5fd532b
MD5 be91d1bf8d9f160aac9678c7d250f86d
BLAKE2b-256 2c311ad19729ec5ec6ce1f9347fdd2f422934f097af19545ee6196353bed369a

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2-2.7.7-cp37-cp37m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 f153f71c3164665d269a5d03c7fa76ba675c7a8de9dc09a4e2c2cdc9936a7b41
MD5 6aa788a2360d258e95707ad449c0d8da
BLAKE2b-256 afb3de7bf74e7692a5abd1de80d2a3a898bd4a2098630c3bf0c938318f149e5b

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 998.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e393568e288d884b94d263f2669215197840d097c7e5b0acd1a51c1ea7d1aba8
MD5 beead04ad2f275d466ec131cc6e890d1
BLAKE2b-256 55eebdf568adf30d125dfe638f16fa73675a5c588e180807eef1062adeb46eb2

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp36-cp36m-win32.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 855.2 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 a9b9c02c91b1e3ec1f1886b2d0a90a0ea07cc529cb7e6e472b556bc20ce658f3
MD5 5142cce5154b81d61140f0a8541c58a5
BLAKE2b-256 4dcca7f0e5f99a8c728fc69ce5f3af427351ba7f8a2b8d0c3283e3d40005a917

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ed7e0849337bd37d89f2c2b0216a0de863399ee5d363d31b1e5330a99044737b
MD5 51e7304a67bf9d9f204a5d5d20580346
BLAKE2b-256 372553e8398975aa3323de46a5cc2745aeb4c9db11352ca905d3a15c53b6a816

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f36b333e9f86a2fba960c72b90c34be6ca71819e300f7b1fc3d2b0f0b2c546cd
MD5 ec09caded36d47a9bd7402a113fcf3ba
BLAKE2b-256 dde99abec7778215d25cc2deeae9a8c01f80d95e6c3a993ed04209576a01b784

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2-2.7.7-cp36-cp36m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 ae88216f94728d691b945983140bf40d51a1ff6c7fe57def93949bf9339ed54a
MD5 8b6a32327dc7fe17f2e0220f796235a5
BLAKE2b-256 55942e5f88ee63329196da39f1056595b7aa78f6e321f5c832c7946522c4f080

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 998.5 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 0e9873e60f98f0c52339abf8f0339d1e22bfe5aae0bcf7aabd40c055175035ec
MD5 c12e798cba1d928f053e8a18ca172608
BLAKE2b-256 886cb04a134e983bc86e0d6cae9bc71104390a3bdbf0121990e28aa3f46b2c61

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp35-cp35m-win32.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 855.2 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 28dffa9ed4595429e61bacac41d3f9671bb613d1442ff43bcbec63d4f73ed5e8
MD5 d8c4ca2cc3efbc0660b0c42cbb3a4561
BLAKE2b-256 3776ae2febaa4473ccb3151381de5921968d0c0e251d8e8c6512ae63e1d87f06

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c669ea986190ed05fb289d0c100cc88064351f2b85177cbfd3564c4f4847d18c
MD5 59c97a76412321f8e707c52c447734e4
BLAKE2b-256 e2ed1c022748aee0d93a6c123c0739990b0ab32744314bc0752511106613b021

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b90758e49d5e6b152a460d10b92f8a6ccf318fcc0ee814dcf53f3a6fc5328789
MD5 001f737f8c5163cd0deb0685a8e9dc11
BLAKE2b-256 9c607d0411d16d7f70e572d8122f4093857bcc8ac277cb39481aa0a9b5fad098

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2-2.7.7-cp35-cp35m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 1148a5eb29073280bf9057c7fc45468592c1bb75a28f6df1591adb93c8cb63d0
MD5 c0dbaca2ba8740e5e619c18b1ba9c14a
BLAKE2b-256 73dd1f4687b9a075d0488fa34f7471bc8c1c51758f2ab43d2151dda715df69c9

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 990.4 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 97441f851d862a0c844d981cbee7ee62566c322ebb3d68f86d66aa99d483985b
MD5 ab0d2170e1756d8be4ef58362dd5eae9
BLAKE2b-256 9d067b1c872303323e8d4024c880283fe1240a79dc163b9c175d0a9439c8ac2b

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp34-cp34m-win32.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 867.4 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 9262a5ce2038570cb81b4d6413720484cb1bc52c064b2f36228d735b1f98b794
MD5 0a598c10285cf6c2a3d2557dfec10037
BLAKE2b-256 b4bb21176a4087fd0d07122775f58e0d31dd2b8af3d0e65c8390034859b8cb28

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp34-cp34m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d1b61999d15c79cf7f4f7cc9021477aef35277fc52452cf50fd13b713c84424d
MD5 120225247c43a45c39997b72e4a44529
BLAKE2b-256 bf9d94563ffbad279f49f35b137c78449b478842e81e77492139f0cff08908ba

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp34-cp34m-manylinux1_i686.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp34-cp34m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.4m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 8513b953d8f443c446aa79a4cc8a898bd415fc5e29349054f03a7d696d495542
MD5 623d913d434c26b5eca6f2c1b1d00db2
BLAKE2b-256 cdefc543661f0b545b8c1f7469ea40e11c41ec72da9e2f502b695bee297afd51

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2-2.7.7-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 314a74302d4737a3865d40ea50e430ce1543c921ba10f39d562e807cfe2edf2a
MD5 592cefa46f9eb24b4567956e18fa18bf
BLAKE2b-256 a12af2374370ac4b9c4cf19c31eb703b9bdf4a3171b59d7036fe268c50eef5ee

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp33-cp33m-win_amd64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp33-cp33m-win_amd64.whl
  • Upload date:
  • Size: 992.8 kB
  • Tags: CPython 3.3m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp33-cp33m-win_amd64.whl
Algorithm Hash digest
SHA256 b360ffd17659491f1a6ad7c928350e229c7b7bd83a2b922b6ee541245c7a776f
MD5 14ffe5651beefac63e212f6f1a2655c4
BLAKE2b-256 749e7f3e975de7a588ddbfbc33cea0525f965ad31a0a4fe6250506142187e126

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp33-cp33m-win32.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp33-cp33m-win32.whl
  • Upload date:
  • Size: 869.7 kB
  • Tags: CPython 3.3m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp33-cp33m-win32.whl
Algorithm Hash digest
SHA256 a07feade155eb8e69b54dd6774cf6acf2d936660c61d8123b8b6b1f9247b67d6
MD5 11d691a6a497a323c1f7c4904e01e273
BLAKE2b-256 f8db0ced509cc969074fb469fdeca3801e494c1e8d80f98d482b7c47b5b06d22

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6ca703ccdf734e886a1cf53eb702261110f6a8b0ed74bcad15f1399f74d3f189
MD5 05b689a38a9bf9d189b57916019e8818
BLAKE2b-256 51897490c48abf2ea89b65140c3c77023f7ea623031389a8e0cd0788c1625b06

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a0e0f1e74edb0ab57d89680e59e7bfefad2bfbdf7c80eb38304d897d43674bb
MD5 ce3786156ae388aca07e6a505fac8a94
BLAKE2b-256 711f0fbc4586af279307a2d64381f33ed8df60b48aec6df07bd4e71e174629aa

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 992.4 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 02445ebbb3a11a3fe8202c413d5e6faf38bb75b4e336203ee144ca2c46529f94
MD5 a47f6fe6c345b4be9755b50649f0c622
BLAKE2b-256 2bff13765546d50e17963570bc0e7e3ebf4bad44d18810d00ecb8e125bdfdd5b

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp27-cp27m-win32.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 862.2 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 6757a6d2fc58f7d8f5d471ad180a0bd7b4dd3c7d681f051504fbea7ae29c8d6f
MD5 92f7c7f47c45d8f56bde10a4cffb4031
BLAKE2b-256 162a4bce365a50d8593eba4cb1962d0019b04d1c29a60e5b3201c9946d2419cb

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 3f9d532bce54c4234161176ff3b8688ff337575ca441ea27597e112dfcd0ee0c
MD5 a937d10f8039fb87ae5c4634df0902ec
BLAKE2b-256 b18c128c4f933caa12bdb91b5cb2e1244825b8e2f6575640261e556bbf2921a7

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: psycopg2-2.7.7-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/2.7.15rc1

File hashes

Hashes for psycopg2-2.7.7-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 36b60201b6d215d7658a71493fdf6bd5e60ad9a0cffed39906627ff9f4f3afd3
MD5 b18acac79f281522bbcdf9b430a9ee99
BLAKE2b-256 eb76c55b861902e49692f0f2b6482dd86abd0c8e6e32a538d4de31249f163282

See more details on using hashes here.

File details

Details for the file psycopg2-2.7.7-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl.

File metadata

File hashes

Hashes for psycopg2-2.7.7-cp27-cp27m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl
Algorithm Hash digest
SHA256 5d222983847b40af989ad96c07fc3f07e47925e463baa5de716be8f805b41d9b
MD5 a7f3bdd5df3acb6ae9bebe7bdee7c93a
BLAKE2b-256 c2a0ba2c28c13bce130f971158da8fc03c231ce7778a89935eb1c3e3e6437e7c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page