Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
To start utilizing MySQL in Python, it’s essential do the next:
Utilizing pip
, we are able to set up the MySQL Connector package deal:
python -m pip set up mysql-connector-python
Create a Python file and import the brand new package deal:
import mysql.connector
Now you may create a connection to your MySQL database.
Create a file referred to as app.py
and place the next inside:
import mysql.connector
your_database = mysql.connector.join(
host = "localhost"
consumer = "username"
password = "YoUrPaSsWoRd"
)
print(your_database)
Now run the app.py
Python script to see our connection happen:
python app.py