Library Management System using Python(code) And MySQL(database)
First Thing to be done is to install python and MySQL
Installation Video
- Python : https://www.youtube.com/watch?v=uDbDIhR76H4
- MySQL : https://youtu.be/IqYfmckxeyE
then using command prompt run the following
pip install tk
pip install mysql-connector-python
- open mysql in cmd by typing >mysql -u root -p(enter and enter mysql password)
- CREATE USER 'sqluser'@'localhost' IDENTIFIED BY 'password';
- GRANT ALL PRIVILEGES ON . TO 'sqluser'@'localhost';
- FLUSH PRIVILEGES;
- exit (twice) then start coding