Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yassine-aa/coronavirus-checker

This simple program, allows you to check the number of deaths, cases and recovered cases in any country. You simply need to type the name of the country.
https://github.com/yassine-aa/coronavirus-checker

Last synced: 15 days ago
JSON representation

This simple program, allows you to check the number of deaths, cases and recovered cases in any country. You simply need to type the name of the country.

Awesome Lists containing this project

README

        

# Coronavirus-Checker
This simple program, allows you to check the number of deaths, active and recovered cases in any country. You simply need to type the name of the country.
### Setting it up:
First, you'll need to install selenium.

If you're on windows:
```
pip install selenium
```
If you're on linux or mac:
```
pip3 install selenium
```
Next, you'll need to download Chrome's webdriver from [this](https://sites.google.com/a/chromium.org/chromedriver/downloads) site.

After downloading the appropriate compressed archive file, you'll want to extract that to a folder and follow these steps:

For windows: simply click on the .exe file and it'll magically work.

For Linux: just execute these commands (make sure you're in the same directory as the file)
```
sudo mv chromedriver /usr/bin/chromedriver
sudo chown root:root /usr/bin/chromedriver
sudo chmod +x /usr/bin/chromedriver
```

Happy coding!