hospitality_app

Explanation of the README.md:

Hospitality Room Allocation System

This project implements a simple room allocation system for a hostel, taking into account group gender and room capacity.

Project Structure

Files and their Contents

1. index.html

This file contains the HTML structure for the user interface. It provides:

2. app.py

This file implements the Flask application, which performs the following tasks:

3. hostel_info.csv

This file stores information about available rooms in the hostel. It has the following columns:

Example hostel_info.csv:

```csv Hostel Name,Room Number,Capacity,Gender Hostel A,A101,3,Boy Hostel A,A102,4,Girl Hostel B,B201,3,Boy Hostel B,B202,2,Girl

group_info.csv: A CSV file containing information about the groups to be allocated. Example group_info.csv: Group ID,Members,Gender 101,3,Boys 102,4,Girls 103,2,Boys 104,5,Girls 105,8,5 Boys & 3 Girls

allocations/allocation.csv: A CSV file generated by the application, containing the room allocation results.