Añadiendo todos los archivos del proyecto (incluidos secretos y venv)

This commit is contained in:
2026-03-06 18:31:45 -06:00
parent 3a15a3eafa
commit e4d50b6eb5
4965 changed files with 991048 additions and 0 deletions

View File

@@ -0,0 +1,328 @@
Metadata-Version: 2.4
Name: mysql-connector-python
Version: 9.6.0
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).
Author: Oracle and/or its affiliates
Author-email:
License: GNU GPLv2 (with FOSS License Exception)
Project-URL: Homepage, https://dev.mysql.com/doc/connector-python/en/
Project-URL: Documentation, https://dev.mysql.com/doc/connector-python/en/
Project-URL: Downloads, https://dev.mysql.com/downloads/connector/python/
Project-URL: Release Notes, https://dev.mysql.com/doc/relnotes/connector-python/en/
Project-URL: Source Code, https://github.com/mysql/mysql-connector-python
Project-URL: Bug System, https://bugs.mysql.com/
Project-URL: Slack, https://mysqlcommunity.slack.com/messages/connectors
Project-URL: Forums, https://forums.mysql.com/list.php?50
Project-URL: Blog, https://blogs.oracle.com/mysql/
Keywords: mysql,database,db,connector,driver
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Database
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE.txt
Provides-Extra: dns-srv
Requires-Dist: dnspython==2.6.1; extra == "dns-srv"
Provides-Extra: gssapi
Requires-Dist: gssapi==1.8.3; extra == "gssapi"
Provides-Extra: webauthn
Requires-Dist: fido2==1.1.2; extra == "webauthn"
Provides-Extra: telemetry
Requires-Dist: opentelemetry-api==1.33.1; extra == "telemetry"
Requires-Dist: opentelemetry-sdk==1.33.1; extra == "telemetry"
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.33.1; extra == "telemetry"
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-python
Dynamic: summary
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/>`__.
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
------------
Connector/Python contains the Classic and X DevAPI connector APIs, which are
installed separately. Any of these can be installed from a binary
or source distribution.
Binaries are distributed in the following package formats:
* `RPM <https://docs.redhat.com/en/documentation/red_hat_enterprise_linux/8/html/packaging_and_distributing_software/introduction-to-rpm_packaging-and-distributing-software>`__
* `WHEEL <https://packaging.python.org/en/latest/discussions/package-formats/#what-is-a-wheel>`__
On the other hand, the source code is distributed as a compressed file
from which a wheel package can be built.
The recommended way to install Connector/Python is via `pip <https://pip.pypa.io/>`__,
which relies on WHEEL packages. For such a reason, it is the installation procedure
that is going to be described moving forward.
Please, refer to the official MySQL documentation `Connector/Python Installation
<https://dev.mysql.com/doc/connector-python/en/connector-python-installation.html>`__ to
know more about installing from an RPM, or building and installing a WHEEL package from
a source distribution.
Before installing a package with `pip <https://pip.pypa.io/>`__, it is strongly suggested
to have the most recent ``pip`` version installed on your system.
If your system already has ``pip`` installed, you might need to update it. Or you can use
the `standalone pip installer <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
* webauthn
* 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()
HeatWave GenAI and Machine Learning Support
-------------------------------------------
MySQL Connector/Python now includes an optional API for integrating directly with MySQL HeatWave's AI and Machine Learning capabilities. This new SDK is designed to reduce the time required to generate proofs-of-concept (POCs) by providing an intuitive Pythonic interface that automates the management of SQL tables and procedures.
The new ``mysql.ai`` module offers two primary components:
* **GenAI:** Provides implementations of LangChain's abstract ``LLM``, ``VectorStore``, and ``Embeddings`` classes (``MyLLM``, ``MyVectorStore``, ``MyEmbeddings``). This ensures full interoperability with existing LangChain pipelines, allowing developers to easily substitute existing components with HeatWave-backed versions.
* **AutoML:** Provides Scikit-Learn compatible estimators (``MyClassifier``, ``MyRegressor``, ``MyAnomalyDetector``, ``MyGenericTransformer``) that inherit from standard Scikit-Learn mixins. These components accept Pandas DataFrames and can be dropped directly into existing Scikit-Learn pipelines and grid searches.
**Note on Dependencies:** These features introduce dependencies on ``langchain``, ``pandas``, and ``scikit-learn``. To keep existing installations unchanged and the base connector lightweight, these dependencies are **not installed by default**. You must install them separately to use the ``mysql.ai`` features.
**Example: GenAI Chatbot with Memory**
This example demonstrates how to use ``MyLLM`` within a loop to create a simple chatbot that maintains conversation history.
.. code:: python
from collections import deque
from mysql import connector
from mysql.ai.genai import MyLLM
def run_chatbot(db_connection, chat_history_size=5):
# Initialize MyLLM with the database connection
my_llm = MyLLM(db_connection)
# Maintain a limited history for context
chat_history = deque(maxlen=chat_history_size)
system_msg = "System: You are a helpful AI assistant."
while True:
user_input = input("\nUser: ")
if user_input.lower() in ["exit", "quit"]:
break
# Format history and invoke the LLM
history = [system_msg] + list(chat_history) + [f"User: {user_input}"]
prompt = "\n".join(history)
# Invoke HeatWave GenAI
response = my_llm.invoke(prompt)
print(f"Bot: {response}")
# Update history
chat_history.append(f"User: {user_input}")
chat_history.append(f"Bot: {response}")
# Usage
with connector.connect(user='root', database='mlcorpus') as db_connection:
run_chatbot(db_connection)
**Example: HeatWave AutoML in a Scikit-Learn Pipeline**
This example shows how to use ``MyClassifier`` as a drop-in replacement within a standard Scikit-Learn pipeline.
.. code:: python
import pandas as pd
from mysql import connector
from sklearn.pipeline import Pipeline
from sklearn.preprocessing import StandardScaler
from mysql.ai.ml import MyClassifier
# 1. Setup Data (Pandas DataFrame)
X = pd.DataFrame([[0.5, 0.1], [1.0, 0.8], [0.1, 0.2]], columns=["feat1", "feat2"])
y = pd.Series([0, 1, 0], name="target")
# 2. Connect and Train
with connector.connect(user='root', database='mlcorpus') as db_connection:
# Initialize the HeatWave classifier
clf = MyClassifier(db_connection)
# Create a standard Scikit-Learn pipeline
pipe = Pipeline([
("scaler", StandardScaler()),
("mysql_clf", clf)
])
# Fit the model (automates upload and training on HeatWave)
pipe.fit(X, y)
# Predict
preds = pipe.predict(X)
print(f"Predictions: {preds}")
# Score
score = pipe.score(X, y)
print(f"Accuracy: {score}")
Additional Resources
--------------------
- `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 <https://github.com/mysql/mysql-connector-python/blob/trunk/CONTRIBUTING.md>`__ for additional information.
License
-------
Please refer to the `README.txt <https://github.com/mysql/mysql-connector-python/blob/trunk/README.txt>`__ and `LICENSE.txt <https://github.com/mysql/mysql-connector-python/blob/trunk/LICENSE.txt>`__
files, available in this repository, for further details.

