Skip to main content

Posts

Showing posts with the label projects

How to Connect Python with MySQL Database

  How to Connect Python with MySQL Database T oday, We will learn on how to connect Python with Mysql. This tutorial will let you know how python can be used with database applications. Before starting with our tutorial, we need to have MySQL installed in your System. You can download the MySQL database form   https://www.mysql.com/downloads/ In order to connect with MySQL, Python requires Mysql Driver. So, as the next step towards database connectivity we can now install MySQL Driver. Open Command Prompt or terminal and type the following commands. We will be using PIP for faster and safer installation of the packages.  Command to Install MySQL Connector python - m pip install mysql - connector Now, we have done installing Mysql Connector. Our next process is to test the installation. Let's do that by simply importing the mysql connector package. import mysql . connector If the above import statement did not produce any errors or warnings, then hurrah! we've successfull...