Skip to main content

A self-contained Python driver for communicating with MySQL servers, using an API that is compliant with the Python Database API Specification v2.0 (PEP 249).

Project description

https://img.shields.io/pypi/v/mysql-connector-python.svg https://img.shields.io/pypi/pyversions/mysql-connector-python.svg https://img.shields.io/pypi/l/mysql-connector-python.svg

MySQL Connector/Python enables Python programs to access MySQL databases, using an API that is compliant with the Python Database API Specification v2.0 (PEP 249).

Features

Licensing

Please refer to the README.txt and LICENSE.txt files, available in this repository, for further details.

Contributing

We greatly appreciate feedback from our users, including bug reports and code contributions. Your input helps us improve, and we thank you for any issues you report or code you contribute. Please refer to the CONTRIBUTING.md document for additional information.

Installation

Connector/Python contains the Classic and X DevAPI connector APIs, which are installed separately. Any of these can be installed from a binary or source distribution.

Binaries are distributed in the following package formats:

On the other hand, the source code is distributed as a compressed file from which a wheel package can be built.

The recommended way to install Connector/Python is via pip, which relies on WHEEL packages. For such a reason, it is the installation procedure that is going to be described moving forward.

Please, refer to the official MySQL documentation Connector/Python Installation to know more about installing from an RPM, or building and installing a WHEEL package from a source distribution.

Before installing a package with pip, it is strongly suggested to have the most recent pip version installed on your system. If your system already has pip installed, you might need to update it. Or you can use the standalone pip installer.

$ pip install mysql-connector-python

Installation Options

Connector packages included in MySQL Connector/Python allow you to install optional dependencies to unleash certain functionalities.

# 3rd party packages to unleash the telemetry functionality are installed
$ pip install mysql-connector-python[telemetry]

This installation option can be seen as a shortcut to install all the dependencies needed by a particular feature. Mind that this is optional and you are free to install the required dependencies by yourself.

Available options:

  • dns-srv

  • gssapi

  • webauthn

  • telemetry

Sample Code

import mysql.connector

# Connect to server
cnx = mysql.connector.connect(
    host="127.0.0.1",
    port=3306,
    user="mike",
    password="s3cre3t!")

# Get a cursor
cur = cnx.cursor()

# Execute a query
cur.execute("SELECT CURDATE()")

# Fetch one result
row = cur.fetchone()
print("Current date is: {0}".format(row[0]))

# Close connection
cnx.close()

HeatWave GenAI and Machine Learning Support

MySQL Connector/Python now includes an optional API for integrating directly with MySQL HeatWave’s AI and Machine Learning capabilities. This new SDK is designed to reduce the time required to generate proofs-of-concept (POCs) by providing an intuitive Pythonic interface that automates the management of SQL tables and procedures.

The new mysql.ai module offers two primary components:

  • GenAI: Provides implementations of LangChain’s abstract LLM, VectorStore, and Embeddings classes (MyLLM, MyVectorStore, MyEmbeddings). This ensures full interoperability with existing LangChain pipelines, allowing developers to easily substitute existing components with HeatWave-backed versions.

  • AutoML: Provides Scikit-Learn compatible estimators (MyClassifier, MyRegressor, MyAnomalyDetector, MyGenericTransformer) that inherit from standard Scikit-Learn mixins. These components accept Pandas DataFrames and can be dropped directly into existing Scikit-Learn pipelines and grid searches.

Note on Dependencies: These features introduce dependencies on langchain, pandas, and scikit-learn. To keep existing installations unchanged and the base connector lightweight, these dependencies are not installed by default. You must install them separately to use the mysql.ai features.

Example: GenAI Chatbot with Memory

This example demonstrates how to use MyLLM within a loop to create a simple chatbot that maintains conversation history.

from collections import deque
from mysql import connector
from mysql.ai.genai import MyLLM

