A library management system keeps track of the books present in the library. It is an important piece of software which is a must at schools and colleges.
The library management system in python which we are going to build will look something like this :
(img)
Open your python compiler terminal :
- tkinter – Please run below command to install tkinter
pip install tkinter
- pillow – Please run below command to install pillow
pip install pillow
- pymysql – Please run below command to install pymysql
pip install pymysql
Note: You are required to have MySQL server installed on your system in order to make pymysql work. If you do not have it ready, please download from MySQL Official website
Below are the project files you will get once you fork and clone the Library project:
main.py
– which does function call to all other python filesAddBook.py
– To add the bookViewBooks.py
– To View the list of books in the libraryDeleteBook.py
– To Delete a book from libraryIssueBook.py
– To Issue a book from libraryReturnBook.py
– To Return a book to the library
NOTE: Use your own Database name and password.
Create Tables:
create database db;
create table books(bid varchar(20) primary key, title varchar(30), author varchar(30), status varchar(30));
create table books_issued(bid varchar(20) primary key, issuedto varchar(30));
- books
- books_issued
Let’s start the detailed discussion of each and every file of our library management system python project:
- main.py
-
Make a
pull request
to countribute to this project -
Make an
issue
if you're facing an issue -
Fork
this Project to receive more python projects -
Give a
star
if you like this Project -
Note
Apart from this,
you can now take a step forward to extend the project by making a history tab which keeps track of the previous books issued.
Moreover, you can integrate a login system to authenticate a user before making changes to the database.