Skip to main content

New level of functionality and performance in data access via Python

Project description

Python Connector for PostgreSQL

Python Connector for PostgreSQL is a connectivity solution for accessing PostgreSQL databases from Python applications. It fully implements the Python DB API 2.0 specification. The connector is distributed as a wheel package for Windows, macOS, and Linux.

Direct connection

The connector enables you to establish a direct connection to PostgreSQL from a Python application via TCP/IP, eliminating the need for the database client library. A direct connection increases the speed of data transmission between the application and PostgreSQL database server. It also streamlines the deployment process since you don't have to distribute any client libraries with the application.

Secure communication

Connecting

To establish a connection to a PostgreSQL database, import the connector and use the connect() method with your connection parameters.

Import the connector

First, import the PostgreSQL connector module:

import devart.postgresql as postgresql

Establish a connection

Call the connect() method and obtain a connection object.

my_connection = postgresql.connect(
    Server="your_server",    Database="your_database",    UserId="your_username",    Password="your_password"
)

Replace the example values with your actual connection values.

Querying data

Once connected to PostgreSQL, you can execute SQL queries to retrieve data from your PostgreSQL database.

Execute a query

Create a cursor object using the cursor() connection method.

my_cursor = my_connection.cursor()

Execute a SQL query using the execute() cursor method.

my_cursor.execute("SELECT * FROM employees")

Retrieve results using one of the fetch*() methods.

for row in my_cursor.fetchall(): 
    print(row)

Parameterized queries

You can use parameterized queries to pass variable values to your SQL statements. This allows you to reuse the same query with different data and helps to prevent SQL injection attacks.

Pass parameters as a list or tuple to the execute() method:

query = "SELECT Id, Name FROM Contact WHERE Name = ? AND Email = ?"
params = ["Jordan Sanders", "jordansanders@example.com"]
my_cursor.execute(query, params)
results = my_cursor.fetchall()
for row in results:
    print(row)

Each placeholder ? in the query is replaced with a corresponding value from the parameter list.

Ordering and activating the license

You can purchase a license for the connector on the ordering page:
https://www.devart.com/python/postgresql/ordering.html

To activate the license, follow the instructions in the documentation:
https://docs.devart.com/python/postgresql/activate-a-license.htm

What's new

Python Connector for PostgreSQL 1.3

  • Added support for Python 3.14
  • Added support for PostgreSQL 18
  • Added support for the Bearer Token authentication when using an HTTP tunnel
  • Added support for password-protected private keys for the SSL protocol
  • Added support for the COPY ... TO STDOUT statement
  • Improved support for array data types
  • Improved performance in opening a connection

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

devart_postgresql_connector-1.3.0-cp314-cp314-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.14Windows x86-64

devart_postgresql_connector-1.3.0-cp314-cp314-win32.whl (914.4 kB view details)

Uploaded CPython 3.14Windows x86

devart_postgresql_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

