This is a short tutorial on how to connect to a MySQL database using python.
In order to connect to your database, you first need to install the MySQL Connector Python by entering in the terminal:
At the top of your script, you need to import the mysql module via:
To initialize the connection, you need to use mysql.connector.connect()
:
Here is an example case of a SELECT
statement:
Using parameters in a statement is pretty straightforward. We are going to use the same example above, but only select the rows whose first name is 'Ryan' and last name is 'Smith':
Here is an example of an INSERT
statement:
© 2025 by Ryan Rickgauer