def run_chatbot(db_connection, chat_history_size=5):
    # Initialize MyLLM with the database connection
    my_llm = MyLLM(db_connection)

    # Maintain a limited history for context
    chat_history = deque(maxlen=chat_history_size)
    system_msg = "System: You are a helpful AI assistant."

    while True:
        user_input = input("\nUser: ")
        if user_input.lower() in ["exit", "quit"]:
            break

        # Format history and invoke the LLM
        history = [system_msg] + list(chat_history) + [f"User: {user_input}"]
        prompt = "\n".join(history)

        # Invoke HeatWave GenAI
        response = my_llm.invoke(prompt)
        print(f"Bot: {response}")

        # Update history
        chat_history.append(f"User: {user_input}")
        chat_history.append(f"Bot: {response}")

# Usage
with connector.connect(user='root', database='mlcorpus') as db_connection:
    run_chatbot(db_connection)

Example: HeatWave AutoML in a Scikit-Learn Pipeline

This example shows how to use MyClassifier as a drop-in replacement within a standard Scikit-Learn pipeline.

import pandas as pd
from mysql import connector
from sklearn.pipeline import Pipeline
from sklearn.preprocessing import StandardScaler
from mysql.ai.ml import MyClassifier

# 1. Setup Data (Pandas DataFrame)
X = pd.DataFrame([[0.5, 0.1], [1.0, 0.8], [0.1, 0.2]], columns=["feat1", "feat2"])
y = pd.Series([0, 1, 0], name="target")

# 2. Connect and Train
with connector.connect(user='root', database='mlcorpus') as db_connection:
    # Initialize the HeatWave classifier
    clf = MyClassifier(db_connection)

    # Create a standard Scikit-Learn pipeline
    pipe = Pipeline([
        ("scaler", StandardScaler()),
        ("mysql_clf", clf)
    ])

    # Fit the model (automates upload and training on HeatWave)
    pipe.fit(X, y)

    # Predict
    preds = pipe.predict(X)
    print(f"Predictions: {preds}")

    # Score
    score = pipe.score(X, y)
    print(f"Accuracy: {score}")

Additional Resources

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

mysql_connector_python-26.7.0.tar.gz (12.3 MB view details)

Uploaded Source

Built Distributions

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

mysql_connector_python-26.7.0-py2.py3-none-any.whl (480.7 kB view details)

Uploaded Python 2Python 3

mysql_connector_python-26.7.0-cp314-cp314-win_amd64.whl (18.2 MB view details)

Uploaded CPython 3.14Windows x86-64

mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_x86_64.whl (21.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_x86_64.whl (19.8 MB view details)

Uploaded CPython 3.14macOS 14.0+ x86-64

mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_arm64.whl (20.3 MB view details)

Uploaded CPython 3.14macOS 14.0+ ARM64

mysql_connector_python-26.7.0-cp313-cp313-win_amd64.whl (17.7 MB view details)

Uploaded CPython 3.13Windows x86-64

mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_x86_64.whl (21.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_x86_64.whl (19.8 MB view details)

Uploaded CPython 3.13macOS 14.0+ x86-64

mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_arm64.whl (20.3 MB view details)

Uploaded CPython 3.13macOS 14.0+ ARM64

mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_x86_64.whl (21.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_x86_64.whl (19.8 MB view details)

Uploaded CPython 3.12macOS 14.0+ x86-64

mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_arm64.whl (20.3 MB view details)

Uploaded CPython 3.12macOS 14.0+ ARM64

mysql_connector_python-26.7.0-cp311-cp311-win_amd64.whl (17.7 MB view details)

Uploaded CPython 3.11Windows x86-64

mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_x86_64.whl (21.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_aarch64.whl (22.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_x86_64.whl (19.8 MB view details)

Uploaded CPython 3.11macOS 14.0+ x86-64

mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_arm64.whl (20.3 MB view details)

Uploaded CPython 3.11macOS 14.0+ ARM64

mysql_connector_python-26.7.0-cp310-cp310-win_amd64.whl (17.7 MB view details)

Uploaded CPython 3.10Windows x86-64

mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_x86_64.whl (21.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_aarch64.whl (21.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_x86_64.whl (19.8 MB view details)

Uploaded CPython 3.10macOS 14.0+ x86-64

mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_arm64.whl (20.3 MB view details)

Uploaded CPython 3.10macOS 14.0+ ARM64

File details

Details for the file mysql_connector_python-26.7.0.tar.gz.

File metadata

  • Download URL: mysql_connector_python-26.7.0.tar.gz
  • Upload date:
  • Size: 12.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for mysql_connector_python-26.7.0.tar.gz
Algorithm Hash digest
SHA256 d8ff5ee236ea46661ee639336323e124ed868e37f3ea991bdc5de5a146f39fd5
MD5 d5bed16006b71ea522ab0e98feb5af92
BLAKE2b-256 f2cea53b169388f8c6a595cfa9a653138381f3afef1d2af60f5c1972d015f52f

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 43ee453b53556f690e4f4b795d3f17a1c6d4b45f729657bb0d999c8dfc9261d5
MD5 7657a53e406a08cc872227b6a7b4c57f
BLAKE2b-256 ff0107efeb3e3fc730f945af40ddf1f4c879c13945b193a94eba8e642c0d4176

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a4eac2b4bcbf18fbaab736b5c3996425728472fea7b3d71a8c7056aa6349471f
MD5 d3e75889d496457dc613162bb13a717d
BLAKE2b-256 34a6946645e3c7e8feb159c97b2e8f612075e4ec08c0fb7d26d310d7e1b0e22c

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76cffea9fc0cd9d4d5c79935a18342d9680f2c0dc0d5675b966b3df06229f238
MD5 0ec890c0039ee32f1cbf69b2e4f32ad3
BLAKE2b-256 02bec57e60d49e481cd8a7e5ab0ed874bf18dc90f32aed6d3953213ddbb7d86a

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a86c988f033d3e116c5d326931aabae340ebef0425399bcd5f076af877ae0fbc
MD5 3904acfb957cf1ae80e507ade4c85482
BLAKE2b-256 747ce57f2dada0a371c37715b2e402bf7b403718a265aa8afd341c91a7674d97

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 32f63bbf069b242921c13de05e56857625e167d64fc7fa4f15e05478d78c56fe
MD5 148d78cb118ef61d5d3f37326dddcd13
BLAKE2b-256 624b200023b5628ac075c1182c62999195dc096aeaf24787f0697f0830a886c4

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 c02cc3d5e4763ddc960fce521bd353b242cfec4c6a936234916f2597bfd656cd
MD5 7628a8819f2c26a4dcdc1f85276ec331
BLAKE2b-256 eb46a2383cebea1cf22e07a0bc7b6e5035baac04de18415df188d257b68abab2

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fd10764bd6dadb0ad44475126a87d184dac519712874459ab5f3976c23314f22
MD5 34221719491c25cb3f20d919f8d47102
BLAKE2b-256 78681ee48a7c2c1104e6fe6cf8a98d6fbdba547d72331a3d1352fe2443e3cf95

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ec8fe2f5af701d3146a6e31ef2fce293f2418c148a99df7c9917f87cfcdaea93
MD5 797a5d4b0cd39520cfcc3af1c3650652
BLAKE2b-256 335affc4663fb061f612b6efe2afc3b1c94cec4de86af8b4736935010c159263

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9f8fde7f909891bc5093f63e3b78a8f80b637591d8f77591a758cf78541325b8
MD5 f24f8a496f0e3be5af196dbcef56f28e
BLAKE2b-256 40cc93c38d25b0c1b0b784b7cf7a94699b5d6379ce315329f9e789e827cd50d0

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 6e2d06c653c7f18ae91c5899e62210565660c871941769b1725c8dfa98da66b8
MD5 036f21adbf9d160d17474f18ebc5781d
BLAKE2b-256 2e78d13a243bcc7299dfc74265f4896a1bf3c09d230b81f505c9da99593a4246

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 2be2f5b8ffc66bac305afee970256e74b2bc1d072cd0d21a277af3c9ff5fcb1d
MD5 5a2784f64ce05b421cafad0313a70d20
BLAKE2b-256 59d11988f561be35527ab8a8906d97f52b60160ef50578cbe13096c66ef9d41a

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e118030bdd6a9882f5aa80a0c0c88d684d0e82d78747e5baf3c3e54a5a2d1348
MD5 d4dd0065ac63b132cb18f4b6438254b8
BLAKE2b-256 2d0c7dc1c1367a6a7881f20b0ed8bf92133d4710ea0dce22657972f56bf2a365

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 227063e73c3d7b0326bc6ce9af47b8aa081e53a4e97e8683bba658569cb57271
MD5 32bfae912090abe27ad54233f11f0fe9
BLAKE2b-256 4f1c73b9f540fbbcf78949e00d673db576f61ab93e7824e31dfb568295e58f2c

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 375f9a042398e515a670003f26ab07e9b2ecaecba6eaf678f66fb5c2d36bd305
MD5 efb55d1d1a0234837fc06f5d2d56e8a3
BLAKE2b-256 ad9cd2f705d2caaf2c91d05bdea0d67dde7cc243a62245ee91fba4e201e24ea1

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 9b63672cc381f097966faecd6940beb2a91f9efdf674a5807dc45f4efdb42e62
MD5 b5c7dd12f4a6b1d448a2296f846330b5
BLAKE2b-256 e3248c3516ee9edc3d740059253410bcb30a0dd7686bfd876eb905af6b92b4e6

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2fd56a86f316e676c4cafa16fe6149a08d8dd4f071f8b4aa298f5968b6eb1cbf
MD5 bdb27f37d0f1f6773840caa4643a5204
BLAKE2b-256 00887060928e0b9743d5e49133be158c05399817e04f2eebdf23d562d2d805e7

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9fee7cfbdaa8ed295e05b0c66778760cdc8705b1edbbd1963da87a04c22fb6b1
MD5 866b9e38f8d1c5649fc58ce648f956fa
BLAKE2b-256 0b550a946351d7c9c0fbe018aef5c3d36818cc28ef1a8ee964354582743f31d1

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55565516053e46a7a49cdd3a61f6fe3e5651747522597f5500de3e0655fd70d6
MD5 2401fdc7170bfad106a06f39ecf71408
BLAKE2b-256 a36e4e68293b76949d4b02aa5c708983a6e623a8a22470cda68a9ab7456d25a8

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 638be8882de1ab4dd982a9db56afaa9e357468c7c5be9e20bd5e972ed4d68db2
MD5 a95ed88c6f2bc738b98afc7e9881fa4c
BLAKE2b-256 52fef55d4af14d733dde6af69e04313e18befa0a17992e2fac4741d77f17fa33

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 27c9808be25cd6f0b173f3894407635764db01db039b8904f9b566f7d1795bcc
MD5 bfde794f11879894be462fb486e7ca81
BLAKE2b-256 263c97a247c74b937f3087fd63f487a162b18dd8a28aabb4acf8e8f3ea2e9668

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b2f8807746caa58c52d522d0e2f8c889f9bac47a096b2f5d0abed88c31c594e7
MD5 31813559caf9834b21ac7966f3f312e6
BLAKE2b-256 34adb11cdf1adace0c0b5fd45de034af21ce10104c5333ed4bd7a1f0e69152f5

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f8d6eaf6f37d146573afe458ae40ea48a679293da2c17cf34e65976eaab7b64c
MD5 051d136f88a7ee9ea370929d1507db7b
BLAKE2b-256 8b6d4af74674cb0dcba79d25cb0c127f17164427e634070797ae2ff428e1510c

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 109a9d3d4579f63e587816fc1e3105a464ac52ac7578aaff16980a3d341a98b1
MD5 0fe44145bf326d82122f899dc010b931
BLAKE2b-256 ccbe1349fdc9a7b1bc2d4b83952f0be84e47146267d872e1ddbfb68af35c3a33

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 99678b137b28b277c7639e6e6660159c8dc15113107ad881a2f498652540856f
MD5 93cbddd1ab87c7858dba167f898389b5
BLAKE2b-256 d8da740c48a2aa83994cfafd0dea1b017e1183746ed2745932d3c4c192445b25

See more details on using hashes here.

File details

Details for the file mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 3a04431d85e96626b51417e855da131da815395080cf3acc805113181d679648
MD5 065934417228c33378480776cffd8e48
BLAKE2b-256 aea2aff3d8519542060b51f64eb8c272b026d95356ea511025db6d4144546147

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