An open API service indexing awesome lists of open source software.

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.

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