Skip to main content
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

Release files for mysql-connector-python 26.7.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for mysql-connector-python 26.7.0
File Size Uploaded
mysql_connector_python-26.7.0.tar.gz 12.3 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for mysql-connector-python 26.7.0
File
mysql_connector_python-26.7.0-py2.py3-none-any.whl Python 2, Python 3 none any Details
mysql_connector_python-26.7.0-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64 Details
mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ ARM64 Details
mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_x86_64.whl CPython 3.14 CPython 3.14 macOS 14.0+ x86-64 Details
mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_arm64.whl CPython 3.14 CPython 3.14 macOS 14.0+ ARM64 Details
mysql_connector_python-26.7.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64 Details
mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ ARM64 Details
mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_x86_64.whl CPython 3.13 CPython 3.13 macOS 14.0+ x86-64 Details
mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_arm64.whl CPython 3.13 CPython 3.13 macOS 14.0+ ARM64 Details
mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64 Details
mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ ARM64 Details
mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_x86_64.whl CPython 3.12 CPython 3.12 macOS 14.0+ x86-64 Details
mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_arm64.whl CPython 3.12 CPython 3.12 macOS 14.0+ ARM64 Details
mysql_connector_python-26.7.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64 Details
mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ ARM64 Details
mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_x86_64.whl CPython 3.11 CPython 3.11 macOS 14.0+ x86-64 Details
mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_arm64.whl CPython 3.11 CPython 3.11 macOS 14.0+ ARM64 Details
mysql_connector_python-26.7.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64 Details
mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ ARM64 Details
mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_x86_64.whl CPython 3.10 CPython 3.10 macOS 14.0+ x86-64 Details
mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_arm64.whl CPython 3.10 CPython 3.10 macOS 14.0+ ARM64 Details

Total release size: 503.1 MB

Release files / mysql_connector_python-26.7.0.tar.gz

Download URL mysql_connector_python-26.7.0.tar.gz
Size 12.3 MB
Tags Source
SHA-256 checksum
How to use checksums
d8ff5ee236ea46661ee639336323e124ed868e37f3ea991bdc5de5a146f39fd5
BLAKE2b-256 checksum
How to use checksums
f2cea53b169388f8c6a595cfa9a653138381f3afef1d2af60f5c1972d015f52f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-py2.py3-none-any.whl

Download URL mysql_connector_python-26.7.0-py2.py3-none-any.whl
Size 480.7 kB
Tags Python 2 Python 3
SHA-256 checksum
How to use checksums
43ee453b53556f690e4f4b795d3f17a1c6d4b45f729657bb0d999c8dfc9261d5
BLAKE2b-256 checksum
How to use checksums
ff0107efeb3e3fc730f945af40ddf1f4c879c13945b193a94eba8e642c0d4176
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp314-cp314-win_amd64.whl

Download URL mysql_connector_python-26.7.0-cp314-cp314-win_amd64.whl
Size 18.2 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
a4eac2b4bcbf18fbaab736b5c3996425728472fea7b3d71a8c7056aa6349471f
BLAKE2b-256 checksum
How to use checksums
34a6946645e3c7e8feb159c97b2e8f612075e4ec08c0fb7d26d310d7e1b0e22c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_x86_64.whl

Download URL mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_x86_64.whl
Size 21.7 MB
Tags CPython 3.14 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
76cffea9fc0cd9d4d5c79935a18342d9680f2c0dc0d5675b966b3df06229f238
BLAKE2b-256 checksum
How to use checksums
02bec57e60d49e481cd8a7e5ab0ed874bf18dc90f32aed6d3953213ddbb7d86a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_aarch64.whl

Download URL mysql_connector_python-26.7.0-cp314-cp314-manylinux_2_28_aarch64.whl
Size 22.0 MB
Tags CPython 3.14 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
a86c988f033d3e116c5d326931aabae340ebef0425399bcd5f076af877ae0fbc
BLAKE2b-256 checksum
How to use checksums
747ce57f2dada0a371c37715b2e402bf7b403718a265aa8afd341c91a7674d97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_x86_64.whl

Download URL mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_x86_64.whl
Size 19.8 MB
Tags CPython 3.14 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
32f63bbf069b242921c13de05e56857625e167d64fc7fa4f15e05478d78c56fe
BLAKE2b-256 checksum
How to use checksums
624b200023b5628ac075c1182c62999195dc096aeaf24787f0697f0830a886c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_arm64.whl

