An open API service indexing awesome lists of open source software.

https://github.com/ayeujjawalsingh/health-and-disease-prediction-system

Django and machine learning-powered end-to-end project The goal of this project is to offer an online platform that will allow users to forecast the onset of sickness based on a variety of symptoms. The user can browse through different symptoms, look up ailments, and contact a doctor online.
https://github.com/ayeujjawalsingh/health-and-disease-prediction-system

ayeujjawal ayeujjawalsingh css django html javascript machine-learning postgresql python

Last synced: 8 months ago
JSON representation

Django and machine learning-powered end-to-end project The goal of this project is to offer an online platform that will allow users to forecast the onset of sickness based on a variety of symptoms. The user can browse through different symptoms, look up ailments, and contact a doctor online.

Awesome Lists containing this project

README

          

#

Project Installations in Local System

## Tools & Technology Required

- Python
- Django
- HTML
- CSS
- Javascript
- Machine Learning
- PostgreSQL

Python

django

css3

html5

javascript

ML

VScode

VScode

## Run Locally

- Download the Project and Unzip it
- Open Commant Prompt
> You must have Python3 installed in your system

Go to the project directory
```bash
cd Health_And_Disease_Prediction_System
```

Create Virtual Envoirnment of Python
```bash
pip install virtualenvwrapper-win
```

Make Virtual Envoirnment as I named it `venv`
```
mkvirtualenv venv
```
Open Virtual Envoirnment as

```bash
workon venv
```

Install Dependencies

```bash
pip install -r requirenments.txt
```

Start the Server
```bash
python manage.py runserver
```
Or

You can install virtual environment using pip:
```
py -m pip install --user virtualenv
```
For creating new environment:
```
py -m venv myproject
```
To activate your virtual environment:
```
.\myproject\Scripts\activate
```

> Development Server started at `localhost:8000`


#

Development Documentations

**Install Django in Virtual Envoirnment**

## Installation
Run this command to install `virtual wrapper` which will allows you to make virtual envoirnment
```
pip install virtualenvwrapper-win
```

Make Virtual Envoirnment as name `venv`
```
mkvirtualenv venv
```

Open the Command Prompt in Project Directory as
C:\Users\Ujjawal\Coding\Web Developement\MajorProject> `workon venv`

```
workon venv
```

Install `Django` in Virtual Envoirnment as
(venv) C:\Users\Ujjawal\Coding\Web Developement\MajorProject>pip install django
```
pip install django
```

Run this to Check `django-admin` Available Subcommands:
```
django-admin
```

Now, Create Django-Project by using django-admin subcommands
as `django-admin startproject` (projectName)
```
django-admin startproject project
```


#

Project Demonstration

## Home Page

![Home Screenshot](./screenshots/Home_Page_1.png)
![Home Screenshot](./screenshots/Home_Page_2.png)

## SignUp Options
![SignUp Screenshot](./screenshots/Signup_Option.png)

## SignIn Options
![SignIn Screenshot](./screenshots/Login_Option.png)

## Doctor Page
### Registration
![Registration Doctor Screenshot](./screenshots/Doctor_Registration_page.png)
### Login
![Login Doctor Screenshot](./screenshots/Doctor_Login_Page.png)
### Doctor Welcome Page
![Doctor Welcome Page Screenshot](./screenshots/Doctor_Welcome_Page.png)
### Client Feedback Section
![lient Feedback Section Screenshot](./screenshots/Doctor_Feedback_Section.png)

## Patient Page
### Registration
![Registration Patient Screenshot](./screenshots/Patient_Registration.png)
### Login
![Login Patient Screenshot](./screenshots/Patient_Login.png)
### Patient Welcome Page
![Patient Welcome Page Screenshot](./screenshots/Patient_Welcome_Page.png)
### Check Diseases
![Check Diseases Screenshot](./screenshots/Check_Disease_1.png)
![Check Diseases Screenshot](./screenshots/Check_Disease_2.png)
### Client Feedback Section
![lient Feedback Section Screenshot](./screenshots/Client_Feedback_Section.png)