NOTE: Before running this application you should run the code at https://github.com/emmet-gingles/Jupyter-OscarWinners to create the MySQL data.
- Install Python from https://python.org/downloads/
- Install Django:
pip install django - Create project:
django-admin startproject myProject - Create app:
cd myProject python manage.py startapp Oscars - Update MyProject/settings.py by adding 'Oscars' to the INSTALLED_APPS.
Also change DATABASES to your MySQL connection. - Copy the files from this repository into your project.
- Run Django server:
python manage.py runserver