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) - We refer to it as the Classic API.

Features

Installation

The recommended way to install Connector/Python is via pip.

Make sure you have a 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

  • fido2

  • 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()

Additional Resources

Contributing

There are a few ways to contribute to the Connector/Python code. Please refer to the contributing guidelines for additional information.

License

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

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-9.1.0.tar.gz (307.5 kB view details)

Uploaded Source

Built Distributions

mysql_connector_python-9.1.0-py2.py3-none-any.whl (381.1 kB view details)

Uploaded Python 2 Python 3

mysql_connector_python-9.1.0-cp313-cp313-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.13 Windows x86-64

mysql_connector_python-9.1.0-cp313-cp313-manylinux_2_28_x86_64.whl (34.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ x86-64

mysql_connector_python-9.1.0-cp313-cp313-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ ARM64

mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.13 macOS 13.0+ x86-64

mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_arm64.whl (15.1 MB view details)

Uploaded CPython 3.13 macOS 13.0+ ARM64

mysql_connector_python-9.1.0-cp312-cp312-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.12 Windows x86-64

mysql_connector_python-9.1.0-cp312-cp312-manylinux_2_28_x86_64.whl (34.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ x86-64

mysql_connector_python-9.1.0-cp312-cp312-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.12 macOS 13.0+ x86-64

mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_arm64.whl (15.1 MB view details)

Uploaded CPython 3.12 macOS 13.0+ ARM64

mysql_connector_python-9.1.0-cp311-cp311-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

mysql_connector_python-9.1.0-cp311-cp311-manylinux_2_28_x86_64.whl (34.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ x86-64

mysql_connector_python-9.1.0-cp311-cp311-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.11 macOS 13.0+ x86-64

mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_arm64.whl (15.1 MB view details)

Uploaded CPython 3.11 macOS 13.0+ ARM64

mysql_connector_python-9.1.0-cp310-cp310-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

mysql_connector_python-9.1.0-cp310-cp310-manylinux_2_28_x86_64.whl (34.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ x86-64

mysql_connector_python-9.1.0-cp310-cp310-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.10 macOS 13.0+ x86-64

mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_arm64.whl (15.1 MB view details)

Uploaded CPython 3.10 macOS 13.0+ ARM64

mysql_connector_python-9.1.0-cp39-cp39-win_amd64.whl (16.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_x86_64.whl (34.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ x86-64

mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_aarch64.whl (34.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.9 macOS 13.0+ x86-64

mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_arm64.whl (15.1 MB view details)

Uploaded CPython 3.9 macOS 13.0+ ARM64

File details

Details for the file mysql-connector-python-9.1.0.tar.gz.

File metadata

  • Download URL: mysql-connector-python-9.1.0.tar.gz
  • Upload date:
  • Size: 307.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql-connector-python-9.1.0.tar.gz
Algorithm Hash digest
SHA256 346261a2aeb743a39cf66ba8bde5e45931d313b76ce0946a69a6d1187ec7d279
MD5 d9df236b94117e6a0e4b6680a931543e
BLAKE2b-256 d7c7d7adba0a87d34c56ce2e8c35f9965df860a087a03e9651039f7916abd483

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mysql_connector_python-9.1.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 381.1 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 dacf1aa84dc7dd8ae908626c3ae50fce956d0105130c7465fd248a4f035d50b1
MD5 2b4724f92cfd20ccb0bf75bb9bb3c970
BLAKE2b-256 ac7e5546cf19c8d0724e962e8be1a5d1e7491f634df550bf9da073fb6c2b93a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 25e261f3260ec798c48cb910862a299e565548a1b5421dec84315ddbc9ef28c4
MD5 9bbbe537720b5c6833e35f4e66460227
BLAKE2b-256 1efc62adbf3495c0e6a7d0a7cdf9a9276651dd8f2f31fda98b8283172fae9736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f102452c64332b7e042fa37b84d4f15332bd639e479d15035f2a005fb9fbb34
MD5 c035d435fbde2e951b45ed4bef368f61
BLAKE2b-256 93db4d1e501f5eeb4e43aed8b622139d2350cfa049aaf2f8c5662fe0ba446f04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 109e17a4ada1442e3881a51e2bbabcb336ad229a619ac61e9ad24bd6b9b117bd
MD5 839734d7ad319b95a52df592c7de65c3
BLAKE2b-256 6cf298ecd7fdca742deeda783b9ac3c5a7a57fd2e2fccbb920308eb2f2a962af

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e26a08a9500407fa8f4a6504f7077d1312bec4fa52cb0a58c1ad324ca1f3eeaa
MD5 3ea34f8803521f521241b43ec4d335ef
BLAKE2b-256 c4dcb39956f85ba4fd89abfcce0dbb00e65cc22a193fa2e95c7816acee6009eb

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_arm64.whl.

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_arm64.whl
  • Upload date:
  • Size: 15.1 MB
  • Tags: CPython 3.13, macOS 13.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 d627ebafc0327b935d8783454e7a4b5c32324ed39a2a1589239490ab850bf7d7
MD5 ab44f18241ffc6fecafb49197b7e2b35
BLAKE2b-256 39e54f08a4a7f574f5700b3118c084085c6d977ba06941c8837e89e25dc1c5d3

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 30a8f0ba84f8adf15a4877e80b3f97f786ce35616d918b9310578a2bd22952d5
MD5 1ef6851e10d9f88f524b246a3ba8b127
BLAKE2b-256 4e81a4f21984691021749888aadc41f27b4c393884fa1d163c64979d408cf795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7d99c0a841a2c2a0e4d5b28376c1bfac794ec3821b66eb6fa2f7702cec820ee8
MD5 f7603b1f35947e794d5060cc8449fec0
BLAKE2b-256 61a6a322e8a7dd8daf6a2006828d4848d0b33fb627703635ee23b2278033c50b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e75ecb3df2c2cbe4d92d5dd58a318fa708edebc0fa2d850fc2a9d42481dbb808
MD5 659b63d5909f943f0f2a7ddfae4babe1
BLAKE2b-256 d6bf3973681fc3714c8b4372903997ca50e9cce9eb489f0fdfce415be4cf70a5

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 c75f674a52b8820c90d466183b2bb59f89bcf09d17ebe9b391313d89565c8896
MD5 96d68ac501293a59cadcfbd9fa3a5c1b
BLAKE2b-256 58380fb13631332a59509eb7725a87b90dfd811bf82d7257d34484346a87f937

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_arm64.whl.

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_arm64.whl
  • Upload date:
  • Size: 15.1 MB
  • Tags: CPython 3.12, macOS 13.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 f67b22e3eaf5b03ffac97232d3dd67b56abcacad907ad4391c847bad5ba58f0e
MD5 5323835ec3ba2efbd61cffb4e7b8b259
BLAKE2b-256 b0764b28bf024ba99a05cba78745e231e24f6d2a9b63a1cfeba7c36a69cbd077

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b2eb48518b8c2bc9636883d264b291e5c93824fc6b61823ca9cf396a09474ad
MD5 488493981d98b0a0f62218a13c8c2926
BLAKE2b-256 541598d703a1101e0bfb106e4085f41f937ddca869d16746c076fb818b6f883d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c36a9b9ebf9587aaa5d7928468fefe8faf6fc993a03cb242bb160ede9cf75b2d
MD5 80ebd7ca210f89035c1d59e40ad016eb
BLAKE2b-256 c6f8e1ac70ac448447a688187333432ae4129345d150f11ce84b4f7b26e866d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fec943d333851c4b5e57cd0b04dde36e6817f0d4d62b2a58ce028a82be444866
MD5 591199b9bb802c32e8cab4dc78b5b9d0
BLAKE2b-256 62de1ead6a3017196193cf56f95c7e47315769631c60441518afd5e5fb6c35d5

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 e15153cb8ab5fcec00b99077de536489d22d4809fc28f633850398fef0560b1f
MD5 0e4cfa959524bce4d340354584138bb0
BLAKE2b-256 fc30aecd4f33a76d9a3f0f40bad5870dfd790bf596feb3ce3a337f7febe183b4

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_arm64.whl.

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_arm64.whl
  • Upload date:
  • Size: 15.1 MB
  • Tags: CPython 3.11, macOS 13.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 9b23a8e2acee91b5120febe00c53e7f472b9b6d49618e39fa1af86cdc1f0ade8
MD5 8c261cf3016ce05c626bf4e81fd79ecf
BLAKE2b-256 e2a1d3bfa896437f32d8fc114881f9ce49fd6bb3195c390557f260c7d4d56f9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 72dcce5f2e4f5910d65f02eb318c1e4622464da007a3ae5e9ccd64169d8efac3
MD5 b6cc31068d03f47a677802f12bdbcd9b
BLAKE2b-256 1c1b363d43a8f6009a5242eb0baf2e4a0e76f7e5696a47e8e23e883bd9d9004d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aceaab679b852c0a2ec0eed9eb2a490171b3493484f1881b605cbf2f9c5fde6d
MD5 cac5d1398e212ffadedbfd2e512a11dc
BLAKE2b-256 7f9dba254f813732c3dbf28c86551fdb678d8540c8352259fe45a48b317c09d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 abf16fc1155ebeba5558e5702dd7210d634ac8da484eca05a640b68a548dc7cf
MD5 9869a43a7ea74b692ba3ab9dc5693c2b
BLAKE2b-256 07408b8fbd3456eda383bf97d978199063f9863385dd7d5ded17dd5f599c21cc

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_x86_64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 948ef0c7da87901176d4320e0f40a3277ee06fe6f58ce151c1e60d8d50fdeaf4
MD5 f9579a31dd592a17824865cf7b235510
BLAKE2b-256 93e683babb0ac562a9ce6e77d9c586b4be7f2a7c0eded68dc696adb9ba6b8271

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_arm64.whl.

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_arm64.whl
  • Upload date:
  • Size: 15.1 MB
  • Tags: CPython 3.10, macOS 13.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 dcdcf380d07b9ca6f18a95e9516a6185f2ab31a53d290d5e698e77e59c043c9e
MD5 77533f273ca222c0667ef33f9db704f0
BLAKE2b-256 89157443b55cd9a1c8767927c2ae876792f27332eac6499ae1f80cdbef48374c

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 16.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c350b1aaf257b1b778f44b8bfaeda07751f55e150f5a7464342f36e4aac8e805
MD5 456775944d641a40e48e2e0730cb17ec
BLAKE2b-256 31eabe95897e946fa1883af0ffab20542cbc9241b690f713fa21cb3bcb9e49b0

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 34.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d7d5d458d0d600bbbebd9f2bce551e386b359bcce6026f7369b57922d26f13a
MD5 406114384cffcce37a403a360c98a2d2
BLAKE2b-256 6337024485f8b32974302e829f1ba107f0fd289041031346c88366abbc0ff935

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e2f0876e1efd76e05853cb0a623dba2746ee70686c043019d811737dd5c3d871
MD5 ad44b9bc94fa310d281d154818fc90bb
BLAKE2b-256 7865d4529011aeb35c26ad4a2921732bc791552e93db5320cafdc866f46f57b5

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_x86_64.whl.

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_x86_64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.9, macOS 13.0+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_x86_64.whl
Algorithm Hash digest
SHA256 28fd99ee464ac3b02d1e2a71a63ca4f25c6110e4414a46a5b64631e6d2096899
MD5 79b408997bd4644fe97b609b5b1fa6da
BLAKE2b-256 18d5b740b641a174c5e815de97ecf5c16bf146e3aef89a42da1e9870d06e50ab

See more details on using hashes here.

File details

Details for the file mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_arm64.whl.

File metadata

  • Download URL: mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_arm64.whl
  • Upload date:
  • Size: 15.1 MB
  • Tags: CPython 3.9, macOS 13.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.20.0 setuptools/39.2.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.6.8

File hashes

Hashes for mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_arm64.whl
Algorithm Hash digest
SHA256 ec4386b2426bfb07f83455bf895d8a7e2d6c067343ac05be5511083ca2424991
MD5 dc919124f7bd03d6d265b4b32d9d0305
BLAKE2b-256 e5bd547211901248d32092f3e1e7717dbdf8ea85fdb0a508adc9e010aad5e964

See more details on using hashes here.

Supported by

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