This is a simple project to recommend top 5 movies according to user's selection.
Make sure you have installed all of the following prerequisites on your development machine:
- Python - Download & Install Python
- Virtual Environment - Install virtualenv using pip
pip install virtualenv
- Open VS Code.
- Open the Command Palette (View > Command Palette or (Ctrl+Shift+P)).
- Select the Python: Create Environment command to create a virtual environment in your workspace.
- Select
venv
and then the Python environment you want to use to create it.
- Activate the virtual environment: On Windows, use
venv\Scripts\activate
, on Unix or MacOS, usesource venv/bin/activate
. - Run the Flask application with
python app.py
.