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 contains an implementation of the `XDevAPI <https://dev.mysql.com/doc/x-devapi-userguide/en>`_
- An Application Programming Interface for working with the `MySQL Document Store
<https://dev.mysql.com/doc/refman/en/document-store.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 mysqlx-connector-python
Please refer to the `installation tutorial <https://dev.mysql.com/doc/dev/connector-python/installation.html>`_
for installation alternatives of the XDevAPI.
++++++++++++++++++++
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 compression functionality are installed
$ pip install mysqlx-connector-python[compression]
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
* compression
Sample Code
-----------
.. code:: python
import mysqlx
# Connect to server
session = mysqlx.get_session(
host="127.0.0.1",
port=33060,
user="mike",
password="s3cr3t!")
schema = session.get_schema("test")
# Use the collection "my_collection"
collection = schema.get_collection("my_collection")
# Specify which document to find with Collection.find()
result = collection.find("name like :param") \
.bind("param", "S%") \
.limit(1) \
.execute()
# Print document
docs = result.fetch_all()
print(r"Name: {0}".format(docs[0]["name"]))
# Close session
session.close()
Additional Resources
--------------------
- `MySQL Connector/Python X DevAPI Reference <https://dev.mysql.com/doc/dev/connector-python/>`_
- `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": "mysqlx-connector-python",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "mysql, database, db, connector, driver, xdevapi, nosql, docstore",
"author": "Oracle and/or its affiliates",
"author_email": null,
"download_url": null,
"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\n\n\nMySQL Connector/Python contains an implementation of the `XDevAPI <https://dev.mysql.com/doc/x-devapi-userguide/en>`_\n- An Application Programming Interface for working with the `MySQL Document Store\n<https://dev.mysql.com/doc/refman/en/document-store.html>`_.\n\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\n\n.. code-block:: bash\n\n $ pip install mysqlx-connector-python\n\nPlease refer to the `installation tutorial <https://dev.mysql.com/doc/dev/connector-python/installation.html>`_\nfor installation alternatives of the XDevAPI.\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\n\n\n\n.. code-block:: bash\n\n # 3rd party packages to unleash the compression functionality are installed\n $ pip install mysqlx-connector-python[compression]\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\n\n\nAvailable options:\n\n* dns-srv\n* compression\n\n\n\n\n\n\nSample Code\n-----------\n\n.. code:: python\n\n import mysqlx\n\n # Connect to server\n session = mysqlx.get_session(\n host=\"127.0.0.1\",\n port=33060,\n user=\"mike\",\n password=\"s3cr3t!\")\n schema = session.get_schema(\"test\")\n\n # Use the collection \"my_collection\"\n collection = schema.get_collection(\"my_collection\")\n\n # Specify which document to find with Collection.find()\n result = collection.find(\"name like :param\") \\\n .bind(\"param\", \"S%\") \\\n .limit(1) \\\n .execute()\n\n # Print document\n docs = result.fetch_all()\n print(r\"Name: {0}\".format(docs[0][\"name\"]))\n\n # Close session\n session.close()\n\n\n\n\nAdditional Resources\n--------------------\n\n\n- `MySQL Connector/Python X DevAPI Reference <https://dev.mysql.com/doc/dev/connector-python/>`_\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 Python driver which implements the X DevAPI, an Application Programming Interface for working with the MySQL Document Store.",
"version": "9.2.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",
" xdevapi",
" nosql",
" docstore"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "dc34d0e74b9828db376dc5907d725ba091d83c55f1eb09f45f3eb60e5528faf9",
"md5": "3d174c57a209d234f84f3f8b68dfa1e8",
"sha256": "80a76f9fbd8750cd401812deda12844109270e696d4a5e1f3ffc7edb0553a341"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp310-cp310-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "3d174c57a209d234f84f3f8b68dfa1e8",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1556261,
"upload_time": "2025-01-21T07:17:53",
"upload_time_iso_8601": "2025-01-21T07:17:53.415494Z",
"url": "https://files.pythonhosted.org/packages/dc/34/d0e74b9828db376dc5907d725ba091d83c55f1eb09f45f3eb60e5528faf9/mysqlx_connector_python-9.2.0-cp310-cp310-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "de9f98ffbe5e7cd353eed9d7c2812222b2862be7b44ae9b170ef625ad98e8b98",
"md5": "7e21bc9bc2f69f4f8c5d7e54570166ad",
"sha256": "408d120ba7b3cdbb177e38c3b6db02192b07c1652ff171f9b88b52ddf665524f"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp310-cp310-macosx_14_0_x86_64.whl",
"has_sig": false,
"md5_digest": "7e21bc9bc2f69f4f8c5d7e54570166ad",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1619018,
"upload_time": "2025-01-21T07:17:55",
"upload_time_iso_8601": "2025-01-21T07:17:55.554423Z",
"url": "https://files.pythonhosted.org/packages/de/9f/98ffbe5e7cd353eed9d7c2812222b2862be7b44ae9b170ef625ad98e8b98/mysqlx_connector_python-9.2.0-cp310-cp310-macosx_14_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b457dc9f85dc677f8429b96b66b21d28f217b8b63bb93eeadf6cbb3a81a0c410",
"md5": "62d066b01b48bb66555a381c14942cb3",
"sha256": "e073b82a55a7d700cce01a2556ae70b6f0c3891910bc1ace67492c7f8eccf89c"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "62d066b01b48bb66555a381c14942cb3",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 19618959,
"upload_time": "2025-01-21T07:17:59",
"upload_time_iso_8601": "2025-01-21T07:17:59.236917Z",
"url": "https://files.pythonhosted.org/packages/b4/57/dc9f85dc677f8429b96b66b21d28f217b8b63bb93eeadf6cbb3a81a0c410/mysqlx_connector_python-9.2.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50704aef3c2280fbd6c96a0be7908d16422f57a59ea0d548944843bba8ca8447",
"md5": "21b8ca30798ccbd1ecbb682af37d6ba1",
"sha256": "ec94723825b2904d35e1894767a94c69fb151ac943b953be75a0af0178300565"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "21b8ca30798ccbd1ecbb682af37d6ba1",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 19844382,
"upload_time": "2025-01-21T07:18:03",
"upload_time_iso_8601": "2025-01-21T07:18:03.950213Z",
"url": "https://files.pythonhosted.org/packages/50/70/4aef3c2280fbd6c96a0be7908d16422f57a59ea0d548944843bba8ca8447/mysqlx_connector_python-9.2.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8ac1912719d18202e406c10f4a6580b39aef816dc92a5d94b188617662e7bd77",
"md5": "69eaca4b0061469e17daca15bb83a1dc",
"sha256": "0d7785af8fe0e02c1a34ada0a0b6c92fa1d57beb61da7ffdd2c407a87f180125"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "69eaca4b0061469e17daca15bb83a1dc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 792011,
"upload_time": "2025-01-21T07:18:06",
"upload_time_iso_8601": "2025-01-21T07:18:06.876890Z",
"url": "https://files.pythonhosted.org/packages/8a/c1/912719d18202e406c10f4a6580b39aef816dc92a5d94b188617662e7bd77/mysqlx_connector_python-9.2.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "470946944a40d823e035d5fff4f2c6323f91f69a2f4bd4e28539eb207dca2c08",
"md5": "508572f16128a8ca749f530e3c56bbc3",
"sha256": "afc2979ccc5c9ac5a78726859f4209fbf9dda6480c233213cec14f714c5de9b2"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp311-cp311-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "508572f16128a8ca749f530e3c56bbc3",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1556277,
"upload_time": "2025-01-21T07:18:08",
"upload_time_iso_8601": "2025-01-21T07:18:08.705716Z",
"url": "https://files.pythonhosted.org/packages/47/09/46944a40d823e035d5fff4f2c6323f91f69a2f4bd4e28539eb207dca2c08/mysqlx_connector_python-9.2.0-cp311-cp311-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "12a7df3291819365f8de7a38e395e8e8671247c8f93135320bfa20ecb6858e54",
"md5": "4be66d3ade3a57fd7535026a094eba57",
"sha256": "3fa9fd817385ca52d41d50827076a0e1a5cd02dfef7d8d31a2c3575569c13ee2"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp311-cp311-macosx_14_0_x86_64.whl",
"has_sig": false,
"md5_digest": "4be66d3ade3a57fd7535026a094eba57",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1618992,
"upload_time": "2025-01-21T07:18:10",
"upload_time_iso_8601": "2025-01-21T07:18:10.521057Z",
"url": "https://files.pythonhosted.org/packages/12/a7/df3291819365f8de7a38e395e8e8671247c8f93135320bfa20ecb6858e54/mysqlx_connector_python-9.2.0-cp311-cp311-macosx_14_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00e4b5db05a580bfe1a99f3965eaa12bbb2d80d7511cdf891ff5091b032f3d40",
"md5": "6e785416f0fdbf668ac279149ab9739a",
"sha256": "1e58601b85afb0a38c8a00d2fc6a33509da5524671fc79a7318ada96ae348b98"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "6e785416f0fdbf668ac279149ab9739a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 19618746,
"upload_time": "2025-01-21T07:18:14",
"upload_time_iso_8601": "2025-01-21T07:18:14.636901Z",
"url": "https://files.pythonhosted.org/packages/00/e4/b5db05a580bfe1a99f3965eaa12bbb2d80d7511cdf891ff5091b032f3d40/mysqlx_connector_python-9.2.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0b142c6dc2311413b285974d64b6f577d292ee96aa64bfce2988cc04e56b8e2b",
"md5": "63681f7bd033a4f7cc8ed4da9fc8258e",
"sha256": "13645aba60a98f960858cfcad7feaaa4a6ccee592b9ea542d27dc1457e9a07dd"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "63681f7bd033a4f7cc8ed4da9fc8258e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 19844613,
"upload_time": "2025-01-21T07:18:19",
"upload_time_iso_8601": "2025-01-21T07:18:19.884368Z",
"url": "https://files.pythonhosted.org/packages/0b/14/2c6dc2311413b285974d64b6f577d292ee96aa64bfce2988cc04e56b8e2b/mysqlx_connector_python-9.2.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b2d78e7213fc02d84672492ac3013ee6c7c597c07ed15cd754574049455a30b9",
"md5": "dcdd7bc8868acb9cb69004cf99e447e1",
"sha256": "7e6754be87c95650c414849250f74d15c047ce974d9e80209b53a9483a25c07b"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "dcdd7bc8868acb9cb69004cf99e447e1",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 782620,
"upload_time": "2025-01-21T07:18:23",
"upload_time_iso_8601": "2025-01-21T07:18:23.057129Z",
"url": "https://files.pythonhosted.org/packages/b2/d7/8e7213fc02d84672492ac3013ee6c7c597c07ed15cd754574049455a30b9/mysqlx_connector_python-9.2.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f53da4f708cd75be2634f887ea5e76c47df85b03e4e0dd8bb8dd2ca462e3cdc9",
"md5": "5b83f93552bc92405a7bd40ec303b2ad",
"sha256": "cca4bef3d45c78f91453ac9b41ae8a130f6b0ad5ccb728668f7457a9bce774ec"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp312-cp312-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "5b83f93552bc92405a7bd40ec303b2ad",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1607873,
"upload_time": "2025-01-21T07:18:25",
"upload_time_iso_8601": "2025-01-21T07:18:25.622773Z",
"url": "https://files.pythonhosted.org/packages/f5/3d/a4f708cd75be2634f887ea5e76c47df85b03e4e0dd8bb8dd2ca462e3cdc9/mysqlx_connector_python-9.2.0-cp312-cp312-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d5b6504a633a0575a1054b7834997cfc8d333f07ea7bd88da1c4f88f14ffcc6a",
"md5": "b067606f48d208f8c13ec95c76ed626f",
"sha256": "b89055a11406264d22d2e2c66a3e9c345ea10a2fef776d8c262bd5e194b7bc28"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp312-cp312-macosx_14_0_x86_64.whl",
"has_sig": false,
"md5_digest": "b067606f48d208f8c13ec95c76ed626f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1663264,
"upload_time": "2025-01-21T07:18:27",
"upload_time_iso_8601": "2025-01-21T07:18:27.503630Z",
"url": "https://files.pythonhosted.org/packages/d5/b6/504a633a0575a1054b7834997cfc8d333f07ea7bd88da1c4f88f14ffcc6a/mysqlx_connector_python-9.2.0-cp312-cp312-macosx_14_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93f28f530e27a4c7db4608560e32d11b08f18a0a8a06112346d85d8c969a2df6",
"md5": "fe05ec8e5bef2bd86a54e4cbd346277c",
"sha256": "8b208a86485a3c4bf10efd6c98b841d5b7a77dd84692be49ea288bde07f403eb"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "fe05ec8e5bef2bd86a54e4cbd346277c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 19620305,
"upload_time": "2025-01-21T07:18:30",
"upload_time_iso_8601": "2025-01-21T07:18:30.882490Z",
"url": "https://files.pythonhosted.org/packages/93/f2/8f530e27a4c7db4608560e32d11b08f18a0a8a06112346d85d8c969a2df6/mysqlx_connector_python-9.2.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "31776e06554393f59e371b7ab21dfd776b0478ee35d8a16688f1fcfb06f5c365",
"md5": "2ac3d9a314cf37427b24415ccbf2ee70",
"sha256": "252b94b8eb0edb78667eae3ac05765de231841da2ed823dc0b4b4fc9499274e3"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "2ac3d9a314cf37427b24415ccbf2ee70",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 19844042,
"upload_time": "2025-01-21T07:18:35",
"upload_time_iso_8601": "2025-01-21T07:18:35.240195Z",
"url": "https://files.pythonhosted.org/packages/31/77/6e06554393f59e371b7ab21dfd776b0478ee35d8a16688f1fcfb06f5c365/mysqlx_connector_python-9.2.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "701d72803d39c189de46e6c22c7aa7170ef71fc4a0d61404c78560f890040790",
"md5": "7930aa35b3ad745a0998dc4178af8dbc",
"sha256": "76dd0a2b4bd7a413791d21da17ae872667a4d5c9b1fb13d30876a0d80db52808"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "7930aa35b3ad745a0998dc4178af8dbc",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 782611,
"upload_time": "2025-01-21T07:18:38",
"upload_time_iso_8601": "2025-01-21T07:18:38.592509Z",
"url": "https://files.pythonhosted.org/packages/70/1d/72803d39c189de46e6c22c7aa7170ef71fc4a0d61404c78560f890040790/mysqlx_connector_python-9.2.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "92dcc89ec4b4595dcdd56bca57449fcb9241d9f0945fbf459d5ca2945eaa7f6d",
"md5": "65f32f0109e638587399bcfbdc21737d",
"sha256": "5c31d861a536852a00e369cab7cc18d05b7535f2198dbe4c3d0395035f64b96a"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp313-cp313-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "65f32f0109e638587399bcfbdc21737d",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1607809,
"upload_time": "2025-01-21T07:18:41",
"upload_time_iso_8601": "2025-01-21T07:18:41.212119Z",
"url": "https://files.pythonhosted.org/packages/92/dc/c89ec4b4595dcdd56bca57449fcb9241d9f0945fbf459d5ca2945eaa7f6d/mysqlx_connector_python-9.2.0-cp313-cp313-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c5b52c90719532798772015cdf732b866401561e7284ffac6ac7100164b2a1b6",
"md5": "22bd3d0f98aa72fdae39a7d7f634cf8b",
"sha256": "0a2eedfc885e74b0a59afa529e614ef119f0fe53200b658fc221e568e671627e"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp313-cp313-macosx_14_0_x86_64.whl",
"has_sig": false,
"md5_digest": "22bd3d0f98aa72fdae39a7d7f634cf8b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1663346,
"upload_time": "2025-01-21T07:18:43",
"upload_time_iso_8601": "2025-01-21T07:18:43.449343Z",
"url": "https://files.pythonhosted.org/packages/c5/b5/2c90719532798772015cdf732b866401561e7284ffac6ac7100164b2a1b6/mysqlx_connector_python-9.2.0-cp313-cp313-macosx_14_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ef0f1983c56c90cd4114eb814b281e623c18c1cae7ff759c27cfd1d1868fdfe9",
"md5": "15c0059b588dad4f103d75e19db61fad",
"sha256": "9fc43e44645d66aae1c5b30dafdbe195be2d57b174999eb6a9b75a04217a1c41"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "15c0059b588dad4f103d75e19db61fad",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19620470,
"upload_time": "2025-01-21T07:18:47",
"upload_time_iso_8601": "2025-01-21T07:18:47.384661Z",
"url": "https://files.pythonhosted.org/packages/ef/0f/1983c56c90cd4114eb814b281e623c18c1cae7ff759c27cfd1d1868fdfe9/mysqlx_connector_python-9.2.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "57739397bd8630e06b1017a95bf01505eb380353786f55389df23a0f43192cd3",
"md5": "3fb469356a53477ee64cf0bfd6b123ff",
"sha256": "24a6cd5563fb6bce93656a2534d9b616707caa70878f696738d417176024b20d"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "3fb469356a53477ee64cf0bfd6b123ff",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19845317,
"upload_time": "2025-01-21T07:18:51",
"upload_time_iso_8601": "2025-01-21T07:18:51.854755Z",
"url": "https://files.pythonhosted.org/packages/57/73/9397bd8630e06b1017a95bf01505eb380353786f55389df23a0f43192cd3/mysqlx_connector_python-9.2.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "71954224f0061365eb20bfef4f1b18458cabe09ddf60df7dd842ac7af920eb3b",
"md5": "8fa61ec8162bb80b2fb1da748821f522",
"sha256": "2d388fe7efe50f7e1091df72efb847a3b6909421e54290571df067d062c9d68c"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "8fa61ec8162bb80b2fb1da748821f522",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 782611,
"upload_time": "2025-01-21T07:18:55",
"upload_time_iso_8601": "2025-01-21T07:18:55.724183Z",
"url": "https://files.pythonhosted.org/packages/71/95/4224f0061365eb20bfef4f1b18458cabe09ddf60df7dd842ac7af920eb3b/mysqlx_connector_python-9.2.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d91169950fccf6c89b88bcfbebcc4aeaaef69c57b835676a2c259a8ee0d8988d",
"md5": "261c14af8072c92f8bb8c12278c77b57",
"sha256": "79fc3a46a97232ec78f8da398f007c919e3fb9486a1abf800043586286d6046c"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp39-cp39-macosx_14_0_arm64.whl",
"has_sig": false,
"md5_digest": "261c14af8072c92f8bb8c12278c77b57",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1556243,
"upload_time": "2025-01-21T07:18:58",
"upload_time_iso_8601": "2025-01-21T07:18:58.308008Z",
"url": "https://files.pythonhosted.org/packages/d9/11/69950fccf6c89b88bcfbebcc4aeaaef69c57b835676a2c259a8ee0d8988d/mysqlx_connector_python-9.2.0-cp39-cp39-macosx_14_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c23cdd9cd3e961ddb7562b6440e9c21e0187fe04236e6f8cc1893b22d2a9f7c2",
"md5": "5ca41b2822c6c2f86c533de73066d0c8",
"sha256": "31e9ab51872b2b9b163e346f6ac72a3f13b96e9d450399ef8d035849450c7290"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp39-cp39-macosx_14_0_x86_64.whl",
"has_sig": false,
"md5_digest": "5ca41b2822c6c2f86c533de73066d0c8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1619003,
"upload_time": "2025-01-21T07:19:01",
"upload_time_iso_8601": "2025-01-21T07:19:01.057601Z",
"url": "https://files.pythonhosted.org/packages/c2/3c/dd9cd3e961ddb7562b6440e9c21e0187fe04236e6f8cc1893b22d2a9f7c2/mysqlx_connector_python-9.2.0-cp39-cp39-macosx_14_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b616ef427dde4e30174a6a449a1e792e006160f1c92d8fe1b8163007998606b5",
"md5": "bd5176047e861dfce351a917f98c5c99",
"sha256": "4896ebb50e3b876ebbd4762f216b5e9bf00ec8029c53ff9d56780fd81291bd0d"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "bd5176047e861dfce351a917f98c5c99",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 19617238,
"upload_time": "2025-01-21T07:19:04",
"upload_time_iso_8601": "2025-01-21T07:19:04.166940Z",
"url": "https://files.pythonhosted.org/packages/b6/16/ef427dde4e30174a6a449a1e792e006160f1c92d8fe1b8163007998606b5/mysqlx_connector_python-9.2.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a5abb7d817b76d72033f5d71675054ccc497168208065596c941beeb3b77a3b",
"md5": "4549f20e286a2be4544d8405fb439e43",
"sha256": "ceddfa05034752b1c18095222bc146053bcbb3763df2f7a6229215193e13002d"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "4549f20e286a2be4544d8405fb439e43",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 19844616,
"upload_time": "2025-01-21T07:19:09",
"upload_time_iso_8601": "2025-01-21T07:19:09.241888Z",
"url": "https://files.pythonhosted.org/packages/2a/5a/bb7d817b76d72033f5d71675054ccc497168208065596c941beeb3b77a3b/mysqlx_connector_python-9.2.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "423a3e87e165870c8bc60fcc3083028b3b94c2ac724ebeb36b180187cb3f2a86",
"md5": "81fdd360e780b2fa012aef17bbb2bf28",
"sha256": "2c30fbbde1c882009c98522bf8da959986c0c12139266b4ceab7a3e4ad791254"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "81fdd360e780b2fa012aef17bbb2bf28",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 791993,
"upload_time": "2025-01-21T07:19:12",
"upload_time_iso_8601": "2025-01-21T07:19:12.437349Z",
"url": "https://files.pythonhosted.org/packages/42/3a/3e87e165870c8bc60fcc3083028b3b94c2ac724ebeb36b180187cb3f2a86/mysqlx_connector_python-9.2.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0be7d6ae8f2008acb0183853648dde8b1cfb545dc9aab5d86faeac0354e79bc7",
"md5": "9cff4463cd54f40b55d3de4939d351bc",
"sha256": "3ca5f797d0bf870398e6db449679c76ed25c5fd5bd9431c7ef98b16811b712e8"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.2.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "9cff4463cd54f40b55d3de4939d351bc",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.9",
"size": 196168,
"upload_time": "2025-01-21T07:19:13",
"upload_time_iso_8601": "2025-01-21T07:19:13.927800Z",
"url": "https://files.pythonhosted.org/packages/0b/e7/d6ae8f2008acb0183853648dde8b1cfb545dc9aab5d86faeac0354e79bc7/mysqlx_connector_python-9.2.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-21 07:17:53",
"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": "mysqlx-connector-python"
}