Skip to content

sinking8/Covi-Buddy

Repository files navigation

Welcome

The world is now in the midst of a dire pandemic and everyone could use a friend. CoviBuddy is your friendly web application that has been designed to make your life easier during this tough and testing pandemic period. Features include a Covid Severity Quiz which will tell you how symptomatic you are, Face Mask Detector, Weekly Newsletter which will be emailed to your mail ID containing the latest news and updates on Covid-19 and a Covid Cases Tracker which has live data displayed in a graphical form about the cases, recoveries and deaths of all the countries around the world. All of these features have been created using Machine Learning Algorithms thereby making them adaptable and dynamic. They are also easy to use and are hosted on a responsive web page. We aim to add more amazing features in the future like a Covid based chatbot, a mobile application and so on.


Built With

Screenshots

Covid Mask Detector

Covid_Mask_Detector

Covid Tracker

Covid_Mask_Detector

Covid Detector Quiz

Covid_Mask_Detector

Project Structure

├── Procfile
├── Procfile.dev
├── README.md
├── app.py
├── config.py
├── requirements.txt
├── covid_detector
│   ├── saved_models
│   ├── Covid_Detect.py
│   ├── Mask_detect.py
│   ├── Haarcascades
├── static
│   ├── css
│   ├── font
│   ├── ico
│   ├── img
│   └── js
└── templates
    ├── errors
    │   ├── 404.html
    │   └── 500.html
    └── pages
        ├── API.html
        └── CoviBuddy.html
        └── index.pug
        └── webcam.html

Quick Start

  1. Clone the repo
$ git clone https://github.com/sinking123/Covi-Buddy.git
$ cd Covi-Buddy
  1. Initialize and activate a virtualenv:
$ virtualenv --no-site-packages env
$ source env/bin/activate
  1. Install the dependencies:
$ pip install -r requirements.txt
  1. Run the development server:
$ python app.py
  1. Navigate to http://localhost:5000