MySQL Connector/Python
======================
.. image:: https://img.shields.io/pypi/v/mysql-connector-python.svg
:target: https://pypi.org/project/mysql-connector-python/
.. image:: https://img.shields.io/pypi/pyversions/mysql-connector-python.svg
:target: https://pypi.org/project/mysql-connector-python/
.. image:: https://img.shields.io/pypi/l/mysql-connector-python.svg
:target: https://pypi.org/project/mysql-connector-python/
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) <https://www.python.org/dev/peps/pep-0249/>`_ - We refer to it as the
`Classic API <https://dev.mysql.com/doc/connector-python/en/connector-python-reference.html>`_.
Features
--------
* `Asynchronous Connectivity <https://dev.mysql.com/doc/connector-python/en/connector-python-asyncio.html>`_
* `C-extension <https://dev.mysql.com/doc/connector-python/en/connector-python-cext.html>`_
* `Telemetry <https://dev.mysql.com/doc/connector-python/en/connector-python-opentelemetry.html>`_
Installation
------------
The recommended way to install Connector/Python is via `pip <https://pip.pypa.io/>`_.
Make sure you have a recent `pip <https://pip.pypa.io/>`_ 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 <https://pip.pypa.io/en/latest/installation/>`_.
.. code-block:: bash
$ pip install mysql-connector-python
++++++++++++++++++++
Installation Options
++++++++++++++++++++
Connector packages included in MySQL Connector/Python allow you to install
optional dependencies to unleash certain functionalities.
.. code-block:: bash
# 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
-----------
.. code:: python
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
--------------------
- `MySQL Connector/Python Developer Guide <https://dev.mysql.com/doc/connector-python/en/>`_
- `MySQL Connector/Python Forum <http://forums.mysql.com/list.php?50>`_
- `MySQL Public Bug Tracker <https://bugs.mysql.com>`_
- `Slack <https://mysqlcommunity.slack.com>`_ (`Sign-up <https://lefred.be/mysql-community-on-slack/>`_ required if you do not have an Oracle account)
- `Stack Overflow <https://stackoverflow.com/questions/tagged/mysql-connector-python>`_
- `Oracle Blogs <https://blogs.oracle.com/search.html?q=connector-python>`_
Contributing
------------
There are a few ways to contribute to the Connector/Python code. Please refer
to the `contributing guidelines <CONTRIBUTING.md>`_ for additional information.
License
-------
Please refer to the `README.txt <README.txt>`_ and `LICENSE.txt <LICENSE.txt>`_
files, available in this repository, for further details.
Raw data
{
"_id": null,
"home_page": null,
"name": "mysql-connector-python",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "mysql, database, db, connector, driver",
"author": "Oracle and/or its affiliates",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/d7/c7/d7adba0a87d34c56ce2e8c35f9965df860a087a03e9651039f7916abd483/mysql-connector-python-9.1.0.tar.gz",
"platform": null,
"description": "MySQL Connector/Python\n======================\n\n.. image:: https://img.shields.io/pypi/v/mysql-connector-python.svg\n :target: https://pypi.org/project/mysql-connector-python/\n.. image:: https://img.shields.io/pypi/pyversions/mysql-connector-python.svg\n :target: https://pypi.org/project/mysql-connector-python/\n.. image:: https://img.shields.io/pypi/l/mysql-connector-python.svg\n :target: https://pypi.org/project/mysql-connector-python/\n\n\nMySQL Connector/Python enables Python programs to access MySQL databases, using\nan API that is compliant with the `Python Database API Specification v2.0\n(PEP 249) <https://www.python.org/dev/peps/pep-0249/>`_ - We refer to it as the\n`Classic API <https://dev.mysql.com/doc/connector-python/en/connector-python-reference.html>`_.\n\n\n\n\n\n\nFeatures\n--------\n\n* `Asynchronous Connectivity <https://dev.mysql.com/doc/connector-python/en/connector-python-asyncio.html>`_\n* `C-extension <https://dev.mysql.com/doc/connector-python/en/connector-python-cext.html>`_\n* `Telemetry <https://dev.mysql.com/doc/connector-python/en/connector-python-opentelemetry.html>`_\n\n\n\n\n\nInstallation\n------------\n\nThe recommended way to install Connector/Python is via `pip <https://pip.pypa.io/>`_.\n\nMake sure you have a recent `pip <https://pip.pypa.io/>`_ version installed\non your system. If your system already has ``pip`` installed, you might need\nto update it. Or you can use the `standalone pip installer <https://pip.pypa.io/en/latest/installation/>`_.\n\n\n\n\n.. code-block:: bash\n\n $ pip install mysql-connector-python\n\n\n\n\n\n\n++++++++++++++++++++\nInstallation Options\n++++++++++++++++++++\n\nConnector packages included in MySQL Connector/Python allow you to install\noptional dependencies to unleash certain functionalities.\n\n\n.. code-block:: bash\n\n # 3rd party packages to unleash the telemetry functionality are installed\n $ pip install mysql-connector-python[telemetry]\n\n\n\n\n\nThis installation option can be seen as a shortcut to install all the\ndependencies needed by a particular feature. Mind that this is optional\nand you are free to install the required dependencies by yourself.\n\n\nAvailable options:\n\n* dns-srv\n* gssapi\n* fido2\n* telemetry\n\n\n\n\n\n\nSample Code\n-----------\n\n.. code:: python\n\n import mysql.connector\n\n # Connect to server\n cnx = mysql.connector.connect(\n host=\"127.0.0.1\",\n port=3306,\n user=\"mike\",\n password=\"s3cre3t!\")\n\n # Get a cursor\n cur = cnx.cursor()\n\n # Execute a query\n cur.execute(\"SELECT CURDATE()\")\n\n # Fetch one result\n row = cur.fetchone()\n print(\"Current date is: {0}\".format(row[0]))\n\n # Close connection\n cnx.close()\n\n\n\n\n\n\nAdditional Resources\n--------------------\n\n- `MySQL Connector/Python Developer Guide <https://dev.mysql.com/doc/connector-python/en/>`_\n\n- `MySQL Connector/Python Forum <http://forums.mysql.com/list.php?50>`_\n- `MySQL Public Bug Tracker <https://bugs.mysql.com>`_\n- `Slack <https://mysqlcommunity.slack.com>`_ (`Sign-up <https://lefred.be/mysql-community-on-slack/>`_ required if you do not have an Oracle account)\n- `Stack Overflow <https://stackoverflow.com/questions/tagged/mysql-connector-python>`_\n- `Oracle Blogs <https://blogs.oracle.com/search.html?q=connector-python>`_\n\n\n\n\nContributing\n------------\n\nThere are a few ways to contribute to the Connector/Python code. Please refer\nto the `contributing guidelines <CONTRIBUTING.md>`_ for additional information.\n\n\nLicense\n-------\n\nPlease refer to the `README.txt <README.txt>`_ and `LICENSE.txt <LICENSE.txt>`_\nfiles, available in this repository, for further details.\n\n\n",
"bugtrack_url": null,
"license": "GNU GPLv2 (with FOSS License Exception)",
"summary": "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).",
"version": "9.1.0",
"project_urls": {
"Blog": "https://blogs.oracle.com/mysql/",
"Bug System": "https://bugs.mysql.com/",
"Documentation": "https://dev.mysql.com/doc/connector-python/en/",
"Downloads": "https://dev.mysql.com/downloads/connector/python/",
"Forums": "https://forums.mysql.com/list.php?50",
"Homepage": "https://dev.mysql.com/doc/connector-python/en/",
"Release Notes": "https://dev.mysql.com/doc/relnotes/connector-python/en/",
"Slack": "https://mysqlcommunity.slack.com/messages/connectors",
"Source Code": "https://github.com/mysql/mysql-connector-python"
},
"split_keywords": [
"mysql",
" database",
" db",
" connector",
" driver"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "89157443b55cd9a1c8767927c2ae876792f27332eac6499ae1f80cdbef48374c",
"md5": "77533f273ca222c0667ef33f9db704f0",
"sha256": "dcdcf380d07b9ca6f18a95e9516a6185f2ab31a53d290d5e698e77e59c043c9e"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "77533f273ca222c0667ef33f9db704f0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 15141195,
"upload_time": "2024-10-15T07:33:26",
"upload_time_iso_8601": "2024-10-15T07:33:26.925754Z",
"url": "https://files.pythonhosted.org/packages/89/15/7443b55cd9a1c8767927c2ae876792f27332eac6499ae1f80cdbef48374c/mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93e683babb0ac562a9ce6e77d9c586b4be7f2a7c0eded68dc696adb9ba6b8271",
"md5": "f9579a31dd592a17824865cf7b235510",
"sha256": "948ef0c7da87901176d4320e0f40a3277ee06fe6f58ce151c1e60d8d50fdeaf4"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "f9579a31dd592a17824865cf7b235510",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 15967062,
"upload_time": "2024-10-15T07:33:42",
"upload_time_iso_8601": "2024-10-15T07:33:42.738992Z",
"url": "https://files.pythonhosted.org/packages/93/e6/83babb0ac562a9ce6e77d9c586b4be7f2a7c0eded68dc696adb9ba6b8271/mysql_connector_python-9.1.0-cp310-cp310-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "07408b8fbd3456eda383bf97d978199063f9863385dd7d5ded17dd5f599c21cc",
"md5": "9869a43a7ea74b692ba3ab9dc5693c2b",
"sha256": "abf16fc1155ebeba5558e5702dd7210d634ac8da484eca05a640b68a548dc7cf"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "9869a43a7ea74b692ba3ab9dc5693c2b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 34059455,
"upload_time": "2024-10-15T07:34:11",
"upload_time_iso_8601": "2024-10-15T07:34:11.264523Z",
"url": "https://files.pythonhosted.org/packages/07/40/8b8fbd3456eda383bf97d978199063f9863385dd7d5ded17dd5f599c21cc/mysql_connector_python-9.1.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f9dba254f813732c3dbf28c86551fdb678d8540c8352259fe45a48b317c09d8",
"md5": "cac5d1398e212ffadedbfd2e512a11dc",
"sha256": "aceaab679b852c0a2ec0eed9eb2a490171b3493484f1881b605cbf2f9c5fde6d"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "cac5d1398e212ffadedbfd2e512a11dc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 34403611,
"upload_time": "2024-10-15T07:34:32",
"upload_time_iso_8601": "2024-10-15T07:34:32.018910Z",
"url": "https://files.pythonhosted.org/packages/7f/9d/ba254f813732c3dbf28c86551fdb678d8540c8352259fe45a48b317c09d8/mysql_connector_python-9.1.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c1b363d43a8f6009a5242eb0baf2e4a0e76f7e5696a47e8e23e883bd9d9004d",
"md5": "b6cc31068d03f47a677802f12bdbcd9b",
"sha256": "72dcce5f2e4f5910d65f02eb318c1e4622464da007a3ae5e9ccd64169d8efac3"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "b6cc31068d03f47a677802f12bdbcd9b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 16060123,
"upload_time": "2024-10-15T07:34:43",
"upload_time_iso_8601": "2024-10-15T07:34:43.487780Z",
"url": "https://files.pythonhosted.org/packages/1c/1b/363d43a8f6009a5242eb0baf2e4a0e76f7e5696a47e8e23e883bd9d9004d/mysql_connector_python-9.1.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2a1d3bfa896437f32d8fc114881f9ce49fd6bb3195c390557f260c7d4d56f9e",
"md5": "8c261cf3016ce05c626bf4e81fd79ecf",
"sha256": "9b23a8e2acee91b5120febe00c53e7f472b9b6d49618e39fa1af86cdc1f0ade8"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "8c261cf3016ce05c626bf4e81fd79ecf",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 15141174,
"upload_time": "2024-10-15T07:34:56",
"upload_time_iso_8601": "2024-10-15T07:34:56.210080Z",
"url": "https://files.pythonhosted.org/packages/e2/a1/d3bfa896437f32d8fc114881f9ce49fd6bb3195c390557f260c7d4d56f9e/mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc30aecd4f33a76d9a3f0f40bad5870dfd790bf596feb3ce3a337f7febe183b4",
"md5": "0e4cfa959524bce4d340354584138bb0",
"sha256": "e15153cb8ab5fcec00b99077de536489d22d4809fc28f633850398fef0560b1f"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "0e4cfa959524bce4d340354584138bb0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 15967071,
"upload_time": "2024-10-15T07:35:07",
"upload_time_iso_8601": "2024-10-15T07:35:07.384347Z",
"url": "https://files.pythonhosted.org/packages/fc/30/aecd4f33a76d9a3f0f40bad5870dfd790bf596feb3ce3a337f7febe183b4/mysql_connector_python-9.1.0-cp311-cp311-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62de1ead6a3017196193cf56f95c7e47315769631c60441518afd5e5fb6c35d5",
"md5": "591199b9bb802c32e8cab4dc78b5b9d0",
"sha256": "fec943d333851c4b5e57cd0b04dde36e6817f0d4d62b2a58ce028a82be444866"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "591199b9bb802c32e8cab4dc78b5b9d0",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 34064551,
"upload_time": "2024-10-15T07:35:34",
"upload_time_iso_8601": "2024-10-15T07:35:34.383194Z",
"url": "https://files.pythonhosted.org/packages/62/de/1ead6a3017196193cf56f95c7e47315769631c60441518afd5e5fb6c35d5/mysql_connector_python-9.1.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c6f8e1ac70ac448447a688187333432ae4129345d150f11ce84b4f7b26e866d1",
"md5": "80ebd7ca210f89035c1d59e40ad016eb",
"sha256": "c36a9b9ebf9587aaa5d7928468fefe8faf6fc993a03cb242bb160ede9cf75b2d"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "80ebd7ca210f89035c1d59e40ad016eb",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 34412027,
"upload_time": "2024-10-15T07:36:15",
"upload_time_iso_8601": "2024-10-15T07:36:15.626921Z",
"url": "https://files.pythonhosted.org/packages/c6/f8/e1ac70ac448447a688187333432ae4129345d150f11ce84b4f7b26e866d1/mysql_connector_python-9.1.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "541598d703a1101e0bfb106e4085f41f937ddca869d16746c076fb818b6f883d",
"md5": "488493981d98b0a0f62218a13c8c2926",
"sha256": "7b2eb48518b8c2bc9636883d264b291e5c93824fc6b61823ca9cf396a09474ad"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "488493981d98b0a0f62218a13c8c2926",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 16059302,
"upload_time": "2024-10-15T07:36:37",
"upload_time_iso_8601": "2024-10-15T07:36:37.727457Z",
"url": "https://files.pythonhosted.org/packages/54/15/98d703a1101e0bfb106e4085f41f937ddca869d16746c076fb818b6f883d/mysql_connector_python-9.1.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b0764b28bf024ba99a05cba78745e231e24f6d2a9b63a1cfeba7c36a69cbd077",
"md5": "5323835ec3ba2efbd61cffb4e7b8b259",
"sha256": "f67b22e3eaf5b03ffac97232d3dd67b56abcacad907ad4391c847bad5ba58f0e"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "5323835ec3ba2efbd61cffb4e7b8b259",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 15141453,
"upload_time": "2024-10-15T07:36:47",
"upload_time_iso_8601": "2024-10-15T07:36:47.854264Z",
"url": "https://files.pythonhosted.org/packages/b0/76/4b28bf024ba99a05cba78745e231e24f6d2a9b63a1cfeba7c36a69cbd077/mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "58380fb13631332a59509eb7725a87b90dfd811bf82d7257d34484346a87f937",
"md5": "96d68ac501293a59cadcfbd9fa3a5c1b",
"sha256": "c75f674a52b8820c90d466183b2bb59f89bcf09d17ebe9b391313d89565c8896"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "96d68ac501293a59cadcfbd9fa3a5c1b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 15967485,
"upload_time": "2024-10-15T07:37:02",
"upload_time_iso_8601": "2024-10-15T07:37:02.674512Z",
"url": "https://files.pythonhosted.org/packages/58/38/0fb13631332a59509eb7725a87b90dfd811bf82d7257d34484346a87f937/mysql_connector_python-9.1.0-cp312-cp312-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6bf3973681fc3714c8b4372903997ca50e9cce9eb489f0fdfce415be4cf70a5",
"md5": "659b63d5909f943f0f2a7ddfae4babe1",
"sha256": "e75ecb3df2c2cbe4d92d5dd58a318fa708edebc0fa2d850fc2a9d42481dbb808"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "659b63d5909f943f0f2a7ddfae4babe1",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 34065410,
"upload_time": "2024-10-15T07:37:28",
"upload_time_iso_8601": "2024-10-15T07:37:28.517302Z",
"url": "https://files.pythonhosted.org/packages/d6/bf/3973681fc3714c8b4372903997ca50e9cce9eb489f0fdfce415be4cf70a5/mysql_connector_python-9.1.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "61a6a322e8a7dd8daf6a2006828d4848d0b33fb627703635ee23b2278033c50b",
"md5": "f7603b1f35947e794d5060cc8449fec0",
"sha256": "7d99c0a841a2c2a0e4d5b28376c1bfac794ec3821b66eb6fa2f7702cec820ee8"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "f7603b1f35947e794d5060cc8449fec0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 34412287,
"upload_time": "2024-10-15T07:37:55",
"upload_time_iso_8601": "2024-10-15T07:37:55.282856Z",
"url": "https://files.pythonhosted.org/packages/61/a6/a322e8a7dd8daf6a2006828d4848d0b33fb627703635ee23b2278033c50b/mysql_connector_python-9.1.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e81a4f21984691021749888aadc41f27b4c393884fa1d163c64979d408cf795",
"md5": "1ef6851e10d9f88f524b246a3ba8b127",
"sha256": "30a8f0ba84f8adf15a4877e80b3f97f786ce35616d918b9310578a2bd22952d5"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "1ef6851e10d9f88f524b246a3ba8b127",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 16059360,
"upload_time": "2024-10-15T07:38:08",
"upload_time_iso_8601": "2024-10-15T07:38:08.001978Z",
"url": "https://files.pythonhosted.org/packages/4e/81/a4f21984691021749888aadc41f27b4c393884fa1d163c64979d408cf795/mysql_connector_python-9.1.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "39e54f08a4a7f574f5700b3118c084085c6d977ba06941c8837e89e25dc1c5d3",
"md5": "ab44f18241ffc6fecafb49197b7e2b35",
"sha256": "d627ebafc0327b935d8783454e7a4b5c32324ed39a2a1589239490ab850bf7d7"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "ab44f18241ffc6fecafb49197b7e2b35",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 15141401,
"upload_time": "2024-10-15T07:38:22",
"upload_time_iso_8601": "2024-10-15T07:38:22.858635Z",
"url": "https://files.pythonhosted.org/packages/39/e5/4f08a4a7f574f5700b3118c084085c6d977ba06941c8837e89e25dc1c5d3/mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c4dcb39956f85ba4fd89abfcce0dbb00e65cc22a193fa2e95c7816acee6009eb",
"md5": "3ea34f8803521f521241b43ec4d335ef",
"sha256": "e26a08a9500407fa8f4a6504f7077d1312bec4fa52cb0a58c1ad324ca1f3eeaa"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "3ea34f8803521f521241b43ec4d335ef",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 15967428,
"upload_time": "2024-10-15T07:38:39",
"upload_time_iso_8601": "2024-10-15T07:38:39.296642Z",
"url": "https://files.pythonhosted.org/packages/c4/dc/b39956f85ba4fd89abfcce0dbb00e65cc22a193fa2e95c7816acee6009eb/mysql_connector_python-9.1.0-cp313-cp313-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6cf298ecd7fdca742deeda783b9ac3c5a7a57fd2e2fccbb920308eb2f2a962af",
"md5": "839734d7ad319b95a52df592c7de65c3",
"sha256": "109e17a4ada1442e3881a51e2bbabcb336ad229a619ac61e9ad24bd6b9b117bd"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "839734d7ad319b95a52df592c7de65c3",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 34065528,
"upload_time": "2024-10-15T07:39:05",
"upload_time_iso_8601": "2024-10-15T07:39:05.620688Z",
"url": "https://files.pythonhosted.org/packages/6c/f2/98ecd7fdca742deeda783b9ac3c5a7a57fd2e2fccbb920308eb2f2a962af/mysql_connector_python-9.1.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93db4d1e501f5eeb4e43aed8b622139d2350cfa049aaf2f8c5662fe0ba446f04",
"md5": "c035d435fbde2e951b45ed4bef368f61",
"sha256": "4f102452c64332b7e042fa37b84d4f15332bd639e479d15035f2a005fb9fbb34"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "c035d435fbde2e951b45ed4bef368f61",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 34412450,
"upload_time": "2024-10-15T07:39:37",
"upload_time_iso_8601": "2024-10-15T07:39:37.984222Z",
"url": "https://files.pythonhosted.org/packages/93/db/4d1e501f5eeb4e43aed8b622139d2350cfa049aaf2f8c5662fe0ba446f04/mysql_connector_python-9.1.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1efc62adbf3495c0e6a7d0a7cdf9a9276651dd8f2f31fda98b8283172fae9736",
"md5": "9bbbe537720b5c6833e35f4e66460227",
"sha256": "25e261f3260ec798c48cb910862a299e565548a1b5421dec84315ddbc9ef28c4"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "9bbbe537720b5c6833e35f4e66460227",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 16059353,
"upload_time": "2024-10-15T07:39:46",
"upload_time_iso_8601": "2024-10-15T07:39:46.378372Z",
"url": "https://files.pythonhosted.org/packages/1e/fc/62adbf3495c0e6a7d0a7cdf9a9276651dd8f2f31fda98b8283172fae9736/mysql_connector_python-9.1.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e5bd547211901248d32092f3e1e7717dbdf8ea85fdb0a508adc9e010aad5e964",
"md5": "dc919124f7bd03d6d265b4b32d9d0305",
"sha256": "ec4386b2426bfb07f83455bf895d8a7e2d6c067343ac05be5511083ca2424991"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "dc919124f7bd03d6d265b4b32d9d0305",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 15141260,
"upload_time": "2024-10-15T07:39:55",
"upload_time_iso_8601": "2024-10-15T07:39:55.257994Z",
"url": "https://files.pythonhosted.org/packages/e5/bd/547211901248d32092f3e1e7717dbdf8ea85fdb0a508adc9e010aad5e964/mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18d5b740b641a174c5e815de97ecf5c16bf146e3aef89a42da1e9870d06e50ab",
"md5": "79b408997bd4644fe97b609b5b1fa6da",
"sha256": "28fd99ee464ac3b02d1e2a71a63ca4f25c6110e4414a46a5b64631e6d2096899"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "79b408997bd4644fe97b609b5b1fa6da",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 15966866,
"upload_time": "2024-10-15T07:40:07",
"upload_time_iso_8601": "2024-10-15T07:40:07.971169Z",
"url": "https://files.pythonhosted.org/packages/18/d5/b740b641a174c5e815de97ecf5c16bf146e3aef89a42da1e9870d06e50ab/mysql_connector_python-9.1.0-cp39-cp39-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7865d4529011aeb35c26ad4a2921732bc791552e93db5320cafdc866f46f57b5",
"md5": "ad44b9bc94fa310d281d154818fc90bb",
"sha256": "e2f0876e1efd76e05853cb0a623dba2746ee70686c043019d811737dd5c3d871"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "ad44b9bc94fa310d281d154818fc90bb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 34056423,
"upload_time": "2024-10-15T07:40:29",
"upload_time_iso_8601": "2024-10-15T07:40:29.084891Z",
"url": "https://files.pythonhosted.org/packages/78/65/d4529011aeb35c26ad4a2921732bc791552e93db5320cafdc866f46f57b5/mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6337024485f8b32974302e829f1ba107f0fd289041031346c88366abbc0ff935",
"md5": "406114384cffcce37a403a360c98a2d2",
"sha256": "6d7d5d458d0d600bbbebd9f2bce551e386b359bcce6026f7369b57922d26f13a"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "406114384cffcce37a403a360c98a2d2",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 34401743,
"upload_time": "2024-10-15T07:40:58",
"upload_time_iso_8601": "2024-10-15T07:40:58.013623Z",
"url": "https://files.pythonhosted.org/packages/63/37/024485f8b32974302e829f1ba107f0fd289041031346c88366abbc0ff935/mysql_connector_python-9.1.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "31eabe95897e946fa1883af0ffab20542cbc9241b690f713fa21cb3bcb9e49b0",
"md5": "456775944d641a40e48e2e0730cb17ec",
"sha256": "c350b1aaf257b1b778f44b8bfaeda07751f55e150f5a7464342f36e4aac8e805"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "456775944d641a40e48e2e0730cb17ec",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 16060172,
"upload_time": "2024-10-15T07:41:12",
"upload_time_iso_8601": "2024-10-15T07:41:12.241493Z",
"url": "https://files.pythonhosted.org/packages/31/ea/be95897e946fa1883af0ffab20542cbc9241b690f713fa21cb3bcb9e49b0/mysql_connector_python-9.1.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ac7e5546cf19c8d0724e962e8be1a5d1e7491f634df550bf9da073fb6c2b93a1",
"md5": "2b4724f92cfd20ccb0bf75bb9bb3c970",
"sha256": "dacf1aa84dc7dd8ae908626c3ae50fce956d0105130c7465fd248a4f035d50b1"
},
"downloads": -1,
"filename": "mysql_connector_python-9.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "2b4724f92cfd20ccb0bf75bb9bb3c970",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.9",
"size": 381081,
"upload_time": "2024-10-15T07:41:15",
"upload_time_iso_8601": "2024-10-15T07:41:15.539485Z",
"url": "https://files.pythonhosted.org/packages/ac/7e/5546cf19c8d0724e962e8be1a5d1e7491f634df550bf9da073fb6c2b93a1/mysql_connector_python-9.1.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7c7d7adba0a87d34c56ce2e8c35f9965df860a087a03e9651039f7916abd483",
"md5": "d9df236b94117e6a0e4b6680a931543e",
"sha256": "346261a2aeb743a39cf66ba8bde5e45931d313b76ce0946a69a6d1187ec7d279"
},
"downloads": -1,
"filename": "mysql-connector-python-9.1.0.tar.gz",
"has_sig": false,
"md5_digest": "d9df236b94117e6a0e4b6680a931543e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 307529,
"upload_time": "2024-10-15T07:45:07",
"upload_time_iso_8601": "2024-10-15T07:45:07.137932Z",
"url": "https://files.pythonhosted.org/packages/d7/c7/d7adba0a87d34c56ce2e8c35f9965df860a087a03e9651039f7916abd483/mysql-connector-python-9.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-15 07:45:07",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "mysql",
"github_project": "mysql-connector-python",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"lcname": "mysql-connector-python"
}