Inspiration
The suffering of elders during Hajj season has inspired us as technical persons to develop a creative solution to help both: pilgrims & medical staff during Hajj season.
What it does
It helps the medical staff and other authorities to get easy access to the pilgrims's critical medical records & medical history before they arrive & till they finish the the Hajj journey
How we built it
We have created a team of creative designers and developers to introduce an easy to use bracelet & app that can be easily used by medical staff & pilgrims while they cross about 200 points and 8 critical destinations.
Challenges we ran into
The privacy and security of personal data and how to choose the appropriate technology that would not make such an important data vulnerable to abusive hacks and danger.
Accomplishments that we're proud of
The secure technology method we have figured during Hackathon experience to ensure data is safe. Also, team working helped us to finish our project faster on time.
What we learned
Implementing Big Data solutions and technology with simple representation to pilgrims and authorities can help optimize the Hajj journey for both parties.
What's next for K-32-SADEN
Launching is our target now.
Project Description
SADEN, is a smart bracelet solution that will help Hajjies have a safe and healthy hajj experience Via ensuring that their historic health records are securely stored and are easily retrieved by health professionals in case any emergencies occur. It’s tackling the issue of “the non-existence of medical records of Hajjies visiting from outside of Saudi Arabia”. Our solution will offer easy access to medical records of Saudi and non-Saudi pilgrims via offering bracelets to all hajjies that carry all their historical medical records. When an emergency occurs, health authorities will be able to review the medical records of the patient prior treating him. This will speed up the process of diagnosing them and increase the capacity of the hospitals accordingly. In addition, Full utilization of the available resources across the 25 Hospitals available will be there. Also, better Hospital inventory management (Medical equipment and medicines). Finally, building a big data base that will help in planning health care for future years. *It’s an optional but a recommended solution for all Pilgrims. How it Works:
- When applying for Hajj, Hajjies should fill a basic medical form including their basic medical history, allergies, any medications they’re taking.
- The data are going to be stored in a Mega database and a bar code is automatically generated for each user.
- A bracelet is provided by Hajj carriers to all Hajjis Participating in their group which include all of information they previously shared.
- In case of emergency, authorities will scan the bracelet and get the complete medical history of the patient. This will speed-up the diagnosis process and will enable them to inform his/her relatives about his status. Future Features: • Lost and Found: o Location Tracking for lost pilgrims. o Adding Housing and Tent destinations of pilgrims.
CODE Function
flask import Flask, render_template, send_file, request, redirect, url_for
import PyMySQL
app = Flask(name)
@app.route("/") def main(): return render_template("index.html")
@app.route("/profile") def profile(): return render_template("profile.html")
@app.route("/med") def med(): return render_template("med.html")
@app.route("/about") def about(): return render_template("about.html")
@app.route("/dashboard") def dashboard(): return render_template("dashboard.html")
if name == "main": app.run(debug=True)
Code Explanation
This code is representing the main interfaces of our solution. It represents 45% of our project. If we run this code through Python language it will display the app home page, after register/login the application will re-direct the user to the profile page. if the user clicks on on the “medical report” icon, the patient’s healthcare history will be viewed. If the user clicks on “emergency call” it will call the 911 hotline. The “About” page is describing the the app’s idea along with the services provided.

Log in or sign up for Devpost to join the conversation.