From 4c06dcb58d26e22af8e6f7bb284afffd355fdbf7 Mon Sep 17 00:00:00 2001 From: Venu Gopal Gajam Date: Tue, 25 May 2021 20:46:27 +0530 Subject: [PATCH] Update README.md --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 56ccf9a..9dfe9bd 100644 --- a/README.md +++ b/README.md @@ -1 +1,17 @@ -# Web-App \ No newline at end of file +# Train Enquiry Web App for Indian Railways + +Currently hosted in gcloud at https://tepp-in.el.r.appspot.com + +## Features : +- Shows the direct trains and **connecting trains** from Source to Destination for a given date at https://tepp-in.el.r.appspot.com/enquiry +- Shows some interesting facts of indian railways at https://tepp-in.el.r.appspot.com/facts + +## Technologies : +- [Flask](https://flask.palletsprojects.com/) +- [SQLite](https://www.sqlite.org/) +- [Flask-sqlalchemy](https://flask-sqlalchemy.palletsprojects.com/) +- [requests](https://docs.python-requests.org/) + +## How it works : +- Train schedule for all trains is scrapped from irctc website and stored in sqlite database. check out ./tools/generate_DB.py for the same. +- Web app queries the database and shows the results. checkout ./main.py for the same