Download URL mysql_connector_python-26.7.0-cp314-cp314-macosx_14_0_arm64.whl
Size 20.3 MB
Tags CPython 3.14 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
c02cc3d5e4763ddc960fce521bd353b242cfec4c6a936234916f2597bfd656cd
BLAKE2b-256 checksum
How to use checksums
eb46a2383cebea1cf22e07a0bc7b6e5035baac04de18415df188d257b68abab2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp313-cp313-win_amd64.whl

Download URL mysql_connector_python-26.7.0-cp313-cp313-win_amd64.whl
Size 17.7 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
fd10764bd6dadb0ad44475126a87d184dac519712874459ab5f3976c23314f22
BLAKE2b-256 checksum
How to use checksums
78681ee48a7c2c1104e6fe6cf8a98d6fbdba547d72331a3d1352fe2443e3cf95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_x86_64.whl

Download URL mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_x86_64.whl
Size 21.7 MB
Tags CPython 3.13 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
ec8fe2f5af701d3146a6e31ef2fce293f2418c148a99df7c9917f87cfcdaea93
BLAKE2b-256 checksum
How to use checksums
335affc4663fb061f612b6efe2afc3b1c94cec4de86af8b4736935010c159263
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_aarch64.whl

Download URL mysql_connector_python-26.7.0-cp313-cp313-manylinux_2_28_aarch64.whl
Size 22.0 MB
Tags CPython 3.13 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
9f8fde7f909891bc5093f63e3b78a8f80b637591d8f77591a758cf78541325b8
BLAKE2b-256 checksum
How to use checksums
40cc93c38d25b0c1b0b784b7cf7a94699b5d6379ce315329f9e789e827cd50d0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_x86_64.whl

Download URL mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_x86_64.whl
Size 19.8 MB
Tags CPython 3.13 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
6e2d06c653c7f18ae91c5899e62210565660c871941769b1725c8dfa98da66b8
BLAKE2b-256 checksum
How to use checksums
2e78d13a243bcc7299dfc74265f4896a1bf3c09d230b81f505c9da99593a4246
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_arm64.whl

Download URL mysql_connector_python-26.7.0-cp313-cp313-macosx_14_0_arm64.whl
Size 20.3 MB
Tags CPython 3.13 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
2be2f5b8ffc66bac305afee970256e74b2bc1d072cd0d21a277af3c9ff5fcb1d
BLAKE2b-256 checksum
How to use checksums
59d11988f561be35527ab8a8906d97f52b60160ef50578cbe13096c66ef9d41a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_x86_64.whl

Download URL mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_x86_64.whl
Size 21.7 MB
Tags CPython 3.12 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
e118030bdd6a9882f5aa80a0c0c88d684d0e82d78747e5baf3c3e54a5a2d1348
BLAKE2b-256 checksum
How to use checksums
2d0c7dc1c1367a6a7881f20b0ed8bf92133d4710ea0dce22657972f56bf2a365
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_aarch64.whl

Download URL mysql_connector_python-26.7.0-cp312-cp312-manylinux_2_28_aarch64.whl
Size 22.0 MB
Tags CPython 3.12 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
227063e73c3d7b0326bc6ce9af47b8aa081e53a4e97e8683bba658569cb57271
BLAKE2b-256 checksum
How to use checksums
4f1c73b9f540fbbcf78949e00d673db576f61ab93e7824e31dfb568295e58f2c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_x86_64.whl

Download URL mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_x86_64.whl
Size 19.8 MB
Tags CPython 3.12 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
375f9a042398e515a670003f26ab07e9b2ecaecba6eaf678f66fb5c2d36bd305
BLAKE2b-256 checksum
How to use checksums
ad9cd2f705d2caaf2c91d05bdea0d67dde7cc243a62245ee91fba4e201e24ea1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_arm64.whl

Download URL mysql_connector_python-26.7.0-cp312-cp312-macosx_14_0_arm64.whl
Size 20.3 MB
Tags CPython 3.12 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
9b63672cc381f097966faecd6940beb2a91f9efdf674a5807dc45f4efdb42e62
BLAKE2b-256 checksum
How to use checksums
e3248c3516ee9edc3d740059253410bcb30a0dd7686bfd876eb905af6b92b4e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp311-cp311-win_amd64.whl

