Loading repository data…
Loading repository data…
Dhruv-Cmds / repository
LibrarySystem A console-based library system handling book IDs, user IDs, borrowing/return logic, and validation using OOP principles.
This project is designed to manage a library's inventory, including books and members.
git clone https://github.com/Dhruv-Cmds/Library-Management.git
cd Library-Management
# Java
javac Main.java
java Main
# Python
python Main.py
LIBRARY-MANAGEMENT/
│
├── UsingJava/ # Java implementation of the library system
│ ├── Book.java # Handles book-related data and operations
│ ├── Library.java # Core library management logic
│ ├── User.java # User-related functionality
│ ├── Main.java # Entry point for Java application
│ ├── README.md # Java-specific documentation
│ ├── .gitignore
│ └── .gitattributes
│
├── UsingPython/ # Python implementation of the library system
│ ├── Main.py # Entry point for Python application
│ ├── README.md # Python-specific documentation
│ ├── .gitignore
│ └── .gitattributes
│
├── README.md # Main project documentation
├── LICENSE # License information
└── .gitattributes
git checkout -b feature/YourFeature
git commit -m "Add some feature"
git push origin feature/YourFeature
This project is licensed under the MIT License.