Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jackparsonss/covid-tracker-bot
A project made for HackED 2021
https://github.com/jackparsonss/covid-tracker-bot
bot covid-19 hackathon hackathon-project
Last synced: 11 days ago
JSON representation
A project made for HackED 2021
- Host: GitHub
- URL: https://github.com/jackparsonss/covid-tracker-bot
- Owner: jackparsonss
- Created: 2021-01-16T19:00:28.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-01-17T17:48:04.000Z (about 4 years ago)
- Last Synced: 2024-11-15T20:30:58.055Z (2 months ago)
- Topics: bot, covid-19, hackathon, hackathon-project
- Language: Python
- Homepage:
- Size: 61.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Covid-Tracker-Bot
Project for HackED 2021
In this project we created a discord bot which used the Johns Jopkins university api to fetch covid-19 related data, as well the wikipedia api was used for a summary of the virus and the discord api to put everything together, this data is displayed using various commands listed below| Commands | Description |
| -------------------- | ----------------------------------------------------------------------- |
| !info | Displays a summary of the Covid-19 virus |
| !commands | Lists all other commands |
| !cases (country) | Displays the number of active cases of selected country |
| !deaths (country) | Displays the number of deaths of selected country |
| !recovered (country) | Displays the number of recovered people of selected country |
| !tests (country) | Displays the number of people tested in selected country |
| !critical (country) | Displays the number of people in critical condition in selected country |
| !vaccines (country) | Displays the number of vaccines given out in selected country |
| !rank (int) | Displays the top (param) rank of countries based on number of deaths |
| !total | Displays the global data across multiple criteria |
| !sam | Top Secret Command |### How to Run:
python bot.py### Dependencies:
pip install covid
pip install discord.py
pip install wikipedia
pip install requests-html