devart_postgresql_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl (4.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ universal2 (ARM64, x86-64)

devart_postgresql_connector-1.3.0-cp313-cp313-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.13Windows x86-64

devart_postgresql_connector-1.3.0-cp313-cp313-win32.whl (913.3 kB view details)

Uploaded CPython 3.13Windows x86

devart_postgresql_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

devart_postgresql_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl (4.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

devart_postgresql_connector-1.3.0-cp312-cp312-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.12Windows x86-64

devart_postgresql_connector-1.3.0-cp312-cp312-win32.whl (913.3 kB view details)

Uploaded CPython 3.12Windows x86

devart_postgresql_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

devart_postgresql_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl (4.2 MB view details)

Uploaded CPython 3.12macOS 10.9+ universal2 (ARM64, x86-64)

devart_postgresql_connector-1.3.0-cp311-cp311-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

devart_postgresql_connector-1.3.0-cp311-cp311-win32.whl (913.3 kB view details)

Uploaded CPython 3.11Windows x86

devart_postgresql_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

devart_postgresql_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl (4.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

devart_postgresql_connector-1.3.0-cp310-cp310-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

devart_postgresql_connector-1.3.0-cp310-cp310-win32.whl (913.4 kB view details)

Uploaded CPython 3.10Windows x86

devart_postgresql_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

devart_postgresql_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl (4.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

devart_postgresql_connector-1.3.0-cp39-cp39-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

devart_postgresql_connector-1.3.0-cp39-cp39-win32.whl (913.5 kB view details)

Uploaded CPython 3.9Windows x86

devart_postgresql_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

devart_postgresql_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl (4.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

devart_postgresql_connector-1.3.0-cp38-cp38-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

devart_postgresql_connector-1.3.0-cp38-cp38-win32.whl (913.3 kB view details)

Uploaded CPython 3.8Windows x86

devart_postgresql_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ x86-64

devart_postgresql_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl (4.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

devart_postgresql_connector-1.3.0-cp37-cp37m-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7mWindows x86-64

devart_postgresql_connector-1.3.0-cp37-cp37m-win32.whl (913.3 kB view details)

Uploaded CPython 3.7mWindows x86

devart_postgresql_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.34+ x86-64

devart_postgresql_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

Details for the file devart_postgresql_connector-1.3.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ef9c14d177d6a57390dd2210cb7b4ad09361e096aed703ab1870e657caf3d6a7
MD5 80747315ea5d5b9acc4579c63bb80591
BLAKE2b-256 91158a86e5d58c3c535b48b4a79fba168bdb56767bcca0291f4f8ee46662db5c

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f73c89c9d1f596acd38918ab98e7f09522bc482258ded21a157b9a69feddf313
MD5 15e5df39f743c20dbe979d9a2eab7e5f
BLAKE2b-256 350bb3ca2c60185589f204da1f8bb717a2b5abecdc718086a4cc2addb3f928e1

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 76d8c15c8e9b0d1675f1187e12a26d2abbf6be8b1af51a3d78de8feb95bd229b
MD5 0f0461244585a16f47e7e5596dee9765
BLAKE2b-256 b5cfdb05a9f88e956bae75467a6b927fbf363b1545a0358d655a53d6e412bbcb

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 d5cadddd6c111be57944f48ca1706e587ab686a67b0cb328819906ecdc58b2a4
MD5 7b3a8a5432dd4a833a3632be45314b15
BLAKE2b-256 5b70c459f8bd9ae443fcdad19e5c758f089572815ea163ed50efef72618dabec

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 34b68a11997417eb7b2e910d55a5a2926d4bb22197b0c33e32d3a36bd916fbfa
MD5 e8984a5046d8a878696652a990edcb90
BLAKE2b-256 125c541c0bb6590ee024976c15d42f391593c3d01538938ac8bdd74c7bcee4ae

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1c8811de3ae41c9cc8b73f0b4e0b01a6610bea774275a14485450a82b2450424
MD5 c40169c717bee80d34e802ee833da7cf
BLAKE2b-256 994a431be30fa949033e2745bbf43f3fdc72d56ccc36a746ef21f4fa3d8e71cb

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 2d7d0a377d85a281ffa60bb99a5f6b6b3fd6f92b7d96dfaea807be1e643ad6cc
MD5 bfddf7393f7d67cc8097b685601be283
BLAKE2b-256 3cf2b57310359ace4ee255213c2df5d9837d5ca4233d8b61e404d6d3c34f0722

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 fcdd8846f4c725fd51db6095daf181f31e0426c28e02244f6592fd99ffcaff49
MD5 e85d529fa4192da2497705680bb08073
BLAKE2b-256 c9653d7a993bb6f88fb109e5cbd259404c9b55b8b13c6dc55704f812e978d976

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3a3d69197cd663aabdb68fd21067a6446af67f7e2406b86ff744f74c962e8ad3
MD5 ee1ce2e2072293a240f6bfaab75566f5
BLAKE2b-256 9ff58026c60afd7e3e31498f71b8bd593b36498944ffa523c65863676097912a

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 debff8051be757ca82b29beb987284373739eb2f1c5550e6b4ab9c235057c6de
MD5 9db6924dff39331fe2fcd178120bf937
BLAKE2b-256 769e6d18353c30d9298bff40db222e9bb2cb98b2edcc8943afdbdc83300294ae

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 dd3db54c0ec544fe801a1b5d690ad21ed371b4b6c4d7199f02e5fab0d49f7b82
MD5 fd88c2724164fd65d9deb57bc8ebc4bb
BLAKE2b-256 c9249bb15f247fae0af1a55155804166dcbcce3405206a9c1a6c693be1ee53b7

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9d8eae132f91f64c58662f85d8c82b3a6b249c4e18b4d255552d618f4500ea2d
MD5 79b54f190bea3d81f1305dd894704ad9
BLAKE2b-256 86497b19ae5078ca4c095ecaa742cc33acb2092a3cbbdf09d20bda2a7b6f0a10

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 041599177efcaaa745423247486fcdcc374a25c74835adada2082efd496ab8bc
MD5 aa0ad348db4305760671b52b88b2c643
BLAKE2b-256 c51ea1b9b0eabe5c1df70b96170649de8bd14a39a78396543df676ee0385da84

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fc0575b43539ff9c29e2d596cb9911d579d58e1f46021820cf65ce6f9d1e8ccd
MD5 851f98172540e0839f4e5a1f7801bc48
BLAKE2b-256 04edb109f6c5d4b3de4ba99865f9ee8d4b7329db8990786f372fadaceeca5e6a

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 8830b36f72b7160e4b98c88bb45f09821399ca0a5e99334bce45e09ce7a3b217
MD5 cf1dde573a7566c0a846396caf5f524c
BLAKE2b-256 dbbc48b65e738796b1cd1c3beeccaed52d521abf219f8d57e1ac296930c9db9b

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9d7edfc6c2619f5f22d372868cdcc809f0d4324dc697643bd46ef1da86d12ad9
MD5 fbd6b89fbde63adfd9c25f91bcec7e18
BLAKE2b-256 1de8f43c3255f594fdbe2bf62e42b1930a5cd7f56b268e0734f73eca9599c536

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dfe2d6d5e14a2ae7c864b256a54a445f8988306cf89d4252a5edbeae47819c51
MD5 a668bfa408fcdaa41a0735d30d3111e1
BLAKE2b-256 1a399945eaca98a7150964a0e7bf6d13aab630196871eb05e2bebe44a93475b0

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ad9318e7460cb9bc9f8dccd985cc214581814af5e427e55f0993d0e19bfa88fd
MD5 9b55e52ec4ce4672d11d133fcd9375ad
BLAKE2b-256 08ddc7df181767a0741aa71ed71c1e471a5fd47a1ae24345b255bc2060dedd4f

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 4d8b661276686441ce1db5fcdeacbea3144f4ddadb5fc9093e793b60eab2ba90
MD5 4eb33495e0ca031fb8f78b75f7658c18
BLAKE2b-256 541bdf235de7694f132a491bd96e284ae7f4bbdcb26a5ca074626d9310335bcd

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 452489606d709bcd723498394ceaa9ea9d7f2e4f0eb4e9e2236f73fbdd8c2217
MD5 bdd24482c191323ea45d8e27bffaf108
BLAKE2b-256 c23bd59213cb76f7e3182674d652676fe279f288deb33e9972bee3a7894a614f

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8e207d0b65e20ae3915d921632b87515584695181e1eb81a9c3a9cfe47e7fcc2
MD5 b5be572ccd58ba2738824387ff019755
BLAKE2b-256 41ae73106524fb3e653e5b1701d2c3290214fe3b31f6ffadd70d545265f64c0d

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7b4c8249c5391c03bcbde18d64655ac25ef1a87978416b2c4ffe5aa3e2616018
MD5 c71d800bd169fa4c8118712a23477f4e
BLAKE2b-256 28337e54c19dc8f3924ff03ed51ecebb2ac008f0b7354bd2e8eccf91a68b0114

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 db79b8552e84cb4a5cf424f2eadd40769ef28e64efe32b8fda1e78414528515b
MD5 b4d322422950d0527210116baa61549a
BLAKE2b-256 d383e7083f5d9bb9bef3faccea16f33337c0c13050a296b9f5258ca4148eb8c7

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 44586be28bcd6b8e51db418abd96c944718d2a391bfd9842a0535e00eaaf90b3
MD5 6c2cd8978adec4854842f896937576da
BLAKE2b-256 e2e34ec0b249b2d76f12ec13716b321aa88cbd14f132cb62096326d85bedd4dd

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ad8856514e27477d373f11d45c84c126b970f117a1b4a403034614e30cfc8fb6
MD5 2aba6687b738877cf1f62f1e6f88760e
BLAKE2b-256 651fcbda6156e47d4b144b02aa92c58e6b4830c58fe80e1434eba2cbf2ec60fb

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp38-cp38-win32.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f630d4ce66b6fe0e5abe4624ea08b9eb0a610fd9de71f185bae6018cd6c21f5b
MD5 53d03c9ffedc9d5ad419823d7cc49dc8
BLAKE2b-256 1b1b35899216aec54172f6aa9b1c8b503c7c532bba9c8695be5f5abcfc652e69

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 536ddb73348396b6696231a6f9fb2a48c1fba0bd59610a571a6480344d978e47
MD5 c1502792c3258de9f5e6f87ccdb9c62a
BLAKE2b-256 f4adaf96fd5d65bd067989267bb87aa721330341cff4064f75f6afdd158a27a3

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 883c26135af1d4dbfa9954b83b6b938d1c865d521a23914dc63b4f5a2441c552
MD5 db56057fc8b3f1f6c0f04aff057e4532
BLAKE2b-256 6807b2c6b586fa1acc3bb8c9d45539a1f1e21d8756f90dd2d49d54281f0866e6

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp37-cp37m-win_amd64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 7a5bdf51447e3d163dab34b23ea0d3fef1b577608fe4524ec31e851fd3841b8b
MD5 fdab3fc9fd5895867aac1cd042f2e266
BLAKE2b-256 5c04ca595c05fcb5c8314e053e503c5f1e9cb3ddefb749725459e21a417718f7

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp37-cp37m-win32.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c19ff57f5e990fabfbc8dd32aaeb5641b159554d3d3e34098afa4771163d5429
MD5 d7d96d855fc161754c00a9e69764af89
BLAKE2b-256 86a192f5937b44b78a30a5c824e9edb9e8a56eb0771271c2f17429b9aa43243d

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1863152c890d2ceb1d98a7b2afc2b2134e080063f5305b637879a5bc82efb737
MD5 9709022276694069c3bc375bf217c480
BLAKE2b-256 a22a9db29fb90cca378323969ab4c31bff9fc190e5d829b4557aaa7fd4826962

See more details on using hashes here.

File details

Details for the file devart_postgresql_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for devart_postgresql_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f70e8181b1d863705fd91921a15f8c6ff7ee741e2784900c4d775d1de2b43e5a
MD5 172d717a6bdeffa60ec63deabec56329
BLAKE2b-256 c4319c9995ba74186db93dff93354e50112d337b9cd3dc43785868125abd7bdd

See more details on using hashes here.

Supported by

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