Skip to main content

New level of functionality and performance in data access via Python

Project description

Python Connector for MySQL

Python Connector for MySQL is a connectivity solution for accessing MySQL 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 MySQL 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 MySQL 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 MySQL database, import the connector and use the connect() method with your connection parameters.

Import the connector

First, import the MySQL connector module:

import devart.mysql as mysql

Establish a connection

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

my_connection = mysql.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 MySQL, you can execute SQL queries to retrieve data from your MySQL 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/mysql/ordering.html

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

What's new

Python Connector for MySQL 1.3

  • Added support for Python 3.14
  • Added support for MySQL 9
  • Added support for MariaDB 12
  • Added support for the UUID data type in MariaDB 10.7 and later
  • Added support for the INET4 and INET6 data types in MariaDB 10.10 and later
  • Added support for a password-protected private key for the SSL protocol
  • Added support for the Bearer Token authentication when using an HTTP tunnel

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_mysql_connector-1.3.0-cp314-cp314-win_amd64.whl (996.1 kB view details)

Uploaded CPython 3.14Windows x86-64

devart_mysql_connector-1.3.0-cp314-cp314-win32.whl (848.3 kB view details)

Uploaded CPython 3.14Windows x86

devart_mysql_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.34+ x86-64

devart_mysql_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl (4.0 MB view details)

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

devart_mysql_connector-1.3.0-cp313-cp313-win_amd64.whl (993.8 kB view details)

Uploaded CPython 3.13Windows x86-64

devart_mysql_connector-1.3.0-cp313-cp313-win32.whl (847.3 kB view details)

Uploaded CPython 3.13Windows x86

devart_mysql_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.34+ x86-64

devart_mysql_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl (4.0 MB view details)

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

devart_mysql_connector-1.3.0-cp312-cp312-win_amd64.whl (993.8 kB view details)

Uploaded CPython 3.12Windows x86-64

devart_mysql_connector-1.3.0-cp312-cp312-win32.whl (847.3 kB view details)

Uploaded CPython 3.12Windows x86

devart_mysql_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.34+ x86-64

devart_mysql_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl (4.0 MB view details)

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

devart_mysql_connector-1.3.0-cp311-cp311-win_amd64.whl (993.8 kB view details)

Uploaded CPython 3.11Windows x86-64

devart_mysql_connector-1.3.0-cp311-cp311-win32.whl (847.3 kB view details)

Uploaded CPython 3.11Windows x86

devart_mysql_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.34+ x86-64

devart_mysql_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl (4.0 MB view details)

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

devart_mysql_connector-1.3.0-cp310-cp310-win_amd64.whl (993.2 kB view details)

Uploaded CPython 3.10Windows x86-64

devart_mysql_connector-1.3.0-cp310-cp310-win32.whl (847.4 kB view details)

Uploaded CPython 3.10Windows x86

devart_mysql_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.34+ x86-64

devart_mysql_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl (4.0 MB view details)

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

devart_mysql_connector-1.3.0-cp39-cp39-win_amd64.whl (993.8 kB view details)

Uploaded CPython 3.9Windows x86-64

devart_mysql_connector-1.3.0-cp39-cp39-win32.whl (847.3 kB view details)

Uploaded CPython 3.9Windows x86

devart_mysql_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.34+ x86-64

devart_mysql_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl (4.0 MB view details)

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

devart_mysql_connector-1.3.0-cp38-cp38-win_amd64.whl (994.2 kB view details)

Uploaded CPython 3.8Windows x86-64

devart_mysql_connector-1.3.0-cp38-cp38-win32.whl (847.4 kB view details)

Uploaded CPython 3.8Windows x86

devart_mysql_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.34+ x86-64

devart_mysql_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl (4.0 MB view details)

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

devart_mysql_connector-1.3.0-cp37-cp37m-win_amd64.whl (994.2 kB view details)

Uploaded CPython 3.7mWindows x86-64

devart_mysql_connector-1.3.0-cp37-cp37m-win32.whl (847.4 kB view details)

Uploaded CPython 3.7mWindows x86

devart_mysql_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.34+ x86-64

