Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 2.2 KB

README.md

File metadata and controls

27 lines (21 loc) · 2.2 KB

Corvid19 Whatsapp Bot

This project is to create a whatsapp bot that can give latest information about COVID-19 situation in Sri Lanka

This app was created by following the base tutorial: https://www.twilio.com/blog/build-a-whatsapp-chatbot-with-python-flask-and-twilio

Prereqisites

  • Python 3.6 or newer
  • Virtual environment python plugin (Installation steps are given below).
  • Flask web application framework for Python
  • A smartphone with an active phone number and WhatsApp installed.
  • A Twilio account

Developer Guide

  1. Create a Fork of this repository and clone it to your developer machine.
  2. Install Python 3.6 or newer.
  3. Install Python package VirtualEnv. using pip3 install virtualenv.
  4. Activate virtual environment and install dependencies. Windows (Powershell) -> virtualenv .env; .\.env\Scripts\activate; pip install -r requirements.txt, Mac/Unix -> virtualenv .env && source .env/bin/activate && pip install -r requirements.txt
  5. Run Flask Application. Windows (Powershell) -> $env:FLASK_APP = "application.py"; flask run, Mac/Unix -> export FLASK_APP=application.py && flask run
  6. Use the steps 'Testing the Chat bot' in the article to setup ngrok tunnel and related Twilio configurations.

Note: Follow the cofiguration steps given in the article for more information regarding how it works. If you need to install new python packages make sure you export them to requirements.txt by using pip freeze > requirements.txt

Testing Locally

You can install Postman and send a POST request to http://127.0.0.1:5000/bot with form-data and Key is "Body" and having number 1, 2 & etc. as the value.

Deployment

We are using AWS ElasticBeanstalk for the deployment and you can find more details in Deploying a flask application to Elastic Beanstalk