1

Is it possible to hook up a MySQL database with python program if the MySQL database is made in PhpMyAdmin?

  • 1
    MySQL is not "made" in PhpMyAdmin - PhpMyAdmin is a tool that handles MySQL. And yes, you can use Python to connect to MySQL – Nir Alfasi Jan 31 '15 at 19:14

1 Answers1

3

Absolutely yes. You can use libraries called SQLAlchemy , Sqlite3 or MySQL Connector/Python from MySQL.

I recommend Sqlite3. I used it with my flask application, worked perfectly and easy to use.

magic-sudo
  • 1,206
  • 9
  • 15