Mysql with python




 1- Install MySQL community version from official website

2- Finalize the Installation and Configuration

3- use python library for MySQL

       "import mysql.connector" 

4- Syntax :

 mydb = mysql.connector.connect(
  host="localhost",
  user="root",
  password="123456789",
  database="mydatabase"
)

Comments