Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/yassine-aa/coronavirus-checker
- Owner: YASSINE-AA
- Created: 2020-05-23T12:11:44.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-05-24T14:01:04.000Z (over 4 years ago)
- Last Synced: 2023-12-10T22:34:51.631Z (about 1 year ago)
- Language: Python
- Size: 8.79 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!