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": "https://files.pythonhosted.org/packages/72/0a/f00a0a600b848d8cb15b9584e473e0fa27d4738b73407c2fc4452da07e4e/mysqlx-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\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.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",
" xdevapi",
" nosql",
" docstore"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "46b22162246869a6a365b652af029df85f134314f1f523037ef6e05ce00c09f3",
"md5": "8f3095933dc834df1bfec0e206a5b821",
"sha256": "57a335b1604e27a71bdd39a9401ebe9e23f8a11a0078bb54881af562648b3d89"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp310-cp310-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "8f3095933dc834df1bfec0e206a5b821",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1546349,
"upload_time": "2024-10-15T07:41:18",
"upload_time_iso_8601": "2024-10-15T07:41:18.043628Z",
"url": "https://files.pythonhosted.org/packages/46/b2/2162246869a6a365b652af029df85f134314f1f523037ef6e05ce00c09f3/mysqlx_connector_python-9.1.0-cp310-cp310-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d9efa81180d15d1e9ca841dc36cdcef7c5272990c0ec6894ae1276832bf34c7c",
"md5": "06e0df648079b27d68e71b234caeff76",
"sha256": "1572a5751bc2b618cfdf2dad74017cf9042db1765c54e801aed8311987f4207b"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp310-cp310-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "06e0df648079b27d68e71b234caeff76",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 1618653,
"upload_time": "2024-10-15T07:41:20",
"upload_time_iso_8601": "2024-10-15T07:41:20.773988Z",
"url": "https://files.pythonhosted.org/packages/d9/ef/a81180d15d1e9ca841dc36cdcef7c5272990c0ec6894ae1276832bf34c7c/mysqlx_connector_python-9.1.0-cp310-cp310-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b657eebc88eed41601a603395bba1c94219f57ce12aa927057731a8ec765ca28",
"md5": "3e7f70043cdb867f5f219441d5679c99",
"sha256": "cdc7cd236973c59693d89cac327c28b79bed650abd76928968b67b7ab848517a"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "3e7f70043cdb867f5f219441d5679c99",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 19619169,
"upload_time": "2024-10-15T07:41:38",
"upload_time_iso_8601": "2024-10-15T07:41:38.905225Z",
"url": "https://files.pythonhosted.org/packages/b6/57/eebc88eed41601a603395bba1c94219f57ce12aa927057731a8ec765ca28/mysqlx_connector_python-9.1.0-cp310-cp310-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2a456839e593d52afaf0265625ec0ab9dcdc56f39c78595e486195543591785d",
"md5": "4994bd94db32e508840f562b00d5329f",
"sha256": "32ef1be1b02f102c41e4f8c63ec83db7bd0c066fac88e576794a91f62b22467a"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "4994bd94db32e508840f562b00d5329f",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 19843585,
"upload_time": "2024-10-15T07:42:00",
"upload_time_iso_8601": "2024-10-15T07:42:00.260529Z",
"url": "https://files.pythonhosted.org/packages/2a/45/6839e593d52afaf0265625ec0ab9dcdc56f39c78595e486195543591785d/mysqlx_connector_python-9.1.0-cp310-cp310-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c498bb8188d564012b7ace8d7d4fcf2d32a3171e7667bb0c03ef4bc1e717ff75",
"md5": "fd9669469c119f3b0b8413b1974fd443",
"sha256": "891b227948edae51834bbd107593623fd793f09da77669acf5be50b030f72da4"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "fd9669469c119f3b0b8413b1974fd443",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 791813,
"upload_time": "2024-10-15T07:42:03",
"upload_time_iso_8601": "2024-10-15T07:42:03.750544Z",
"url": "https://files.pythonhosted.org/packages/c4/98/bb8188d564012b7ace8d7d4fcf2d32a3171e7667bb0c03ef4bc1e717ff75/mysqlx_connector_python-9.1.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c55fbcaba22c67dbf992644d2324816057bf0d4b98c300e258a54a5f83f14d4e",
"md5": "6681ef85c894e61cb425b6e71840ca77",
"sha256": "b7c276a935fcca49e5f1838220a5bb6285e23d3c4cfcbf4f6f8a5c778d425f91"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp311-cp311-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "6681ef85c894e61cb425b6e71840ca77",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1546142,
"upload_time": "2024-10-15T07:42:07",
"upload_time_iso_8601": "2024-10-15T07:42:07.110148Z",
"url": "https://files.pythonhosted.org/packages/c5/5f/bcaba22c67dbf992644d2324816057bf0d4b98c300e258a54a5f83f14d4e/mysqlx_connector_python-9.1.0-cp311-cp311-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e55ced6c2e91dbd7dd40d56753ca0b051f749f67236f4b3b6d62dbc28091b6c3",
"md5": "fbf79e56f4cb2b5470016becc3f3ee32",
"sha256": "90682761fe26505bc157406d9b4ec42b471935f6f958eaf3e5a6703edbe7a799"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp311-cp311-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "fbf79e56f4cb2b5470016becc3f3ee32",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 1618627,
"upload_time": "2024-10-15T07:42:10",
"upload_time_iso_8601": "2024-10-15T07:42:10.025958Z",
"url": "https://files.pythonhosted.org/packages/e5/5c/ed6c2e91dbd7dd40d56753ca0b051f749f67236f4b3b6d62dbc28091b6c3/mysqlx_connector_python-9.1.0-cp311-cp311-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5182f444da8a03faec83723fe9830812889d287b32ff40664e726868d1495a8",
"md5": "e97588de527f131ebae1ef5355d0ff7f",
"sha256": "726995b707698f18f04f6444d51133f86c5bb258583ada9b336360a50a587918"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "e97588de527f131ebae1ef5355d0ff7f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 19619737,
"upload_time": "2024-10-15T07:42:34",
"upload_time_iso_8601": "2024-10-15T07:42:34.762149Z",
"url": "https://files.pythonhosted.org/packages/a5/18/2f444da8a03faec83723fe9830812889d287b32ff40664e726868d1495a8/mysqlx_connector_python-9.1.0-cp311-cp311-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "54b904ff783c628dbf90e2ea8f74ecf57d1fd84c26c1914e4c70b30de27ac500",
"md5": "12c0e7b223a5c1da8db8ea147d7e7353",
"sha256": "7bc80a4938147f6ebf93507f86e644f2cf8eb2c8afc326ac68e5d75ff1c7773a"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "12c0e7b223a5c1da8db8ea147d7e7353",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 19844202,
"upload_time": "2024-10-15T07:42:55",
"upload_time_iso_8601": "2024-10-15T07:42:55.306169Z",
"url": "https://files.pythonhosted.org/packages/54/b9/04ff783c628dbf90e2ea8f74ecf57d1fd84c26c1914e4c70b30de27ac500/mysqlx_connector_python-9.1.0-cp311-cp311-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d6b4dc3ef9f315bec53783491ccff35a8174234e2091d35534b596c1a1c29815",
"md5": "f2f5a247f2326885439c34cdbd17d021",
"sha256": "b8207e61e8aef6aef4ae5e64a1f9c16cfa3ef351b95abc5e0206e70f1e25088f"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "f2f5a247f2326885439c34cdbd17d021",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 782384,
"upload_time": "2024-10-15T07:42:58",
"upload_time_iso_8601": "2024-10-15T07:42:58.104465Z",
"url": "https://files.pythonhosted.org/packages/d6/b4/dc3ef9f315bec53783491ccff35a8174234e2091d35534b596c1a1c29815/mysqlx_connector_python-9.1.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "df6286d561ae129b86c4d8eead66f6d96932fc61102144ffe7dfc19dff2f6b70",
"md5": "6c5fa26f0d4098ad7efe96d9bba32aa5",
"sha256": "c3e90c02c0d2b676350d2d4db90e9948ef33b4ddd6e608156943bcc172463eae"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp312-cp312-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "6c5fa26f0d4098ad7efe96d9bba32aa5",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1601330,
"upload_time": "2024-10-15T07:43:01",
"upload_time_iso_8601": "2024-10-15T07:43:01.524766Z",
"url": "https://files.pythonhosted.org/packages/df/62/86d561ae129b86c4d8eead66f6d96932fc61102144ffe7dfc19dff2f6b70/mysqlx_connector_python-9.1.0-cp312-cp312-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c686e01e4829c97995b68777022e42c46fc39efb8200daba0c1b108c8dffaadc",
"md5": "b0365effce1e69a5e295e1e3e6e888be",
"sha256": "3a965766d9bf15cf9eb9a524f37e832aa63231e2a4355d7e81e9cc1fcb3e4887"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp312-cp312-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "b0365effce1e69a5e295e1e3e6e888be",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 1662666,
"upload_time": "2024-10-15T07:43:04",
"upload_time_iso_8601": "2024-10-15T07:43:04.192833Z",
"url": "https://files.pythonhosted.org/packages/c6/86/e01e4829c97995b68777022e42c46fc39efb8200daba0c1b108c8dffaadc/mysqlx_connector_python-9.1.0-cp312-cp312-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ee107356e0d56446556bbf2b657a51720c861317ef846338aecc6fe67fbd955",
"md5": "c854dbedc5eb1891bba5ed3158532f25",
"sha256": "8c64f41b14490d7da45952049dd8b2ff47ad37295eabd6c532e1763479da2186"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "c854dbedc5eb1891bba5ed3158532f25",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 19619807,
"upload_time": "2024-10-15T07:43:17",
"upload_time_iso_8601": "2024-10-15T07:43:17.511410Z",
"url": "https://files.pythonhosted.org/packages/3e/e1/07356e0d56446556bbf2b657a51720c861317ef846338aecc6fe67fbd955/mysqlx_connector_python-9.1.0-cp312-cp312-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "448dee408835934ae011e9b48b4a36f8e6882466c904102faca8940d6c80e9cf",
"md5": "8665e47348a35480d7b435a5000336c0",
"sha256": "318d23d1ee6f2c88d1d83f205f31dbe132ba5f0772fecf98ee2e02ec8f71ecec"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "8665e47348a35480d7b435a5000336c0",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 19845019,
"upload_time": "2024-10-15T07:43:38",
"upload_time_iso_8601": "2024-10-15T07:43:38.613147Z",
"url": "https://files.pythonhosted.org/packages/44/8d/ee408835934ae011e9b48b4a36f8e6882466c904102faca8940d6c80e9cf/mysqlx_connector_python-9.1.0-cp312-cp312-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "997ce089c07361fc38dbe716e7eb5b03a953c850a10284663a525d87f59e76c0",
"md5": "e27c9bbe017820c71c9250b24746634c",
"sha256": "ff68a7a07d7230924a8294cdcaef78d1dd0593ca08c599d84f6237dee394a6f8"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "e27c9bbe017820c71c9250b24746634c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 782343,
"upload_time": "2024-10-15T07:43:42",
"upload_time_iso_8601": "2024-10-15T07:43:42.203089Z",
"url": "https://files.pythonhosted.org/packages/99/7c/e089c07361fc38dbe716e7eb5b03a953c850a10284663a525d87f59e76c0/mysqlx_connector_python-9.1.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "13cdf1492ced3cfb6373935f1121f47c9bdec150f183df66dec321a7bd6bd767",
"md5": "ac258719be8bf33cde0b2228e89bc1ee",
"sha256": "7a709b1d25e62ff6f759367a30a975c909dc643493c294ca444c440151c9c6ec"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp313-cp313-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "ac258719be8bf33cde0b2228e89bc1ee",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1601304,
"upload_time": "2024-10-15T07:43:45",
"upload_time_iso_8601": "2024-10-15T07:43:45.047987Z",
"url": "https://files.pythonhosted.org/packages/13/cd/f1492ced3cfb6373935f1121f47c9bdec150f183df66dec321a7bd6bd767/mysqlx_connector_python-9.1.0-cp313-cp313-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d52e9c8f7d1fb38b52b9d457f19c348b6167c89a6da57b44faf671fffff27095",
"md5": "5ce2b414fa30ddf0b05a5636f76d6ab9",
"sha256": "d92bf9bbdad11d89b24363a97d6701f3d6fd571101978545df3918f2554034f8"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp313-cp313-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "5ce2b414fa30ddf0b05a5636f76d6ab9",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 1662654,
"upload_time": "2024-10-15T07:43:47",
"upload_time_iso_8601": "2024-10-15T07:43:47.990957Z",
"url": "https://files.pythonhosted.org/packages/d5/2e/9c8f7d1fb38b52b9d457f19c348b6167c89a6da57b44faf671fffff27095/mysqlx_connector_python-9.1.0-cp313-cp313-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "908b6625f1d56a8de5db405e7a21d7e05fe6d95e3cf92a1aab110d3c0422a751",
"md5": "fc3a4529050af786d7a5feef75b3b091",
"sha256": "bcaf5f68cdf18623d57741dd02bfdec9c9cb3243182d6e1338865438e029762d"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "fc3a4529050af786d7a5feef75b3b091",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19618945,
"upload_time": "2024-10-15T07:44:09",
"upload_time_iso_8601": "2024-10-15T07:44:09.589606Z",
"url": "https://files.pythonhosted.org/packages/90/8b/6625f1d56a8de5db405e7a21d7e05fe6d95e3cf92a1aab110d3c0422a751/mysqlx_connector_python-9.1.0-cp313-cp313-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "55070b5f78b0ae2f0669904f331cd6fb55fcfc4df5dee3617d571fada4a3727f",
"md5": "8b7eeee7a1a8e36140da25c13106a6cb",
"sha256": "56438125cc7c921747f289aabd0b91afed863a18e376d454da427c19c7bcc970"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "8b7eeee7a1a8e36140da25c13106a6cb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 19844058,
"upload_time": "2024-10-15T07:44:24",
"upload_time_iso_8601": "2024-10-15T07:44:24.657467Z",
"url": "https://files.pythonhosted.org/packages/55/07/0b5f78b0ae2f0669904f331cd6fb55fcfc4df5dee3617d571fada4a3727f/mysqlx_connector_python-9.1.0-cp313-cp313-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9814347779eaa9434c7b6cb1839989ab5f90e6ddc8af31065ed58ce55525e1f8",
"md5": "e1a7ebb86c6b66404d761bb8372d201f",
"sha256": "a0808ff4f3a6bfc87e29868da2f8aa6a1308c4299b99e424b4e1b58f06314b56"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "e1a7ebb86c6b66404d761bb8372d201f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 782354,
"upload_time": "2024-10-15T07:44:27",
"upload_time_iso_8601": "2024-10-15T07:44:27.286825Z",
"url": "https://files.pythonhosted.org/packages/98/14/347779eaa9434c7b6cb1839989ab5f90e6ddc8af31065ed58ce55525e1f8/mysqlx_connector_python-9.1.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "634f33b5f387c91980e4cac1462656f06d3d436625d0d497cd5c91e3f6d4a1da",
"md5": "748315612b85af16c6df4932dc5b0fd5",
"sha256": "2faa17cbc306fe5249078d0fff60534f12864297045e25e34ba7e769867ed70e"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp39-cp39-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "748315612b85af16c6df4932dc5b0fd5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1546136,
"upload_time": "2024-10-15T07:44:29",
"upload_time_iso_8601": "2024-10-15T07:44:29.429524Z",
"url": "https://files.pythonhosted.org/packages/63/4f/33b5f387c91980e4cac1462656f06d3d436625d0d497cd5c91e3f6d4a1da/mysqlx_connector_python-9.1.0-cp39-cp39-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "201362955fe240268fa3e24931d7a81ae5a5d040c43a42f93c5884fd765fbb51",
"md5": "4d85e82e73665ec29eae12f303818dae",
"sha256": "d7e75199dd5266eeb66ba15dda3318df2ba8de6904fea598e260ac811641f66a"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp39-cp39-macosx_13_0_x86_64.whl",
"has_sig": false,
"md5_digest": "4d85e82e73665ec29eae12f303818dae",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 1618503,
"upload_time": "2024-10-15T07:44:31",
"upload_time_iso_8601": "2024-10-15T07:44:31.423484Z",
"url": "https://files.pythonhosted.org/packages/20/13/62955fe240268fa3e24931d7a81ae5a5d040c43a42f93c5884fd765fbb51/mysqlx_connector_python-9.1.0-cp39-cp39-macosx_13_0_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "32a42fc36093bc1b141b01e7c69bd1b047b7c1aa9c9ef7c2f5ce8bb916158e7b",
"md5": "bfd035aefabbb31259f6244765538c75",
"sha256": "de4449ffa043d52f9daddaf6e9d58df2c525a97185b859f0261de868c2196754"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"has_sig": false,
"md5_digest": "bfd035aefabbb31259f6244765538c75",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 19618550,
"upload_time": "2024-10-15T07:44:37",
"upload_time_iso_8601": "2024-10-15T07:44:37.917551Z",
"url": "https://files.pythonhosted.org/packages/32/a4/2fc36093bc1b141b01e7c69bd1b047b7c1aa9c9ef7c2f5ce8bb916158e7b/mysqlx_connector_python-9.1.0-cp39-cp39-manylinux_2_28_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b78f405375264b943fabf92de61c39880c1548c8b0d563de31b52f795c041b1e",
"md5": "5dd77350641ecfbc3804b931466fdae6",
"sha256": "2e0b24d649dafd3fa8b5397ab4ef8f508ac32d2aefeb7535e7dc4b5ff9629817"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"has_sig": false,
"md5_digest": "5dd77350641ecfbc3804b931466fdae6",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 19843387,
"upload_time": "2024-10-15T07:44:59",
"upload_time_iso_8601": "2024-10-15T07:44:59.730904Z",
"url": "https://files.pythonhosted.org/packages/b7/8f/405375264b943fabf92de61c39880c1548c8b0d563de31b52f795c041b1e/mysqlx_connector_python-9.1.0-cp39-cp39-manylinux_2_28_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b876cf617ce040d8049430f88961713a5b39365ec80f3bc2863eb2e45fe441f0",
"md5": "6e23da0db605b7d6f9fdbe59636b2d16",
"sha256": "99569d77f6473f383e7d2c93eb80cb677687d9c37d6dfe5824664b466e075049"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "6e23da0db605b7d6f9fdbe59636b2d16",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 791794,
"upload_time": "2024-10-15T07:45:03",
"upload_time_iso_8601": "2024-10-15T07:45:03.245353Z",
"url": "https://files.pythonhosted.org/packages/b8/76/cf617ce040d8049430f88961713a5b39365ec80f3bc2863eb2e45fe441f0/mysqlx_connector_python-9.1.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9540bd01cb8f3d88caf03703635023fa5aa9ce457fd56b3499451e952e01d624",
"md5": "e0516fccc54a0006e3bcb161cef9fda7",
"sha256": "42a4e4ee7921c7b6bbaffa8e712c4e2fb6f68f1f684a616739d4699814f70a88"
},
"downloads": -1,
"filename": "mysqlx_connector_python-9.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "e0516fccc54a0006e3bcb161cef9fda7",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": ">=3.9",
"size": 195989,
"upload_time": "2024-10-15T07:45:04",
"upload_time_iso_8601": "2024-10-15T07:45:04.834534Z",
"url": "https://files.pythonhosted.org/packages/95/40/bd01cb8f3d88caf03703635023fa5aa9ce457fd56b3499451e952e01d624/mysqlx_connector_python-9.1.0-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "720af00a0a600b848d8cb15b9584e473e0fa27d4738b73407c2fc4452da07e4e",
"md5": "ebd4927ea36eea4328ab41d9063fb84c",
"sha256": "f840c25add86c04f14327323ed3c1f33041861ee8910249d72b59c31797594c9"
},
"downloads": -1,
"filename": "mysqlx-connector-python-9.1.0.tar.gz",
"has_sig": false,
"md5_digest": "ebd4927ea36eea4328ab41d9063fb84c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 169216,
"upload_time": "2024-10-15T07:45:08",
"upload_time_iso_8601": "2024-10-15T07:45:08.537619Z",
"url": "https://files.pythonhosted.org/packages/72/0a/f00a0a600b848d8cb15b9584e473e0fa27d4738b73407c2fc4452da07e4e/mysqlx-connector-python-9.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-15 07:45:08",
"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"
}