In order to use MySQL connectivity with Python, you must have some knowledge of MySQL
MySQL is an Open-Source database and one of the best type of RDBMS (Relational Database Management System). Co-founder of MySQLdb is Michael Widenius’s, and also MySQL name derives from the daughter of Michael.
Download RPM package for Linux/Unix from Official site: https://www.mysql.com/downloads/
Download MySQL database exe from official site and install as usual normal installation of software in Windows.
Here is how to connect MySQL with Python:
For Python 2.7 or lower install using pip as:
To deploy this project run
pip install mysql-connector
For Python 3 or higher version install using pip3 as:
pip3 install mysql-connector