https://github.com/d12ksh/libraray-management-system
A very clean, menu-driven Library Management System project 🚀, It is ideal for basic book keeping and user payment submissions.
https://github.com/d12ksh/libraray-management-system
command-line-interface menu-driven-program python
Last synced: 4 months ago
JSON representation
A very clean, menu-driven Library Management System project 🚀, It is ideal for basic book keeping and user payment submissions.
- Host: GitHub
- URL: https://github.com/d12ksh/libraray-management-system
- Owner: d12ksh
- Created: 2025-01-16T08:17:20.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-16T08:29:29.000Z (5 months ago)
- Last Synced: 2025-01-16T09:23:59.475Z (5 months ago)
- Topics: command-line-interface, menu-driven-program, python
- Language: Python
- Homepage:
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Libraray-Management-System
The Library Management System is a simple, menu-driven program designed to help users manage basic library operations. It is built to demonstrate fundamental programming concepts such as input/output handling, file management, and basic data structures. This project is ideal for beginners looking to understand the basics of software development and how to design a functional system.
# Features
-- Add Books:
Allows users to add new books to the library with details like book ID, title, author, and genre.
-- View Books:
Displays the list of all available books in the library, showing their details in a structured format.
-- Search Books:
Enables users to search for a book by ID or title for quick access.
-- Delete Books:
Allows users to remove a book from the library by entering its unique ID.
-- Exit Program:
Exits the application gracefully after saving changes (if applicable).# How It Works
The program starts by displaying a menu with various options.
Users can select an option by entering the corresponding number (e.g., 1 for "Add Books").
Depending on the choice, the program will perform tasks such as adding a new book, displaying all books, searching for a book, or exiting.
Data is saved temporarily during the session.# Technologies Used
-- Programming Language: [ Python]
-- Data Storage: Simple file handling or in-memory storage in MS Excel.
[CSV comma delimited for excel]# Usage and Structures
├── database.py # Main program file
├── book_name.txt # File to store book records
├── README.md # Project documentation