https://github.com/nurulashraf/travel-booking-system
Python Programming - Travel Booking System
https://github.com/nurulashraf/travel-booking-system
academic-assignments booking-system cost-calculation destination-management family-booking object-oriented-programming python python-projects travel-agency-system travel-planning uml-diagram
Last synced: 5 months ago
JSON representation
Python Programming - Travel Booking System
- Host: GitHub
- URL: https://github.com/nurulashraf/travel-booking-system
- Owner: nurulashraf
- License: mit
- Created: 2024-12-07T02:53:19.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-25T16:53:30.000Z (5 months ago)
- Last Synced: 2024-12-25T17:25:13.536Z (5 months ago)
- Topics: academic-assignments, booking-system, cost-calculation, destination-management, family-booking, object-oriented-programming, python, python-projects, travel-agency-system, travel-planning, uml-diagram
- Language: Python
- Homepage:
- Size: 196 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SkyHigh Adventures Booking System
## Overview
This is a Python-based booking system for SkyHigh Adventures, a travel agency offering packages to popular destinations. The system allows users to manage bookings for multiple families, calculate costs based on various factors, and display a summary of all bookings. These solutions are part of a university assignment focused on applying fundamental programming concepts.## Features
- Object-Oriented Design
- Destination Management
- Family Booking Handling
- Dynamic Cost Calculations
- Booking Summary Display## Getting Started
### Prerequisites
- Python 3.7 or higher### Installation
1. Clone the repository:
```
git clone https://github.com/your-username/travel-booking-system.git
```
2. Change to the project directory:
```
cd travel-booking-system
```
3. Run the booking system:
```
python booking_system.py
```## Usage
1. When prompted, enter the family name.
2. Select a destination option (1-3).
3. Input the number of adults and children in the family.
4. Repeat the process for additional families or type 'quit' to finish.
5. The system will display the total cost for each family in Malaysian Ringgit (MYR).## Project Structure
The project consists of the following key components:- `BookingSystem`: The main class that manages the booking system, destinations, and family bookings.
- `Destination`: Represents a travel destination with associated costs.
- `Family`: Represents a family booking, including the name, destination, and member details.
- `Person` (abstract), `Adult`, and `Child`: Classes that handle the cost calculations for different types of family members.## UML Diagram
The project follows an object-oriented design, which is illustrated in the UML diagram below:
## Contributing
Contributions, bug reports, and feature requests are welcome. Please follow the standard GitHub workflow (fork, branch, commit, push, and pull request).## License
This project is licensed under the [MIT License](LICENSE).## Acknowledgments
- The initial project requirements were provided by the RCIT 1763 - Object-Oriented Programming course at Bank Rakyat School of Business, Innovation, Technology and Entrepreneurship (BRSBITE).