├── Flight-Price-Prediction-EDA-Modeling.ipynb ├── Procfile ├── README.md ├── app.py ├── flight_rf.pkl ├── index.html ├── requirements.txt ├── static └── css │ └── styles.css └── templates └── home.html /Flight-Price-Prediction-EDA-Modeling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/Filght-Fare-Prediction-WebApp/HEAD/Flight-Price-Prediction-EDA-Modeling.ipynb -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/Filght-Fare-Prediction-WebApp/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/Filght-Fare-Prediction-WebApp/HEAD/app.py -------------------------------------------------------------------------------- /flight_rf.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/Filght-Fare-Prediction-WebApp/HEAD/flight_rf.pkl -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/Filght-Fare-Prediction-WebApp/HEAD/index.html -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/Filght-Fare-Prediction-WebApp/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/Filght-Fare-Prediction-WebApp/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/Filght-Fare-Prediction-WebApp/HEAD/templates/home.html --------------------------------------------------------------------------------