- Deployed on Heroku (https://house-price-prediction-heroku.herokuapp.com/)
- Deployed on Render (https://house-price-prediction-04wg.onrender.com/)
Follow these steps to set up and run the project:
- Clone the repository:
git clone "https://github.com/AvyukthReddy/House-Price-Prediction"
- Install virtualenv (skip if installed):
pip install virtualenv
- Create a virtual environment:
python -m venv .venv
- Activate the virtual environment:
.venv\Scripts\activate
- Install the required packages:
pip install -r requirements.txt
- Run the application:
python app.py
Flask is a lightweight WSGI
web application framework. It is designed
to make getting started quick and easy, with the ability to scale up to
complex applications. It began as a simple wrapper around Werkzeug
and Jinja
and has become one of the most popular Python web
application frameworks.
Flask offers suggestions, but doesn't enforce any dependencies or project layout. It is up to the developer to choose the tools and libraries they want to use. There are many extensions provided by the community that make adding new functionality easy.
WSGI: https://wsgi.readthedocs.io/ Werkzeug: https://werkzeug.palletsprojects.com/ Jinja: https://jinja.palletsprojects.com/
Install and update using pip
:
code-block:: text
$ pip install -U Flask
pip: https://pip.pypa.io/en/stable/getting-started/
code-block:: python
from flask import Flask
app = Flask(name)
@app.route("/") def hello(): return "Hello, World!"
code-block:: text
$ flask run * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)