There was an error while loading. Please reload this page.
sudo apt-get install mysql-server
sudo apt-get install python-mysqldb (if it doesn't work try sudo pip install mysql-python)
sudo apt-get install python-mysqldb
sudo pip install mysql-python
Before you can use MySQL in your project you should create database.
On MySQL Command Line:
1. create database [name]
2. use [name]
In our project name is 'edu_db'
Now you can populate it with data, just run inserts.py script.
python inserts