The Covid Tracker is a web application built using Django. It allows users to manage Covid-19 data entries by country, providing a way to add, update, view, and remove data related to Covid-19 cases and deaths.
- Add/Update Data: Users can input new data entries or update existing ones by specifying the country, date, number of cases, and number of deaths.
- View Data: All added entries can be viewed in a structured table format.
- Search Data: Users can view specific data entries by country.
- Delete Data: Users have the option to remove data entries by country.
git clone https://github.com/Kirzyx/COVID-19-Tracker.git
cd COVID-19-Trackerpython -m venv venv
source venv/bin/activate # For Windows, use `venv\Scripts\activate`pip install -r requirements.txtpython manage.py makemigrations
python manage.py migratepython manage.py runserverVisit http://127.0.0.1:8000/ in your browser.
- Navigate to the dashboard to access the core features.
- Add or update data entries using the provided form.
- View all data entries or search by country.
- Remove data entries as needed.
- This project was inspired by an assignment for CSCP 2430-02 at Seattle University.
- The project served as a hands-on approach to learning Python and Django.
- Thanks to Django's comprehensive documentation and community.