Welcome to our project on the Olympics! This project aims to perform a detailed analysis on the past data of olympics conducted and also provide some predictions to help decide which country would be able to be the next host.
We scraped data pertaining to the Olympics from various websites such as Olympedia, World Bank API, Wikipedia, etc. Then we performed a detailed analysis based on this data for past Olympic games played, as well as the number of medals won each year by participating countries and also created a predictor that would be able to give an estimate of the economical standing of the countries if they decided to host the Olympics in their country.
- Setup and use a python virtual environment:
python3 -m pip install --user virtualenv
python3 -m venv env
source env/bin/activate
pip install -R requirements.txt
- Run the server.py:
python3 server.py
- This will give you a URL which you can visit to use the application.
.
├── data/
│ └── This is the main directory for data used in our project.
├── docs/
│ └── This contains the markdown files used in our documentation.
├── research/
│ └── This contains various research papers used in our domain research.
├── scripts/
│ └── This contains all the scripts for data scraping, analysis and modeling.
└── web/
└── This contains all the files used in the UI and for backend.
You can find more details about the steps followed in this project.