Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 740 Bytes

File metadata and controls

21 lines (17 loc) · 740 Bytes

Python-Project-ComputerScience-XII

Library Management System using Python(code) And MySQL(database)

First Thing to be done is to install python and MySQL

Installation Video

then using command prompt run the following

  1. pip install tk
  2. pip install mysql-connector-python
  3. open mysql in cmd by typing >mysql -u root -p(enter and enter mysql password)
  4. CREATE USER 'sqluser'@'localhost' IDENTIFIED BY 'password';
  5. GRANT ALL PRIVILEGES ON . TO 'sqluser'@'localhost';
  6. FLUSH PRIVILEGES;
  7. exit (twice) then start coding