You can't directly download the MySQL module in Python. Instead, you need to install it using a package manager like pip
. Here's how:
Installing the MySQL Connector/Python
-
Open your terminal or command prompt.
-
Type the following command and press Enter:
pip install mysql-connector-python
-
Wait for the installation to complete.
Once the installation is finished, you can import the MySQL connector module into your Python scripts and start working with MySQL databases.
Example:
import mysql.connector
# Connect to your MySQL database
mydb = mysql.connector.connect(
host="localhost",
user="yourusername",
password="yourpassword",
database="yourdatabase"
)
# Create a cursor object
mycursor = mydb.cursor()
# Execute a query
mycursor.execute("SELECT * FROM customers")
# Fetch the results
myresult = mycursor.fetchall()
# Print the results
for x in myresult:
print(x)
# Close the connection
mydb.close()
This example demonstrates a basic connection to a MySQL database and retrieves data from a table. You can find more detailed examples and documentation on the MySQL Connector/Python website.