Hotel Management System
Here's what we'll be going over
- Hotel Management System
- Code with Explanation
- Code in Python(Django)
- Code available in Java also
Welcome to this tutorial on building a robust Hotel Management System. Throughout this tutorial, we will walk you through a comprehensive process of building the system using Python 3.9.6 and Django 3.2.7.
Lets Start
Firstly, let’s install the required modules within a virtual environment.
These modules are known as dependencies and they are stored in a file called requirements.txt.
To ensure the smooth and efficient development of the project, we recommend creating a virtual environment and installing the required modules, also known as dependencies. These dependencies are specified in the "requirements.txt" file, and it is essential to have them installed to prevent potential issues.
//virtual environment and
//dependencies
mkvirtualenv myvenv5
pip install Django
pip install psycopg2-binary==2.9.1
By following this tutorial, you will gain practical experience in developing an end-to-end Hotel Management System and strengthen your skills in using Python and Django.
Creating Requirements.txt
"requirements.txt" is a file used in Python projects to specify the dependencies required to run the project. It contains a list of the libraries or packages along with their specific version numbers required for the project to work correctly.
// capture requirements to install
pip freeze > requirements.txt// install requirements from requirements.txt
pip install -r requirements.txt// or
$ env1/bin/pip freeze > requirements.txt$ env2/bin/pip install -r requirements.txt
Creating a project
Commands |
django-admin startproject hotelsystem |
To create a project we should move to the directory where we would to store our code. For this we go to command line and use cd command. Then trigger the startproject command.
Database Setup
I used a POSTGRESS database and the settings in the hotelsystem/settings.py file were already correctly configured. To protect sensitive information in the database, we utilized ENVIRONMENT VARIABLES, which allowed us to define a value for a given variable and securely populate it only after deployment. This feature is built into Python and requires importing from the os module.
import environ |
You can use Django built In Data base, SQL lite
We ran the migrate command to create the required database tables based on the configuration in the hotelsystem/settings.py file.
Creating Application
We created six Django applications for this project: authentication, booking, customer, payment, and receptionist. To create the basic structure of each application, we ran the following command from the project's root directory:
python manage.py startapp <name_of_app> |
This generated a directory with the following files:
<name_of_app>/ |
Here's what each of these files is responsible for:
- admin.py: Registers models to include them in the Django administration site (optional).
- apps.py: Contains the main configuration for our applications.
migrations/: Directory that contains database migrations for our applications. Migrations enable Django to track model changes and sync the database. - models.py: Required for all Django applications but can be left empty.
tests.py: Contains the tests for our application. - views.py: Contains the logic for our application. Each view receives an HTTP request, processes it, and returns a response.
Activating our applications
In order for Django to keep track of our applications and be able to build database tables for their models, we have to activate it. In order to do this, we edited the settings.py file and added our apps to the INSTALLED_APPS setting. It looks like this:
INSTALLED_APPS = [ |
Creating models
We open our ‘models.py’ file and start writing the models. The models.py file should look like this:
Model For Our authentication app
from django.db import modelsclass Customer(models.Model): |
Model For booking app:
from django.db import models |
Model For Payment app:
from django.db import models |
Creating and applying migrations
Now that we have a data model for our applitions, we ran the makemigrations command which notify Django that new models have been created and those changes needs to be applied to the migration. Run migrate command to do the actual migration.
python manage.py makemigrations |
Activating models
We created urls.py files for each of our apps.
urls.py For authentication app:
from django.urls import path,include |
urls.py For booking app:
from django.urls import path |
urls.py For customer app:
from django.urls import path |
urls.py For payment app:
from django.urls import path |
urls.py For Receptionist app:
from django.urls import path |
We go to hotelsystem/urls.py and include the apps urls.
It looks like this:
from django.contrib import admin |
Setting up the admin for each model in each app
For authentication app:
from django.contrib import admin |
For payment app:
from django.contrib import adminfrom .models |
Writing urls to the views for each app
views.pyfrom django.shortcuts import render,redirect |
For booking app:
views.pyfrom django.shortcuts import render,redirect |
For customer app:
views.pyfrom django.shortcuts import render,redirect |
For payment app:
views.pyfrom django.shortcuts import render |
For Receptionist app:
from django.shortcuts import render,redirect from authentication.models import RoomManager from booking.models import Booking,Rooms from datetime import date from django.contrib import messages import datetime def dashboard(request): if not request.session.get('username',None): return redirect('manager_login') if request.session.get('username',None) and request.session.get('type',None)=='customer': return redirect('user_dashboard') if request.session.get('username',None) and request.session.get('type',None)=='manager': username=request.session['username'] data=RoomManager.objects.get(username=username) room_data=data.rooms_set.all() booked=room_data.filter(is_available=False).count() print(booked) return render(request,"manager_dash/index.html",{"room_data":room_data,"manager":data,"booked":booked}) else: return redirect("manager_login") def add_room(request): if not request.session.get('username',None): return redirect('manager_login') if request.session.get('username',None) and request.session.get('type',None)=='customer': return redirect('user_dashboard') if request.method=="GET": return render(request,"manager_dash/add-room.html",{}) else: room_no=request.POST['room_no'] room_type=request.POST['room_type'] price=request.POST['price'] room_image=request.FILES.get('room_image',None) no_of_days_advance=request.POST['no_of_days_advance'] start_day=request.POST['start_day'] error=[] if(len(room_no)<1): error.append(1) messages.warning(request,"Room No Field must be atleast 3 digit like 100.") if(len(room_type)<5): error.append(1) messages.warning(request,"Select a valid Room Type.") if(len(price)<=2): error.append(1) messages.warning(request,"Please enter price") if(len(no_of_days_advance)<1): error.append(1) messages.warning(request,"Please add valid no of days a user can book room in advance.") if(len(start_day)<3): error.append(1) messages.warning(request,"Please add the starting day") if(not len(error)): manager=request.session['username'] manager=RoomManager.objects.get(username=manager) room=Rooms(room_no=room_no,room_type=room_type,price=price,no_of_days_advance=no_of_days_advance,start_date=datetime.datetime.strptime(start_day, "%d %B, %Y").date(),room_image=room_image,manager=manager) room.save() messages.info(request,"Room Added Successfully") return redirect('/manager/dashboard1/') else: return redirect('/user/add-room/new/') def update_room(request,room_no): if not request.session.get('username',None): return redirect('manager_login') if request.session.get('username',None) and request.session.get('type',None)=='customer': return redirect('user_dashboard') room=Rooms.objects.get(room_no=room_no) if request.method=="GET": return render(request,"manager_dash/edit-room.html",{"room":room}) else: price=request.POST['price'] no_of_days_advance=request.POST['no_of_days_advance'] error=[] if(len(price)<=2): error.append(1) messages.warning(request,"Please enter correct price") if(len(no_of_days_advance)<1): error.append(1) messages.warning(request,"Please add valid no of days a user can book room in advance.") if(not len(error)): manager=request.session['username'] manager=RoomManager.objects.get(username=manager) room.price=price room.no_of_days_advance=no_of_days_advance room.save() messages.info(request,"Room Data Updated Successfully") return redirect('/manager/dashboard1/') else: return redirect('/user/add-room/update/'+room.room_no,{"room":room}) |
Creating templates for you views
We have created views and URL patterns for our applications. Now, it's time to add templates to display posts in a user-friendly manner.
We created the following directories and files inside our applications directories:
templates/ base/ base.html booking/ book-now.html book.html index-html contact/ contact.html login/ logout.html manager_login.html user_login.html manage_dash/ add-room.html edit-room.html index.html project/ base.html initiate_payment.html user_dash/ details.html index.html |
{%load static %} |
The rest html files inherited from the base.html file.
Lets See a simple example of Hotel Management System Using Python only
Assalam u Alaikum! I'm Muhammad Usman Ghias. Unlock your potential with our cutting-edge courses and elevate your skills to the next level. Join us today at CODCrafters and take your first step towards success.
Support Regards: Usman Ghias
You can support me and message to get your required course free of cost. Directly contact me through message box in the bottom of every page.
🌎 Find Me Here:
My Courses: https://courses.codcrafters.com
Ask Queries: https://www.codcrafters.com/forum/machine-learning-16
Course Blogs: https://blogs.codcrafters.co
Courses News: https://news.codcrafters.com
There are no comments for now.