devart_mysql_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a5cc6eb0706f5128286bff6dd7f1c7c2a7a2a07c65eb773e0b61103dd85b83bf
MD5 f9a219252ca147f376fc95f62d1af31b
BLAKE2b-256 c79c3ae792701aa90a1619fca1c9aae4f98cdbf013eb97f7fa9363b1305c1c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 539c17840acb3d9b3ba8b0fb965fc5d1e53da6722e87117003e276057b7b3eb3
MD5 4f6008e22912d4f966c9169364133315
BLAKE2b-256 2c248318d357ee469e87e7b805df5e48a59444e28aa6eed25c728a29909ae534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp314-cp314-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 08ff555543299028a2b6a9d49eee60804aac92d73effbd3bc4617581c220ddce
MD5 3bed74453c6c49bd47098a713ddb6d5c
BLAKE2b-256 892a6fecda00038c6c22b0ed93ddc9fcf3c22b56e1014cc3563d02672f3be262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp314-cp314-macosx_10_15_universal2.whl
Algorithm Hash digest
SHA256 2912e4ae5b9a6d1499b7bdb23b0c920f2184ad8df00e169e3984f61ac17b5ac6
MD5 3888b9d99c73191d7fe51cd3e2aad545
BLAKE2b-256 28089ca70fa22c2eabe76bc9c35d0c2114bc7fb52137f77ec25491308074d240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 45cc8c2914c2982f6546c45965b483997a54b2c1b8ef44e322a3b271411d1b77
MD5 a52bab3ce9af1ca71f317415edef9faa
BLAKE2b-256 49dc916460dd75020f8b403604a227f26a18d6fbb5353009e4072eeb28586f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3c26aa6e99d1a9ade105ebb4e97bb95e310c324bb4de657cc3eb27d20e369180
MD5 0aa86602caef95a6aefa82b3fc1dde99
BLAKE2b-256 8c9512a4e8713b68bd50e1cb1f46865f2e3fbf54ee5910cf796e69d5d8365a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp313-cp313-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 5c65fa1ce3b94690227e9834cd7b24d9300ec2a49cbfeb54694f3f07eb41099b
MD5 999b2a5359fd381cbf175a95ecc9c788
BLAKE2b-256 0244f2a05078e74d3deb0cff10abb133783b10fbe67d884268bdb38584ad6471

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 3a92c248feee17e520ba4df5b8460739949920ebf0249e47d06e83c1c2be7ff6
MD5 9c3a777af6b3c088c0d52f800d202e7b
BLAKE2b-256 5ecddfd21c5da90fad160f3fb3c4c3f6f273bbe6f042a0e1cf4d530c9a8856d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a7f329fccf6b5c02a0b5d2e7fedbade3027c7224206150a441e1f738dc0c8f59
MD5 aca41209a8c96f9ae9e8eb0968357b02
BLAKE2b-256 f42037ef46dba2c15b4bf4473a36bca11b1c4e6a04683944e368ed38086bd2be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 592c70a21a02b60579b9af06fd722838ba61a171286cdf797f4d84a055fe9da7
MD5 717b64c5522b66d418f4ec00b79caec2
BLAKE2b-256 653de81295fa375891979e57aaa43366f398c838295be300b13164e82e83beae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 f33267a40235a37b2449d14eeb621e910f2536b894ec8008562a8b7a0f5a4c6f
MD5 5f4a313e9bf1c0c12917336a13801de2
BLAKE2b-256 1a14c4a30e0f191e04b5bba3815d3ec33e04985f61749079c6a6152d9b64988c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4d523ac4bfbd23599c925a8d2e031d355ede75234efcf5eed4acfb3e8295ef5a
MD5 a5fee7443d93e923845a5d1f143a8d81
BLAKE2b-256 d4a7c658c2e68699e7b694ff116afd6427906fcfc0b6bc7708d36c55b6b0f1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2bbd910c4268938582489dd6571b2e5cebba47fdad16d183aa6c93c029ff792c
MD5 ca1199a5027a91381c0b2271a7f71a79
BLAKE2b-256 4abbcdf812a9c0017c09c40738a2c309342232498c33c5550b207051aa6ab19a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 280863575d6a2b8512e86ca37b1e37325f7402c4edda013e800499dd38a48644
MD5 371f12a8abce2adc85ef3133b8448d9f
BLAKE2b-256 9b4ae71d24f9851c3229cae0cffbc9f04f3d8b6290140bb4cfe96c251ddf483a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 26f39967e1137aeb21e95f34cc2083be379efb1165a5f7e8544c0aed7734db57
MD5 0b8f394eb18e1a6735f756cd3da67b21
BLAKE2b-256 020d47439c7f6aa2c05b270ff0e5dd0f0593856698eec7caccbe19c10bdbeed1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6f221ea261ec3c3e1a9ffee9decd145fd9f93d9f674f9cc1e42891970848a2b1
MD5 0cef65b52c6cece197d5c25810df7e34
BLAKE2b-256 6c6f02cf17bcef97e0778ff8c48373c9a2b2f1ff95577f840e1c57a4546ca4ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c04ecc4abaa6c4deffddfb56534f95fab6f68eb47eaa6d86439e23b3b5c35db5
MD5 18806f3578ece0800ad264ec56dc9a7b
BLAKE2b-256 1621c51f2516bfc185e21633e9e2201066fd2a8671e8390262e8057d6a2fd960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 52e8cc944343bea814ceaebedaf3f1638c46339d3f2d6e6008d91b460bfc93f8
MD5 c20102279d7575b22cc6f09608db3325
BLAKE2b-256 a09980c3b851ee26473f1a4f8d0ff49c16f035b626348509cafb998c87d1178b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 fda3b876bcfa8f28f7deb08b4a52115d51041c0e0f5de83d15092e2f8c4f0543
MD5 429d4a66346b8c93bf92fd5a1f2e094a
BLAKE2b-256 22e72ebb20dc491545ea897c79ebe50e5ef7c463a342a242d382df743bace5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 290cf3a9359af675be6d758910af1f05ed5d2e033a9baf4e127d2d4a25555338
MD5 f776e2c2406b97e0d69a6bda1df7cfe3
BLAKE2b-256 b9b7085091c3c372d0f127efe558b6e12c490448b7e7410d81b5e17bed6596f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 13c3ed54aa03591cc3e4f676aac3a1ef0849ae8d441938bf653b72d71bc99eeb
MD5 dbe960415b9f0aff7853e108cd1b4ff8
BLAKE2b-256 b61a0391e22f10e057e60aaf63698ada700b56121c6207525e1c3d5d9faf994a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7184739849bccfeacb5616ebc6dd1253d48a10bef0f120affebfd9b5bbfe17ac
MD5 4d69a205f66515f9aefc16cb3b8cadda
BLAKE2b-256 11a43abf48d507bae7b644201e87b6474112f84735bb94ef401b91080ed76552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 8ac6a0765e06df244e6d3cb65dce6f3f11fb8e0372b7747400e7985c4937e446
MD5 dc55f64dc9550f7d37b140fa5a4c2f96
BLAKE2b-256 ca4ea05973a804a13c0e32c93661e9fada6c2f68d4e32b4058079b14915e1f4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 d9dcd6a5b90763bf17cd6ab9c87dadc6ac11c6cb4f1705532ae47e757ad27a54
MD5 7cc51f9c58b651a285f5ad08f1ab2e13
BLAKE2b-256 c89572f98dc7bf0a2aeb6b2315517660d1f51069e7c52eae67c6c3ed92a05354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d1b223a48610fe95aeb7fdc9a01485b191c6aed1ece51a9760b2a09ebfd12cdb
MD5 aac520dbb6dbe1bb78cf48872162100c
BLAKE2b-256 f663c8ce8fa9d97cca8c6a7ebac272c22e02be91c7e9c10a1d653350b865d1ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d5f57c6f16145c7f7c103b7331119b759f8b756ffe79991ac5204e529482ac18
MD5 467b84491a7093ecd2dd957b74c96d9c
BLAKE2b-256 e29a2e6e1bf9c3bab4e5a39d02733f68758a0bc1c1627123efe07cbc54e09bb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp38-cp38-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 9e00febad91dc35692a6f814c66b853db847aad8fecc086dd04aa768f01a419c
MD5 aa9997180a312454df06571b3f610ef6
BLAKE2b-256 0956d4361034c31e94014f6676560a6cd71db671677cbce089b1fb4d73d9485a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a85024938bfdc754af58cd700a978b54077da5ed4146b2505ece8e34d5f565a7
MD5 113e7a2007ce186795bfa61894548027
BLAKE2b-256 2d66ccf00654759e4f88403d674a86ec3388fa24818afac09cc3c0f408b73ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 122cad8aa8db385bc395cfbbf66ddccebc7bde6bdbda222410f3835b194d6a01
MD5 28b06acfa805e7c39ca0b8defc579547
BLAKE2b-256 a6aed41bfa775e6b03dbd2c6414b2b4ff788a75c0eeb42854c28d0ed821f74bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 13ac46e6e72e304e62ab8fe77cb8cd1b622e38043e5ffaedc92cc82f75a631bc
MD5 b40e1b1b268ba90e3b97fdeb4682b29b
BLAKE2b-256 57955575e20fc9684fb192733a1e2e197474bafe3081552db0d5c317a593dfb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp37-cp37m-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 ddf5cc2d4e5d0425c470958663d0a28c20fbc04aa18fe20ca8f8243bfa0ede5f
MD5 7fa73b5a0b9bf671c5323602bd17333d
BLAKE2b-256 db002c5e4fa11f601b3f587575ae843ec7388b16dea4134b064d0d860233ae84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for devart_mysql_connector-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6bcbab30fe872a93b11f4929222a52795b087bc11fa75a7448840eba8eab1593
MD5 84166ea571f2f6d67f509e23347e4682
BLAKE2b-256 952a5e7c8d0d00df6cf6d5c15e726c7e3d9d331789e488f7f8d976d3b7be1667

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