This is a simple Library Management System implemented in Python. It allows users to perform various operations like adding books, borrowing, and returning books, registering users, and displaying available books and users.
- Add Book: Add new books to the library.
- Display Books: View all available books in the library.
- Register User: Register new users.
- Borrow Book: Borrow available books from the library.
- Return Book: Return borrowed books to the library.
- Display Users: View all registered users.
- Run the
main()
function in the Python script to start the Library Management System. - Follow the prompts to perform different actions such as adding books, registering users, borrowing, and returning books.
index.py
: Contains the Python code for the Library Management System.library.txt
: File to store book data.user.txt
: File to store user data.
- Clone the repository.
- Run
python index.py
. - Follow the console prompts to use the Library Management System.
Muhammad-Rebaal