Download URL mysql_connector_python-26.7.0-cp311-cp311-win_amd64.whl
Size 17.7 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
2fd56a86f316e676c4cafa16fe6149a08d8dd4f071f8b4aa298f5968b6eb1cbf
BLAKE2b-256 checksum
How to use checksums
00887060928e0b9743d5e49133be158c05399817e04f2eebdf23d562d2d805e7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_x86_64.whl

Download URL mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_x86_64.whl
Size 21.7 MB
Tags CPython 3.11 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
9fee7cfbdaa8ed295e05b0c66778760cdc8705b1edbbd1963da87a04c22fb6b1
BLAKE2b-256 checksum
How to use checksums
0b550a946351d7c9c0fbe018aef5c3d36818cc28ef1a8ee964354582743f31d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_aarch64.whl

Download URL mysql_connector_python-26.7.0-cp311-cp311-manylinux_2_28_aarch64.whl
Size 22.0 MB
Tags CPython 3.11 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
55565516053e46a7a49cdd3a61f6fe3e5651747522597f5500de3e0655fd70d6
BLAKE2b-256 checksum
How to use checksums
a36e4e68293b76949d4b02aa5c708983a6e623a8a22470cda68a9ab7456d25a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_x86_64.whl

Download URL mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_x86_64.whl
Size 19.8 MB
Tags CPython 3.11 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
638be8882de1ab4dd982a9db56afaa9e357468c7c5be9e20bd5e972ed4d68db2
BLAKE2b-256 checksum
How to use checksums
52fef55d4af14d733dde6af69e04313e18befa0a17992e2fac4741d77f17fa33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_arm64.whl

Download URL mysql_connector_python-26.7.0-cp311-cp311-macosx_14_0_arm64.whl
Size 20.3 MB
Tags CPython 3.11 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
27c9808be25cd6f0b173f3894407635764db01db039b8904f9b566f7d1795bcc
BLAKE2b-256 checksum
How to use checksums
263c97a247c74b937f3087fd63f487a162b18dd8a28aabb4acf8e8f3ea2e9668
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp310-cp310-win_amd64.whl

Download URL mysql_connector_python-26.7.0-cp310-cp310-win_amd64.whl
Size 17.7 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
b2f8807746caa58c52d522d0e2f8c889f9bac47a096b2f5d0abed88c31c594e7
BLAKE2b-256 checksum
How to use checksums
34adb11cdf1adace0c0b5fd45de034af21ce10104c5333ed4bd7a1f0e69152f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_x86_64.whl

Download URL mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_x86_64.whl
Size 21.7 MB
Tags CPython 3.10 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f8d6eaf6f37d146573afe458ae40ea48a679293da2c17cf34e65976eaab7b64c
BLAKE2b-256 checksum
How to use checksums
8b6d4af74674cb0dcba79d25cb0c127f17164427e634070797ae2ff428e1510c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_aarch64.whl

Download URL mysql_connector_python-26.7.0-cp310-cp310-manylinux_2_28_aarch64.whl
Size 21.9 MB
Tags CPython 3.10 Linux glibc 2.28+ ARM64
SHA-256 checksum
How to use checksums
109a9d3d4579f63e587816fc1e3105a464ac52ac7578aaff16980a3d341a98b1
BLAKE2b-256 checksum
How to use checksums
ccbe1349fdc9a7b1bc2d4b83952f0be84e47146267d872e1ddbfb68af35c3a33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_x86_64.whl

Download URL mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_x86_64.whl
Size 19.8 MB
Tags CPython 3.10 macOS 14.0+ x86-64
SHA-256 checksum
How to use checksums
99678b137b28b277c7639e6e6660159c8dc15113107ad881a2f498652540856f
BLAKE2b-256 checksum
How to use checksums
d8da740c48a2aa83994cfafd0dea1b017e1183746ed2745932d3c4c192445b25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25

Release files / mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_arm64.whl

Download URL mysql_connector_python-26.7.0-cp310-cp310-macosx_14_0_arm64.whl
Size 20.3 MB
Tags CPython 3.10 macOS 14.0+ ARM64
SHA-256 checksum
How to use checksums
3a04431d85e96626b51417e855da131da815395080cf3acc805113181d679648
BLAKE2b-256 checksum
How to use checksums
aea2aff3d8519542060b51f64eb8c272b026d95356ea511025db6d4144546147
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.9.25
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page