View File

@@ -0,0 +1,235 @@
_mysql_connector.cpython-312-x86_64-linux-gnu.so,sha256=mEe4CB967yxQMMCmYq85uXyISg7mXhgul13EF3cq8YI,26525064
mysql/__init__.py,sha256=q03w63xflAqH1OL2J5Ch4XRQj_zzzOsibf2qf_zpH_4,1446
mysql/__pycache__/__init__.cpython-312.pyc,,
mysql/ai/__init__.py,sha256=SnPsL5n_LlwYlXsTT3yRHC7jTCZoksmTBQ5uzfP75Fw,1439
mysql/ai/__pycache__/__init__.cpython-312.pyc,,
mysql/ai/genai/__init__.py,sha256=lxL1KJHdSYA9AE_3xMzW0AbCowDQXZ-3ST3wYTcWL2g,1825
mysql/ai/genai/__pycache__/__init__.cpython-312.pyc,,
mysql/ai/genai/__pycache__/embedding.cpython-312.pyc,,
mysql/ai/genai/__pycache__/generation.cpython-312.pyc,,
mysql/ai/genai/__pycache__/vector_store.cpython-312.pyc,,
mysql/ai/genai/embedding.py,sha256=HVOfvsoCey_dU2ThyT6Op4ID4OMAKfKRP2mmaPdG6Ng,7817
mysql/ai/genai/generation.py,sha256=KtIY1BdfEfK0pxyIiD6cVFpLHPWm6TNAEKC2L_3Zxnw,6186
mysql/ai/genai/vector_store.py,sha256=JeWn04ybPV9bIbk0kHUcHSot6ha5C7Bp3WX7vnzeCN4,18547
mysql/ai/ml/__init__.py,sha256=p-99jvdC7RRyv5JdXrIhyi8ZN1NOsZ2URKbTsDAwLDc,1992
mysql/ai/ml/__pycache__/__init__.cpython-312.pyc,,
mysql/ai/ml/__pycache__/base.cpython-312.pyc,,
mysql/ai/ml/__pycache__/classifier.cpython-312.pyc,,
mysql/ai/ml/__pycache__/model.cpython-312.pyc,,
mysql/ai/ml/__pycache__/outlier.cpython-312.pyc,,
mysql/ai/ml/__pycache__/regressor.cpython-312.pyc,,
mysql/ai/ml/__pycache__/transformer.cpython-312.pyc,,
mysql/ai/ml/base.py,sha256=xrdWbCS3AS9qZmbLJCalr90ZshpMroTwBOhl9ewwfHM,5287
mysql/ai/ml/classifier.py,sha256=h7YCGy_-pRd4jgNICjJFvMlBvaPsX7KMUqrloe3Wj5E,7655
mysql/ai/ml/model.py,sha256=mZUmUZpgPsdjGWnsrT4wAAVKHsSFHfMrNY9bB5V3Y0I,27838
mysql/ai/ml/outlier.py,sha256=4lNt37i7nUo4pkpE0X2X6XF5aXcEOuSESh4DD3SAy5I,8175
mysql/ai/ml/regressor.py,sha256=A5263tESgXzL0HnP-LYJNuH4eXpan8PTpQ0NTAJMsmI,6040
mysql/ai/ml/transformer.py,sha256=Ybfpmam99ZmyYIJSUFbHLyIb1P8u0JDtA9K1nfE8tx0,6692
mysql/ai/utils/__init__.py,sha256=PBKb5Mxg6oB3ypMSuU7eTECLK_cqF3GAEic9eGy36MU,1956
mysql/ai/utils/__pycache__/__init__.cpython-312.pyc,,
mysql/ai/utils/__pycache__/atomic_cursor.cpython-312.pyc,,
mysql/ai/utils/__pycache__/dependencies.cpython-312.pyc,,
mysql/ai/utils/__pycache__/utils.cpython-312.pyc,,
mysql/ai/utils/atomic_cursor.py,sha256=hb7HdkygqfJ3jSj6_KR80yLcCGb4pTilMkcdFDk6XtI,3735
mysql/ai/utils/dependencies.py,sha256=579d4hscMrodR2ItjVAzZN-9MTaQD08ndfRKG37BZUA,3512
mysql/ai/utils/utils.py,sha256=1zYSDUXEdFkO2fSYPOUHe-hOuRQv2jUOmM53F1YVnz4,17818
mysql/connector/__init__.py,sha256=GzNmM1FYd1z8ZCOlnetWUw2adv0wu9dxIoTndD9Pkuo,3427
mysql/connector/__pycache__/__init__.cpython-312.pyc,,
mysql/connector/__pycache__/_decorating.cpython-312.pyc,,
mysql/connector/__pycache__/_scripting.cpython-312.pyc,,
mysql/connector/__pycache__/abstracts.cpython-312.pyc,,
mysql/connector/__pycache__/authentication.cpython-312.pyc,,
mysql/connector/__pycache__/charsets.cpython-312.pyc,,
mysql/connector/__pycache__/connection.cpython-312.pyc,,
mysql/connector/__pycache__/connection_cext.cpython-312.pyc,,
mysql/connector/__pycache__/constants.cpython-312.pyc,,
mysql/connector/__pycache__/conversion.cpython-312.pyc,,
mysql/connector/__pycache__/cursor.cpython-312.pyc,,
mysql/connector/__pycache__/cursor_cext.cpython-312.pyc,,
mysql/connector/__pycache__/custom_types.cpython-312.pyc,,
mysql/connector/__pycache__/dbapi.cpython-312.pyc,,
mysql/connector/__pycache__/errorcode.cpython-312.pyc,,
mysql/connector/__pycache__/errors.cpython-312.pyc,,
mysql/connector/__pycache__/logger.cpython-312.pyc,,
mysql/connector/__pycache__/network.cpython-312.pyc,,
mysql/connector/__pycache__/optionfiles.cpython-312.pyc,,
mysql/connector/__pycache__/pooling.cpython-312.pyc,,
mysql/connector/__pycache__/protocol.cpython-312.pyc,,
mysql/connector/__pycache__/tls_ciphers.cpython-312.pyc,,
mysql/connector/__pycache__/types.cpython-312.pyc,,
mysql/connector/__pycache__/utils.cpython-312.pyc,,
mysql/connector/__pycache__/version.cpython-312.pyc,,
mysql/connector/_decorating.py,sha256=Gx5mQkdSoEpQ1YiItb5tbPX8vsVxo5XYLHsnJoC_NkE,4004
mysql/connector/_scripting.py,sha256=PELVi9Kx8eH4gINTxwb0HzgLVE19TwKfuhyei3A_lMU,15717
mysql/connector/abstracts.py,sha256=mujj4a0zzzC0N5UFfIE1v5CWDuldbkhIWHsC9U7sSms,119616
mysql/connector/aio/__init__.py,sha256=tX5cr8Ip_ptDzBNrl-SBFbYi01t-0l_JAekC28pBivA,1789
mysql/connector/aio/__pycache__/__init__.cpython-312.pyc,,
mysql/connector/aio/__pycache__/_decorating.cpython-312.pyc,,
mysql/connector/aio/__pycache__/abstracts.cpython-312.pyc,,
mysql/connector/aio/__pycache__/authentication.cpython-312.pyc,,
mysql/connector/aio/__pycache__/charsets.cpython-312.pyc,,
mysql/connector/aio/__pycache__/connection.cpython-312.pyc,,
mysql/connector/aio/__pycache__/cursor.cpython-312.pyc,,
mysql/connector/aio/__pycache__/logger.cpython-312.pyc,,
mysql/connector/aio/__pycache__/network.cpython-312.pyc,,
mysql/connector/aio/__pycache__/pooling.cpython-312.pyc,,
mysql/connector/aio/__pycache__/protocol.cpython-312.pyc,,
mysql/connector/aio/__pycache__/utils.cpython-312.pyc,,
mysql/connector/aio/_decorating.py,sha256=UPwH8qzSqRbbsJ5aWbkVNCtGU10CuU7W2sq-39ldPTk,4129
mysql/connector/aio/abstracts.py,sha256=Bsf5G7LBpMtxjUZe_05lBX3pa5ptyrESyoTlnC7NYpI,103117
mysql/connector/aio/authentication.py,sha256=baju73syzGAQnHG-Qkl_YFbKcKad6lFNuDl7v167iRc,12947
mysql/connector/aio/charsets.py,sha256=3WxedXNvCmnkJAkV0eceE1LKHERo44oAebFNZSO9OEU,30367
mysql/connector/aio/connection.py,sha256=La-8RxQgZjwtcn3Kfo2xbQ-8_FUY5ZamK0vpVJGx7Vk,60500
mysql/connector/aio/cursor.py,sha256=EFiJNb0fC6HpPL_ct44F66YJ0EhYJ4WP6ueZUCqrgJg,49466
mysql/connector/aio/logger.py,sha256=p4AohSKK5a-kMIRDxBSf-GtfIvkkwXoCO9puqJk0B28,1563
mysql/connector/aio/network.py,sha256=qI_J4nzz5SXSlbMY2i6vsFvNUqFpg48_-xKejZaPylI,28421
mysql/connector/aio/plugins/__init__.py,sha256=a-FQVlE8bXTrB9MZ1ResjPBApid908wU3grr8xPtBAw,6115
mysql/connector/aio/plugins/__pycache__/__init__.cpython-312.pyc,,
mysql/connector/aio/plugins/__pycache__/authentication_kerberos_client.cpython-312.pyc,,
mysql/connector/aio/plugins/__pycache__/authentication_ldap_sasl_client.cpython-312.pyc,,
mysql/connector/aio/plugins/__pycache__/authentication_oci_client.cpython-312.pyc,,
mysql/connector/aio/plugins/__pycache__/authentication_openid_connect_client.cpython-312.pyc,,
mysql/connector/aio/plugins/__pycache__/authentication_webauthn_client.cpython-312.pyc,,
mysql/connector/aio/plugins/__pycache__/caching_sha2_password.cpython-312.pyc,,
mysql/connector/aio/plugins/__pycache__/mysql_clear_password.cpython-312.pyc,,
mysql/connector/aio/plugins/__pycache__/mysql_native_password.cpython-312.pyc,,
mysql/connector/aio/plugins/__pycache__/sha256_password.cpython-312.pyc,,
mysql/connector/aio/plugins/authentication_kerberos_client.py,sha256=I10QMlWLWKC883yGrTQyZzkvl75xcidiR266ztYX9BA,21691
mysql/connector/aio/plugins/authentication_ldap_sasl_client.py,sha256=Ku7PJcRXW0X_ZFgLJgNe5B0UEevWz66Z-wpKXjXCil4,24075
mysql/connector/aio/plugins/authentication_oci_client.py,sha256=RZFnHRGo4zDCk9OaMDZ21n71lYTtt_BJB7hDcNjRxqI,9406
mysql/connector/aio/plugins/authentication_openid_connect_client.py,sha256=pS_626-dwxvWNzML9ljXLw1YEoS3jpnEjBq826tZJPY,7029
mysql/connector/aio/plugins/authentication_webauthn_client.py,sha256=LJEIALXyh4Iz4_YXTKo4P7kO5alFKni1nKNcHUAKjyk,10972
mysql/connector/aio/plugins/caching_sha2_password.py,sha256=JnWiE5iGiHYDEAsvgp_XX5fD7g-Vle-BG51BFBLRsEo,5916
mysql/connector/aio/plugins/mysql_clear_password.py,sha256=qNEPsdah7U3oQwSc4QUqOxymWrULkZAzBoNUaj7EoiQ,3927
mysql/connector/aio/plugins/mysql_native_password.py,sha256=ZLUQW512wJrBF4gez6mnSrJDKYEJJzvDWgRiidwZpJ8,4581
mysql/connector/aio/plugins/sha256_password.py,sha256=SbckRSXItnvgENDc3Rj8M_UhFSXG9p3jj-sWEBtVgw4,4067
mysql/connector/aio/pooling.py,sha256=JiO9TTuYCX5BXTyMNvUZWiKSUj4LicwebWOj_-k_trI,25901
mysql/connector/aio/protocol.py,sha256=7_4HMr2d7IW9rm15G_m67cSxs1PRc9DzON6L1-WK6Lc,12584
mysql/connector/aio/py.typed,sha256=q03w63xflAqH1OL2J5Ch4XRQj_zzzOsibf2qf_zpH_4,1446
mysql/connector/aio/utils.py,sha256=G3YkXutaZgQtj2UUS2l7oWYz1zf97nrKWX8xFxcnpEo,5813
mysql/connector/authentication.py,sha256=VPxe9E3xYh2ENdbA_MgguEWCgy4MCpeyo490SYofIbU,14765
mysql/connector/charsets.py,sha256=s4HvdD55SuQHWlP5nJHxWRwbat73O6iO8optyY0C0e8,27754
mysql/connector/connection.py,sha256=50_mqH89pSf5DIH6fksSRpn1M4tcbYY3X3qt4rb84AY,64393
mysql/connector/connection_cext.py,sha256=zyewTZlvgbdnhKg11aW6fzvGmeJ0N6uwzjIl3IzmA6w,41416
mysql/connector/constants.py,sha256=c74aRrQ0ipsQyaKvoxBufLhu5dhnmc4pf0dsIZbYO84,42740
mysql/connector/conversion.py,sha256=Go6QqAgoOyJeQo13fZWkLQmi7vBsJbF5rUpf2J21sbY,27328
mysql/connector/cursor.py,sha256=6ptCxHF-Ews4U58js0D0TEO6fr7eLyi7OHhp1jKYymc,51691
mysql/connector/cursor_cext.py,sha256=BuJgBffuoR2j2EdSZvXGA4leo0FQxHZbTFyjy6Xv8-A,43270
mysql/connector/custom_types.py,sha256=h0rJcWD1_iHnByF2Nz4kz3ekhRC-Cr_jS9z124QJ03k,2008
mysql/connector/dbapi.py,sha256=Bbor5fqsEkT6U5VvQBFfmb_H581TEntD2HnYoLE0_So,3258
mysql/connector/django/__init__.py,sha256=q03w63xflAqH1OL2J5Ch4XRQj_zzzOsibf2qf_zpH_4,1446
mysql/connector/django/__pycache__/__init__.cpython-312.pyc,,
mysql/connector/django/__pycache__/base.cpython-312.pyc,,
mysql/connector/django/__pycache__/client.cpython-312.pyc,,
mysql/connector/django/__pycache__/compiler.cpython-312.pyc,,
mysql/connector/django/__pycache__/creation.cpython-312.pyc,,
mysql/connector/django/__pycache__/features.cpython-312.pyc,,
mysql/connector/django/__pycache__/introspection.cpython-312.pyc,,
mysql/connector/django/__pycache__/operations.cpython-312.pyc,,
mysql/connector/django/__pycache__/schema.cpython-312.pyc,,
mysql/connector/django/__pycache__/validation.cpython-312.pyc,,
mysql/connector/django/base.py,sha256=qtyavYUzO5mW-2-N5kW0WS0T5UyJEt_pPW-bF5SIPFI,24478
mysql/connector/django/client.py,sha256=xR5Cpiz-GkJ6s3OH2oy0WijommQ1DkAC52k6B1sBZEk,4163
mysql/connector/django/compiler.py,sha256=O0m-EGmIcgWPCFkGAsZ62WDozVqDPpZ769aq_NZCVJY,1775
mysql/connector/django/creation.py,sha256=c8QnkjDxLTaah-hzJWtPAAqWzqwEu2WUXBwqUU4k5nc,1585
mysql/connector/django/features.py,sha256=5X6X0yAZ80wPk1sVLiNutEHUqdgJQl9XQYb_FyXMtEg,2218
mysql/connector/django/introspection.py,sha256=SMnnAroev8joXQ2pTWJqIe7-RzlflqJeMMi0e7iYTYs,19078
mysql/connector/django/operations.py,sha256=isyVF-NwikKQE7E8ewTH3gF3ivqY3YFmSyLbwpAQEdE,4321
mysql/connector/django/schema.py,sha256=ERANXYuCV62tUTqrIRZyQx4l53Dnsvk1_gS9tFFiBl8,2408
mysql/connector/django/validation.py,sha256=Wu6gK3cCyg3dEWcVi9lGnjCfJd_Gj7jsxP66v2asPd4,1593
mysql/connector/errorcode.py,sha256=nzp908hQDX8twSmEf9KLfb_jgZh9i0Ja6s-BmdEaQQg,69369
mysql/connector/errors.py,sha256=oRQhsZNf5f4AwMqPeR9b6xej4JSPvBjUd9ggLTycAZQ,13382
mysql/connector/locales/__init__.py,sha256=0PtAjJkZEGwTfTOaqB54szV9knQH2CI6D3dwjl0n_GM,2871
mysql/connector/locales/__pycache__/__init__.cpython-312.pyc,,
mysql/connector/locales/eng/__init__.py,sha256=CsQK0HhY2tc-Uuyk_3qKhC0WPyoC_zfVPISmUYi5maM,1470
mysql/connector/locales/eng/__pycache__/__init__.cpython-312.pyc,,
mysql/connector/locales/eng/__pycache__/client_error.cpython-312.pyc,,
mysql/connector/locales/eng/client_error.py,sha256=QUENN6qB-mzt_Qmt4juC9wyY1u8IY6kwJyAN8OBgYxM,7501
mysql/connector/logger.py,sha256=HN-B5JOXLGttWVPK0RFEQTZln9yLABDFXBaDhRVf4Ws,1555
mysql/connector/network.py,sha256=FEnA9E7m_v5eT-XDEdBDiTL4kyMeG5UIFYG-bfX-hnA,30091
mysql/connector/opentelemetry/__init__.py,sha256=4T3QUoz0fk4hsEtI4Z3-FrTHqQRfFfaaVxCN7sENLUc,1446
mysql/connector/opentelemetry/__pycache__/__init__.cpython-312.pyc,,
mysql/connector/opentelemetry/__pycache__/constants.cpython-312.pyc,,
mysql/connector/opentelemetry/__pycache__/context_propagation.cpython-312.pyc,,
mysql/connector/opentelemetry/__pycache__/instrumentation.cpython-312.pyc,,
mysql/connector/opentelemetry/constants.py,sha256=worCd2iklgasXZ5-J3zwdcepuZSOx4daPDyswJNkPgk,2904
mysql/connector/opentelemetry/context_propagation.py,sha256=eQp87-WDclIrq8BkthfN5zeWfeojvywR_XK7DNdlfPo,4321
mysql/connector/opentelemetry/instrumentation.py,sha256=8EQVvbKW4qhNo_NENlyRC4j1GtCP9udh432VnIAa3F8,25032
mysql/connector/optionfiles.py,sha256=w8_aNd2h-_FOce-AbaDTipbDWIqsDvbBnhAD3JGhViE,14239
mysql/connector/plugins/__init__.py,sha256=pZEtWWj7lELnZnAy4opQ3q837ywk7or6CLPK0iCS9lM,6021
mysql/connector/plugins/__pycache__/__init__.cpython-312.pyc,,
mysql/connector/plugins/__pycache__/authentication_kerberos_client.cpython-312.pyc,,
mysql/connector/plugins/__pycache__/authentication_ldap_sasl_client.cpython-312.pyc,,
mysql/connector/plugins/__pycache__/authentication_oci_client.cpython-312.pyc,,
mysql/connector/plugins/__pycache__/authentication_openid_connect_client.cpython-312.pyc,,
mysql/connector/plugins/__pycache__/authentication_webauthn_client.cpython-312.pyc,,
mysql/connector/plugins/__pycache__/caching_sha2_password.cpython-312.pyc,,
mysql/connector/plugins/__pycache__/mysql_clear_password.cpython-312.pyc,,
mysql/connector/plugins/__pycache__/mysql_native_password.cpython-312.pyc,,
mysql/connector/plugins/__pycache__/sha256_password.cpython-312.pyc,,
mysql/connector/plugins/authentication_kerberos_client.py,sha256=A86rus7eOzcrW9SHoAM7iVPfNapSsGnezZUq44C21U8,21624
mysql/connector/plugins/authentication_ldap_sasl_client.py,sha256=Zw_iwwN84CzHAPomdCLK-w5dGHEOwlHulxYoYHcrDtk,23935
mysql/connector/plugins/authentication_oci_client.py,sha256=WxCyzX-hDWdG8gnGI4z5_tqxwabo00aPwHJOokXoZwM,9360
mysql/connector/plugins/authentication_openid_connect_client.py,sha256=ihHjJrJqtRsAUgur7XkBD6_suy4EGaBdfoL6nhadd80,6992
mysql/connector/plugins/authentication_webauthn_client.py,sha256=gCXZxTcxJk02syTJqv9WB_9-rtCsQBXdfKSi5jpxm7w,10933
mysql/connector/plugins/caching_sha2_password.py,sha256=jIqIxGxfxU5PFSKb9RzpPgSYo30v2-8KTsYOC5cVRlg,5849
mysql/connector/plugins/mysql_clear_password.py,sha256=d52G_k67B0PjQF9NxojoUkrWA8qNhAB8Leg7qSqjmEM,3879
mysql/connector/plugins/mysql_native_password.py,sha256=Cc0E4Ffy-ZrV20mVYHccNuk5KPWo6J9zqCqsT-UOl-4,4533
mysql/connector/plugins/sha256_password.py,sha256=pGu_PiQOE6FGRpxmkp51PzWZoQEejmbekSUpZRuZ7ws,4020
mysql/connector/pooling.py,sha256=cRAm6kd9H7KM4OG_wHup5O781GBlCqs8tnS0PmYobpc,25109
mysql/connector/protocol.py,sha256=4z3JZA_c5rMU4-k3uM2fJCMi5TUEfF0hUmaXo08uQJ4,42547
mysql/connector/py.typed,sha256=q03w63xflAqH1OL2J5Ch4XRQj_zzzOsibf2qf_zpH_4,1446
mysql/connector/tls_ciphers.py,sha256=JkiZa9Fm_ayifvA_OqJLud0eMLFOrkSc6G0gX8PCYHw,9155
mysql/connector/types.py,sha256=NauKhN0GsLRY5712E1QhcTsrwtCXnRLSAMHOtzo-NAA,6260
mysql/connector/utils.py,sha256=NA0Z0R7jTtVpj_JAA4JmulinQ31mG21KMDSqn8In9NI,23750
mysql/connector/version.py,sha256=b1GBpFRrodUuDbsUyqlGOKGXN9SW0uq0fO0AR2WUsGA,1980
mysql/vendor/libcrypto.so.3,sha256=0YTnhlUK1MsCkApJ5XGwnAXbITnJihBMkPSdkdwM00Y,5144352
mysql/vendor/libssl.so.3,sha256=FY-rKeZDK96Q1wCUFZQbi7oDb-w0E54JHA7SRIdBL48,799768
mysql/vendor/plugin/authentication_kerberos_client.so,sha256=Z6hQTZl4qonbsRtF111D3oO5rxJ-3QuO9ec5uTLxjIk,9627112
mysql/vendor/plugin/authentication_ldap_sasl_client.so,sha256=Eqk_qFXG9JIib-UtWBZ-if6106bBmnxK2OIioc3BI-k,9365112
mysql/vendor/plugin/authentication_oci_client.so,sha256=wNqmjMfJTQVoGT8fMMV7ngYZr6loZM8QJxEK41t6yz0,10226520
mysql/vendor/plugin/authentication_openid_connect_client.so,sha256=8xbA7Wz9IsThrky9GFqCvgvdYx5mKkyF7HZegl-tIOs,9107704
mysql/vendor/plugin/authentication_webauthn_client.so,sha256=83_f5e80Y5h_DI9l-t6gJQXBpz4KVK1h_eODcFIWDkk,9470640
mysql/vendor/plugin/mysql_native_password.so,sha256=4OFr24nlCszBFSnqwYgy2rvbSEA85pVWvP_gf34eTJI,83976
mysql/vendor/private/libcom_err.so.3,sha256=Fx7YwfigQcTaJxYrfC7kjO-tgaT2cW2jNQQ3BWcjixo,35120
mysql/vendor/private/libcom_err.so.3.0,sha256=Fx7YwfigQcTaJxYrfC7kjO-tgaT2cW2jNQQ3BWcjixo,35120
mysql/vendor/private/libfido2.so.1,sha256=FwVuM4Wvz3usna0xwarTew5eE_LUIzs3hAwk6yGhph8,2522456
mysql/vendor/private/libfido2.so.1.15.0,sha256=FwVuM4Wvz3usna0xwarTew5eE_LUIzs3hAwk6yGhph8,2522456
mysql/vendor/private/libgssapi_krb5.so.2,sha256=pn5p5S-ahB86zYeZh54q4-nArYNcCVsOS4LLuOEZnxo,2667568
mysql/vendor/private/libgssapi_krb5.so.2.2,sha256=pn5p5S-ahB86zYeZh54q4-nArYNcCVsOS4LLuOEZnxo,2667568
mysql/vendor/private/libk5crypto.so.3,sha256=eZb-PqXroCemqPAHcWNnwiJiVssPKEFvcq-p8Ce5ZuM,1334872
mysql/vendor/private/libk5crypto.so.3.1,sha256=eZb-PqXroCemqPAHcWNnwiJiVssPKEFvcq-p8Ce5ZuM,1334872
mysql/vendor/private/libkrb5.so.3,sha256=TqCKsKkMcgq2Hg8Vr0UnF-8Go0kBnk0wY4O_ceFPXxA,4235400
mysql/vendor/private/libkrb5.so.3.3,sha256=TqCKsKkMcgq2Hg8Vr0UnF-8Go0kBnk0wY4O_ceFPXxA,4235400
mysql/vendor/private/libkrb5support.so.0,sha256=PboZgrt88kGNEH1ElzPYR5HLssZVjXeXdNtf6shs5vA,214904
mysql/vendor/private/libkrb5support.so.0.1,sha256=PboZgrt88kGNEH1ElzPYR5HLssZVjXeXdNtf6shs5vA,214904
mysql/vendor/private/libsasl2.so.3,sha256=wdbINXhjeCinjvyH12N6z_4_Kjwr89JLRzl4mY3aXFk,125048
mysql/vendor/private/libsasl2.so.3.0.0,sha256=wdbINXhjeCinjvyH12N6z_4_Kjwr89JLRzl4mY3aXFk,125048
mysql/vendor/private/sasl2/libanonymous.so,sha256=Cw7B5-v9boRt529OdsLVTs7NPWkuB8YZbxa2a51RZXc,22992
mysql/vendor/private/sasl2/libanonymous.so.3,sha256=Cw7B5-v9boRt529OdsLVTs7NPWkuB8YZbxa2a51RZXc,22992
mysql/vendor/private/sasl2/libanonymous.so.3.0.0,sha256=Cw7B5-v9boRt529OdsLVTs7NPWkuB8YZbxa2a51RZXc,22992
mysql/vendor/private/sasl2/libcrammd5.so,sha256=uSiTC1gYIEOKnQ73U1O3Ign0DVo08fJj2tmsqPX06Rs,23200
mysql/vendor/private/sasl2/libcrammd5.so.3,sha256=uSiTC1gYIEOKnQ73U1O3Ign0DVo08fJj2tmsqPX06Rs,23200
mysql/vendor/private/sasl2/libcrammd5.so.3.0.0,sha256=uSiTC1gYIEOKnQ73U1O3Ign0DVo08fJj2tmsqPX06Rs,23200
mysql/vendor/private/sasl2/libdigestmd5.so,sha256=kdJfiD7l6WgTF20u7Bt7ZE9vdqPZfRtrMC0OaFKS5P4,63344
mysql/vendor/private/sasl2/libdigestmd5.so.3,sha256=kdJfiD7l6WgTF20u7Bt7ZE9vdqPZfRtrMC0OaFKS5P4,63344
mysql/vendor/private/sasl2/libdigestmd5.so.3.0.0,sha256=kdJfiD7l6WgTF20u7Bt7ZE9vdqPZfRtrMC0OaFKS5P4,63344
mysql/vendor/private/sasl2/libgs2.so,sha256=UFm8rE7QmIe1PjtNv8rLlf27MSg-9iSBLB7Y0F3HPDk,38120
mysql/vendor/private/sasl2/libgs2.so.3,sha256=UFm8rE7QmIe1PjtNv8rLlf27MSg-9iSBLB7Y0F3HPDk,38120
mysql/vendor/private/sasl2/libgs2.so.3.0.0,sha256=UFm8rE7QmIe1PjtNv8rLlf27MSg-9iSBLB7Y0F3HPDk,38120
mysql/vendor/private/sasl2/libgssapiv2.so,sha256=O5iRfF1Q0XUgf_wHtS7kO9_ghAZbyvVUvEkQlKn2S58,41648
mysql/vendor/private/sasl2/libgssapiv2.so.3,sha256=O5iRfF1Q0XUgf_wHtS7kO9_ghAZbyvVUvEkQlKn2S58,41648
mysql/vendor/private/sasl2/libgssapiv2.so.3.0.0,sha256=O5iRfF1Q0XUgf_wHtS7kO9_ghAZbyvVUvEkQlKn2S58,41648
mysql/vendor/private/sasl2/libplain.so,sha256=jROO-Q85tDloO4Ggp__dDhVS1izYudEz3wPHUHTojq8,22888
mysql/vendor/private/sasl2/libplain.so.3,sha256=jROO-Q85tDloO4Ggp__dDhVS1izYudEz3wPHUHTojq8,22888
mysql/vendor/private/sasl2/libplain.so.3.0.0,sha256=jROO-Q85tDloO4Ggp__dDhVS1izYudEz3wPHUHTojq8,22888
mysql/vendor/private/sasl2/libscram.so,sha256=m7aTsZzJpn_JsgkMgHmzFupR2ZZ246DJt9HBeFHyQC4,49424
mysql/vendor/private/sasl2/libscram.so.3,sha256=m7aTsZzJpn_JsgkMgHmzFupR2ZZ246DJt9HBeFHyQC4,49424
mysql/vendor/private/sasl2/libscram.so.3.0.0,sha256=m7aTsZzJpn_JsgkMgHmzFupR2ZZ246DJt9HBeFHyQC4,49424
mysql_connector_python-9.6.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
mysql_connector_python-9.6.0.dist-info/METADATA,sha256=4qeD_3fqe0X-gFo29hJnmM-RzEe683lhoEuqwBAlBIg,11348
mysql_connector_python-9.6.0.dist-info/RECORD,,
mysql_connector_python-9.6.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
mysql_connector_python-9.6.0.dist-info/WHEEL,sha256=6TsICjgOR7isz_jYr-ssV7RSRmh1_0Z7_b5ESlzfzVY,104
mysql_connector_python-9.6.0.dist-info/licenses/LICENSE.txt,sha256=gS7dg6zgR2t_03YOChhoDkLCqaRGNUNvNEPB5joxaVA,399214
mysql_connector_python-9.6.0.dist-info/top_level.txt,sha256=eKRYAt_Rl0rD_GTdaswU8CKytKpooAP1312cpEPNbT0,23

View File

@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: setuptools (80.9.0)
Root-Is-Purelib: false
Tag: cp312-cp312-linux_x86_64

View File

@@ -0,0 +1,2 @@
_mysql_connector
mysql