MySQL Connector/ODBC Driver
You can get the latest stable release from the MySQL downloads.
For detailed information please visit the official MySQL Connector/ODBC documentation.
Source packages are available from our github releases page.
Licensing
Please refer to files README and LICENSE, available in this repository, and Legal Notices in documentation for further details.
Download & Install
MySQL Connector/ODBC can be installed from pre-compiled packages that can be downloaded from the MySQL downloads page.
The process of installing of Connector/ODBC from a binary distribution is described in MySQL online manuals
Building from sources
MySQL Connector/ODBC can be installed from the source. Please select the relevant platform in MySQL online manuals
GitHub Repository
This repository contains the MySQL Connector/ODBC source code as per latest released version. You should expect to see the same contents here and within the latest released Connector/ODBC package.
Usage Scenarios
The MySQL Connector/ODBC can be used in a variety of programming languages and applications.
The most popular of them are:
- C and C++ programming using ODBC API
- C++ programming using ADODB objects
- Visual Basic programming using ADODB objects
- Java through JDBC/ODBC bridge
- .NET platform with ADO.NET/ODBC bridge
- PHP, Perl, Python, Ruby, Erlang.
- Office applications through linked tables and Visual Basic integration
- Multitude of other applications supporting ODBC
Documentation
- MySQL
- Connector ODBC Developer Guide
- ODBC API Reference MSDN
Questions/Bug Reports
- Discussion Forum
- Slack
- Bugs
Contributing
Please see our guidelines for contributing to the driver.
-
README
-
Frameworks
-
Dependencies
-
Used By
-
Versions
-
Release Notes
About
MySqlConnector is an ADO.NET data provider for MySQL, MariaDB, Amazon Aurora, Azure Database for MySQL and other MySQL-compatible databases.
More documentation is available at the MySqlConnector website.
How to Use
// set these values correctly for your database server
var builder = new MySqlConnectionStringBuilder
{
Server = "your-server",
UserID = "database-user",
Password = "P@ssw0rd!",
Database = "database-name",
};
// open a connection asynchronously
using var connection = new MySqlConnection(builder.ConnectionString);
await connection.OpenAsync();
// create a DB command and set the SQL statement with parameters
using var command = connection.CreateCommand();
command.CommandText = @"SELECT * FROM orders WHERE order_id = @OrderId;";
command.Parameters.AddWithValue("@OrderId", orderId);
// execute the command and read the results
using var reader = await command.ExecuteReaderAsync();
while (reader.Read())
{
var id = reader.GetInt32("order_id");
var date = reader.GetDateTime("order_date");
// ...
}
Key Features
- Full support for async I/O
- High performance
- Supports .NET Framework, .NET Core, and .NET 5.0+
Main Types
The main types provided by this library are:
MySqlConnection
(implementation ofDbConnection
)MySqlCommand
(implementation ofDbCommand
)MySqlDataReader
(implementation ofDbDataReader
)MySqlBulkCopy
MySqlBulkLoader
MySqlConnectionStringBuilder
MySqlConnectorFactory
MySqlDataAdapter
MySqlException
MySqlTransaction
(implementation ofDbTransaction
)
- Entity Framework Core: Pomelo.EntityFrameworkCore.MySql
- Logging: log4net, Microsoft.Extensions.Logging, NLog, Serilog
Feedback
MySqlConnector is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.
Product | Versions |
---|---|
.NET |
net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core |
netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard |
netstandard2.0 netstandard2.1 |
.NET Framework |
net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen |
tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETCoreApp 3.1
-
System.Diagnostics.DiagnosticSource
(>= 6.0.0)
-
System.Diagnostics.DiagnosticSource
-
.NETFramework 4.6.1
-
System.Buffers
(>= 4.5.1) -
System.Diagnostics.DiagnosticSource
(>= 6.0.0) -
System.Memory
(>= 4.5.5) -
System.Threading.Tasks.Extensions
(>= 4.5.4)
-
System.Buffers
-
.NETFramework 4.7.1
-
System.Buffers
(>= 4.5.1) -
System.Diagnostics.DiagnosticSource
(>= 6.0.0) -
System.Memory
(>= 4.5.5) -
System.Threading.Tasks.Extensions
(>= 4.5.4)
-
System.Buffers
-
.NETStandard 2.0
-
System.Buffers
(>= 4.5.1) -
System.Diagnostics.DiagnosticSource
(>= 6.0.0) -
System.Memory
(>= 4.5.5) -
System.Threading.Tasks.Extensions
(>= 4.5.4)
-
System.Buffers
-
.NETStandard 2.1
-
System.Diagnostics.DiagnosticSource
(>= 6.0.0)
-
System.Diagnostics.DiagnosticSource
-
net6.0
- No dependencies.
-
net7.0
- No dependencies.
NuGet packages (401)
Showing the top 5 NuGet packages that depend on MySqlConnector:
Package | Downloads |
---|---|
Pomelo.EntityFrameworkCore.MySql Pomelo’s MySQL database provider for Entity Framework Core. |
34.7M |
AspNetCore.HealthChecks.MySql HealthChecks.MySql is the health check package for MySQL. |
2.7M |
SqlSugarCore .Net Core .Net5 .Net6 .Net7 安装此版本, 版本说明: 5.0.3.5-Max 最低要求.Net Core 3.0+ ,5.0.0-5.0.3.4 最低要求 .Net Core 2.0+ SqlSugar ORM ,High-performance, lightweight |
2.4M |
Pomelo.EntityFrameworkCore.MySql.Design Package Description |
1.6M |
Hangfire.MySqlStorage Hangfire MySql Storage |
1.5M |
GitHub repositories (80)
Showing the top 5 popular GitHub repositories that depend on MySqlConnector:
Repository | Stars |
---|---|
dotnet/aspnetcore ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux. |
30.9K |
DapperLib/Dapper Dapper — a simple object mapper for .Net |
15.8K |
nopSolutions/nopCommerce ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart. |
7.9K |
dotnetcore/CAP Distributed transaction solution in micro-service base on eventually consistency, also an eventbus with Outbox pattern |
5.9K |
aspnet/Mvc [Archived] ASP.NET Core MVC is a model view controller framework for building dynamic web sites with clean separation of concerns, including the merged MVC, Web API, and Web Pages w/ Razor. Project moved to https://github.com/aspnet/AspNetCore |
5.7K |
Version | Downloads | Last updated | |
---|---|---|---|
2.3.0-beta.1 |
1,798 | 1/2/2023 | |
2.2.5 |
173,562 | 1/1/2023 | |
2.2.4 |
21,673 | 12/23/2022 | |
2.2.3 |
33,535 | 12/18/2022 | |
2.2.2 |
113,135 | 12/6/2022 | |
2.2.1 |
87,348 | 11/21/2022 | |
2.2.0 |
156,877 | 11/8/2022 | |
2.1.13 |
536,836 | 8/26/2022 | |
2.1.12 |
78,050 | 8/12/2022 | |
2.1.11 |
238,463 | 7/14/2022 | |
2.1.10 |
309,444 | 6/4/2022 | |
2.1.9 |
118,206 | 5/16/2022 | |
2.1.8 |
570,633 | 3/7/2022 | |
2.1.7 |
159,552 | 2/20/2022 | |
2.1.6 |
63,504 | 2/10/2022 | |
2.1.5 |
169,501 | 1/30/2022 | |
2.1.4 |
62,522 | 1/25/2022 | |
2.1.3 |
4,455 | 1/25/2022 |
|
2.1.2 |
5,967,673 | 12/23/2021 | |
2.1.1 |
7,164 | 12/21/2021 | |
2.1.0 |
578,670 | 11/28/2021 | |
2.0.0 |
2,122,046 | 11/9/2021 | |
1.3.14 |
546,972 | 10/20/2021 | |
1.3.13 |
1,708,644 | 10/2/2021 | |
1.3.12 |
213,050 | 9/11/2021 | |
1.3.11 |
948,375 | 7/2/2021 | |
1.3.10 |
1,641,181 | 6/16/2021 | |
1.3.9 |
389,167 | 5/27/2021 |
|
1.3.8 |
264,077 | 4/30/2021 |
|
1.3.7 |
1,347,402 | 4/24/2021 |
|
1.3.6 |
915 | 4/24/2021 |
|
1.3.5 |
5,959 | 4/23/2021 |
|
1.3.4 |
90,932 | 4/21/2021 |
|
1.3.3 |
132,133 | 4/12/2021 |
|
1.3.2 |
299,320 | 3/22/2021 |
|
1.3.1 |
141,502 | 3/11/2021 |
|
1.3.0 |
147,837 | 3/7/2021 |
|
1.2.1 |
810,416 | 12/12/2020 | |
1.2.0 |
171,103 | 11/26/2020 | |
1.1.0 |
2,025,723 | 11/10/2020 | |
1.0.1 |
1,242,445 | 8/13/2020 | |
1.0.0 |
1,018,004 | 7/11/2020 | |
0.69.10 |
1,327,603 | 10/21/2020 | |
0.69.9 |
3,350,505 | 8/20/2020 | |
0.69.8 |
113,386 | 7/20/2020 | |
0.69.7 |
2,817 | 7/16/2020 | |
0.69.6 |
141,855 | 7/7/2020 | |
0.69.5 |
61,404 | 7/1/2020 | |
0.69.4 |
24,108 | 6/25/2020 | |
0.69.3 |
148,478 | 6/16/2020 | |
0.69.2 |
13,355 | 6/12/2020 | |
0.69.1 |
6,566 | 6/10/2020 | |
0.69.0 |
13,704 | 6/8/2020 | |
0.68.1 |
2,853 | 6/8/2020 | |
0.68.0 |
1,757 | 6/6/2020 | |
0.67.0 |
41,212 | 5/30/2020 | |
0.66.0 |
334,840 | 5/7/2020 | |
0.65.0 |
21,391 | 5/3/2020 | |
0.64.2 |
17,947 | 4/28/2020 | |
0.64.1 |
21,668 | 4/26/2020 | |
0.64.0 |
43,562 | 4/18/2020 | |
0.63.2 |
196,673 | 4/9/2020 | |
0.63.1 |
253,722 | 4/4/2020 | |
0.63.0 |
41,984 | 3/26/2020 | |
0.62.0 |
199,177 | 2/29/2020 | |
0.61.0 |
6,460,006 | 11/5/2019 | |
0.60.4 |
14,579 | 11/4/2019 | |
0.60.3 |
252,556 | 10/28/2019 | |
0.60.2 |
144,743 | 10/21/2019 | |
0.60.1 |
4,052 | 10/20/2019 | |
0.60.0 |
9,399 | 10/19/2019 | |
0.59.2 |
1,415,543 | 10/4/2019 | |
0.59.1 |
13,413 | 9/30/2019 | |
0.59.0 |
19,922 | 9/25/2019 | |
0.58.0 |
50,606 | 9/24/2019 | |
0.57.0 |
3,952 | 9/23/2019 | |
0.56.0 |
1,912,917 | 5/26/2019 | |
0.55.0 |
30,903 | 5/24/2019 | |
0.54.0 |
59,914 | 5/11/2019 | |
0.53.0 |
142,917 | 4/19/2019 | |
0.52.0 |
133,985 | 4/11/2019 | |
0.51.1 |
108,858 | 3/27/2019 | |
0.51.0 |
5,863 | 3/27/2019 | |
0.50.0 |
34,803 | 3/18/2019 | |
0.49.3 |
179,039 | 1/24/2019 | |
0.49.2 |
3,833,111 | 1/16/2019 | |
0.49.0 |
5,867 | 1/12/2019 | |
0.48.2 |
112,685 | 12/12/2018 | |
0.48.1 |
5,936 | 12/10/2018 | |
0.48.0 |
14,761 | 12/8/2018 | |
0.47.1 |
2,832,079 | 11/4/2018 | |
0.47.0 |
2,741 | 11/3/2018 | |
0.46.2 |
13,802 | 10/25/2018 | |
0.46.1 |
89,360 | 10/16/2018 | |
0.46.0 |
8,352 | 10/12/2018 | |
0.45.1 |
605,217 | 9/29/2018 | |
0.45.0 |
27,944 | 9/13/2018 | |
0.44.1 |
1,174,410 | 8/24/2018 | |
0.44.0 |
6,888 | 8/21/2018 | |
0.43.0 |
119,520 | 7/27/2018 | |
0.42.3 |
45,197 | 7/6/2018 | |
0.42.2 |
82,430 | 6/30/2018 | |
0.42.1 |
888,398 | 6/16/2018 | |
0.42.0 |
15,310 | 6/9/2018 | |
0.41.0 |
3,124 | 6/8/2018 | |
0.40.4 |
667,886 | 5/19/2018 | |
0.40.3 |
62,052 | 4/26/2018 | |
0.40.2 |
21,941 | 4/19/2018 | |
0.36.0 |
40,273 | 2/16/2018 | |
0.35.0 |
51,628 | 1/21/2018 | |
0.32.0 |
793,963 | 11/24/2017 | |
0.30.0 |
81,424 | 10/31/2017 | |
0.29.4 |
23,966 | 10/31/2017 | |
0.29.2 |
59,812 | 10/26/2017 | |
0.26.5 |
19,333 | 9/22/2017 | |
0.26.4 |
289,151 | 9/13/2017 | |
0.26.3 |
2,559 | 9/13/2017 | |
0.26.2 |
43,307 | 9/7/2017 | |
0.26.1 |
25,928 | 9/3/2017 | |
0.26.0 |
30,923 | 8/25/2017 | |
0.25.1 |
96,449 | 8/17/2017 | |
0.25.0 |
25,734 | 8/13/2017 | |
0.20.0 |
3,486 | 6/1/2017 | |
0.19.5 |
13,263 | 5/26/2017 | |
0.19.4 |
4,054 | 5/13/2017 | |
0.19.3 |
2,996 | 5/11/2017 | |
0.19.2 |
1,550,058 | 5/1/2017 | |
0.16.2 |
19,758 | 4/2/2017 | |
0.10.0 |
6,377 | 12/29/2016 | |
0.9.0 |
3,528 | 12/13/2016 | |
0.8.0 |
3,644 | 12/7/2016 | |
0.7.4 |
2,883 | 12/7/2016 | |
0.7.3 |
44,351 | 11/28/2016 | |
0.7.2 |
5,804 | 11/23/2016 | |
0.7.1 |
4,849 | 11/21/2016 | |
0.7.0 |
5,529 | 11/13/2016 | |
0.6.2 |
23,398 | 10/28/2016 | |
0.6.1 |
3,445 | 10/27/2016 | |
0.6.0 |
2,966 | 10/23/2016 | |
0.5.0 |
3,405 | 10/20/2016 | |
0.4.0 |
4,216 | 10/13/2016 | |
0.3.0 |
3,063 | 10/12/2016 | |
0.2.1 |
2,910 | 10/10/2016 | |
0.2.0 |
2,904 | 10/9/2016 | |
0.1.0 |
14,874 | 10/4/2016 |
Project description
MySQL driver written in Python which does not depend on MySQL C client
libraries and implements the DB API v2.0 specification (PEP-249).
Project details
Download files
Download the file for your platform. If you’re not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Close
Hashes for mysql-connector-python-8.0.32.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2d20b29fd096a0633f9360c275bd2434d4bcf597281991c4b7f1c820cd07b84 |
|
MD5 | b1357bef1b3ffdab9f0826972f9b177a |
|
BLAKE2b-256 | 541130be01b1e7dfe2659e2bac4601aa30b286615df0b21faff7663fda98a84e |
Close
Hashes for mysql_connector_python-8.0.32-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0299236297b63bf6cbb61d81a9d400bc01cad4743d1abe5296ef349de15ee53 |
|
MD5 | 86cef1d7739856de29df324df8978ad7 |
|
BLAKE2b-256 | d445aa4c12dd5c552936f79cfb9ddaa2d49b5311bb7cc2c191c54db2357521a0 |
Close
Hashes for mysql_connector_python-8.0.32-cp311-cp311-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6cdba2779bcd16af0ceff0a6e50d33e6664a83f8d17d70524beb6f677a6d1fae |
|
MD5 | cdef5132ad016ed2da8108cb46ba1549 |
|
BLAKE2b-256 | da0eb3d55f7cab94ce5d2dbe8d5740dbd4b1879fd5a85429fa31ff901e6828ba |
Close
Hashes for mysql_connector_python-8.0.32-cp311-cp311-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1c0a11f3ffbf850f2ca7b39e6c82021e8de910ddaeffd856e53dca028d21c923 |
|
MD5 | 128fe8f642e545f4974b50168903b754 |
|
BLAKE2b-256 | 1fb6272609feb401354a06fe20510828b5baaf22f8b1421f4aaf3fa1ed44f158 |
Close
Hashes for mysql_connector_python-8.0.32-cp311-cp311-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 283fe6f647e9d684feb1b7c48fa6a46b1e72c59ecdd6ea2b62392cd80c1a6701 |
|
MD5 | 1123f6e2deaba7b43a38a3e883fc0db6 |
|
BLAKE2b-256 | f3af8608cc318bd7bdd747ec1e9ba48000d9eb0e85edb1f84bc45f3061cf8183 |
Close
Hashes for mysql_connector_python-8.0.32-cp311-cp311-macosx_12_0_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e722b6ffa5b0d7188eebac792b18bc871643db505bf60d0e6bd2859f31e5ed79 |
|
MD5 | 3da3acf9372ef5f6ee50ad3891c899c3 |
|
BLAKE2b-256 | 0eb95f40e391205901930957bba7c8d805f1a09fe0eef3849cab4e080d5173af |
Close
Hashes for mysql_connector_python-8.0.32-cp311-cp311-macosx_12_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ab13dd6ede0e0e99ba97c73946462c3420625ab6e63fe13b6fc350e30eb3298d |
|
MD5 | ec0b7d7a5795bfeb2d49d4d64a67cd74 |
|
BLAKE2b-256 | 01bd591c250879aaad76e4d472b8a94dc1605b4626562e9440c16ca6263cec53 |
Close
Hashes for mysql_connector_python-8.0.32-cp310-cp310-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd233c83daaf048c1f9827be984c2721576ae0adf50e139429a06ccd094987d9 |
|
MD5 | e0a8d6d19c3e1eba7dc4ba897f3b1052 |
|
BLAKE2b-256 | 8132962ae774fce0d920199524bd8960d153107f3d8c1beebc5a545cb832af0f |
Close
Hashes for mysql_connector_python-8.0.32-cp310-cp310-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 232095f0c36266510009b0f1214d2823a649efb8bc511dbab9ce8847f66ab08a |
|
MD5 | 02d3416d20e025b1daccf89f5ac985d5 |
|
BLAKE2b-256 | 13eb2f34ea2f1cc55c38c3d331ff02038b8d136b803e64db98720e2a975af33a |
Close
Hashes for mysql_connector_python-8.0.32-cp310-cp310-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 992b7a464daa398e86df8c75f7d8cd6044f884ff9087e782120fc8beff96c638 |
|
MD5 | e17bc61334061df203cbac067fa0d8f9 |
|
BLAKE2b-256 | 91bacdf22216589dfd6ed48e7d2773576c72f7c86ada0cd19edeea35ea9535c2 |
Close
Hashes for mysql_connector_python-8.0.32-cp310-cp310-macosx_12_0_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b2d00c9e2cb9e3d11c57ec411226f43aa627607085fbed661cfea1c4dc57f61 |
|
MD5 | 30ee3cf5e25f0fc8063bd5d36b4dd609 |
|
BLAKE2b-256 | c685ed1ca18010ef4391c0863e464822175de66773671cb59be7196e42ed2fd1 |
Close
Hashes for mysql_connector_python-8.0.32-cp310-cp310-macosx_12_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4df11c683924ef34c177a54887dc4844ae735b01c8a29ce6ab92d6d3db7a2757 |
|
MD5 | fa6872a519d5440c8f4dc0f864e43880 |
|
BLAKE2b-256 | 2c8bdeacc9c4f615fae13b269122a9f3d5345f79287d41726c5e7eac97484244 |
Close
Hashes for mysql_connector_python-8.0.32-cp39-cp39-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c334c41cd1c5bcfa3550340253ef7d9d3b962211f33327c20f69706a0bcce06 |
|
MD5 | 1ad3404fe7bfdaf063d05acb85f7bab4 |
|
BLAKE2b-256 | 787fc921d790347b09fee698216ef9ce2bc0b6c1964b61210753aa32bfe450e1 |
Close
Hashes for mysql_connector_python-8.0.32-cp39-cp39-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 677b5c6dcaec7e2a4bf95b991a869f4d371114f69a0d9a5bb236e988c8f4c376 |
|
MD5 | 8914e52af66abf4a5833a37dda48bf4d |
|
BLAKE2b-256 | e1cfbff74c9a3cc05e5623514ca59573566ed2dbcaf5efdbc9892be9726c8480 |
Close
Hashes for mysql_connector_python-8.0.32-cp39-cp39-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7f7a69db9e0c36764a6c65377f6174aee46e484520e48659e7aa674415b8e192 |
|
MD5 | 4f73e99e9679faf86ec0e7d47dcd94c1 |
|
BLAKE2b-256 | ca9b75ddc92134f1fa8ee58b849fc31788592e85b7b72ce2f7834397de72acf9 |
Close
Hashes for mysql_connector_python-8.0.32-cp39-cp39-macosx_12_0_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c990f4c0702d1739076261c4dece1042e1eb18bf34e0d8516d19ec5166a205ce |
|
MD5 | 8902684a223cb76bb5499fd1f024db5b |
|
BLAKE2b-256 | d5286360dd630318a32ee0b565ce611b65f5554a078cba6585c1485421c9d6f1 |
Close
Hashes for mysql_connector_python-8.0.32-cp39-cp39-macosx_12_0_arm64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 145aeb75eefb7425e0a7fb36a4f95ebfe79e06be7c69a4045d34cde95c666dc4 |
|
MD5 | 26165c496589d4444b3fca94aa07c826 |
|
BLAKE2b-256 | 49469b0714a07401ac48db2c34dba5162e48e345f807b4ec9925337c8d6ef431 |
Close
Hashes for mysql_connector_python-8.0.32-cp38-cp38-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8bba02501525e1fbbba094a6d8d391d1534e8be41be6396c3e1b9f7d9d13b1c |
|
MD5 | af1fe136950c0dcb37878f7f177f234d |
|
BLAKE2b-256 | e12db0f987fc089008e65d6fd4f1517548d33fbacb6688535e5856aab1f2e746 |
Close
Hashes for mysql_connector_python-8.0.32-cp38-cp38-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f399f3c2599d2591854cd0e0a24c7c399dff21ac5accb6e52e06924de29f3f4 |
|
MD5 | 981abb8246b230390250467154c54c40 |
|
BLAKE2b-256 | dfa6dc9dcd63fa68c628616a5a67d347747c413ab92947f632fb7359082ffcca |
Close
Hashes for mysql_connector_python-8.0.32-cp38-cp38-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | be82357cc7e7e1377e2f4f8c18aa89c8aab6c0117155cf9fcf18e3cd0eb6ac8e |
|
MD5 | 983b6cfe3d1fb4f543e386f1f4a2e334 |
|
BLAKE2b-256 | 8c00c734ac6887e00a25b6e245b2ba79499cb1326acbe591dfbe3bb72ac9ccbc |
Close
Hashes for mysql_connector_python-8.0.32-cp38-cp38-macosx_12_0_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd52a462759aa324a60054c4b44dc8b32007187a328f72be6b58f193d5e32a91 |
|
MD5 | 1cb1229e54461cf944a67330cedd9076 |
|
BLAKE2b-256 | fdc8a0645fee5d23563cdf2a7c513842a01e451c854e98220ccbec9225dd6791 |
Close
Hashes for mysql_connector_python-8.0.32-cp37-cp37m-win_amd64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bdd716b1e162fe4b3887f6617e9ddcfa659ba96a9ddb22feeae208a72f43d22f |
|
MD5 | 82b5bad7bccaa75b192e9b33bfacc2b8 |
|
BLAKE2b-256 | 9ba0b1fa0da53e86901583ed218eccbb95bf3fee8c6d663f41bedf1c38592095 |
Close
Hashes for mysql_connector_python-8.0.32-cp37-cp37m-manylinux1_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c5bfedc979d7858402f39c20d66a6cf03ca4c960732a98318126c278535ddb2 |
|
MD5 | 73529a1e0780fae4510781b7d47f6224 |
|
BLAKE2b-256 | d79b790d36acdc079e355f85a150befcae7affbd6ddda04d29a5a8e00f327452 |
Close
Hashes for mysql_connector_python-8.0.32-cp37-cp37m-manylinux1_i686.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6b54656ca131a4f0f17b9d0adddc60f84fd982d64e06360026d5b06e5dbf865 |
|
MD5 | 995c53332d4b4e18b3a1e3af865a8ed3 |
|
BLAKE2b-256 | 89d39500aa8385668b4f0001543a27ee8e1558b7e0cbfdf9584c2b9fc63f7f39 |
Close
Hashes for mysql_connector_python-8.0.32-cp37-cp37m-macosx_12_0_x86_64.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 93b1eb3e07d19a23ccf2605d818aacee0d842b1820bbeef8d0022d8d3d014ab9 |
|
MD5 | 43ad74aa47baec42dd71e44350d69530 |
|
BLAKE2b-256 | d5c46d5d689bf77d9f6939c1f7120cae73c502ba0325c6354f76d206dd529f45 |