All Projects → asprazz → covid19-cli

asprazz / covid19-cli

Licence: MIT license
A CLI for getting covid-19 coronavirus status of your district or state or country at lightning speed right on your terminal built using https://api.covid19india.org.

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to covid19-cli

COVID19
A web app to display the live graphical state-wise reported corona cases in India so far. It also shows the latest news for COVID-19. Stay Home, Stay Safe!
Stars: ✭ 122 (+542.11%)
Mutual labels:  india, coronavirus, coronavirus-tracking, covid19, covid19-data
COVID-19-Datasets
Novel Coronavirus (COVID-19) Cases for India, provided by University of Kalyani.
Stars: ✭ 19 (+0%)
Mutual labels:  india, coronavirus, coronavirus-tracking, covid19, covid19-data
covid19-visualized
COVID-19 World update with data Visualization (Include Indonesia cases)
Stars: ✭ 23 (+21.05%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19, covid19-data
CovIndia-Website
The Front-End of CovIndia.com [SHUTDOWN]
Stars: ✭ 11 (-42.11%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19, covid19-india
covid19-kerala-api-deprecated
Deprecated - A fast API service for retrieving day to day stats about Coronavirus(COVID-19, SARS-CoV-2) outbreak in Kerala(India).
Stars: ✭ 14 (-26.32%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19, covid19-data
COVID19Py
A tiny Python package for easy access to up-to-date Coronavirus (COVID-19, SARS-CoV-2) cases data.
Stars: ✭ 86 (+352.63%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19, covid19-data
coronainfobd
Real-time corona-virus tracker of Bangladesh 🇧🇩 which includes latest updates, data visualization, public awareness from WHO and some advice to aware people. 🥰❤
Stars: ✭ 46 (+142.11%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19, covid19-data
coviddata
Daily COVID-19 statistics by country, region, and city
Stars: ✭ 49 (+157.89%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19, covid19-data
ctt
Corona Tracker Tracker Dashboard for the German Corona-Tracing-app
Stars: ✭ 15 (-21.05%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19, covid19-data
covid-19
An app made with Flutter to track COVID-19 case counts.
Stars: ✭ 47 (+147.37%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19, covid19-data
COVID-19-DETECTION
Detect Covid-19 with Chest X-Ray Data
Stars: ✭ 43 (+126.32%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19, covid19-data
CoronaCord
Discord bot that displays the latest coronavirus statistics. Currently serving over 5,000 communities on Discord.
Stars: ✭ 23 (+21.05%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19, covid19-data
covid19gr
Open Data Aggregation & Knowledge Base Repository for the evolution of the SARS-COV-2 pandemic in Greece.
Stars: ✭ 21 (+10.53%)
Mutual labels:  coronavirus, covid19, covid19-data
aarogya seva
A beautiful 😍 covid-19 app with self - assessment and more.
Stars: ✭ 118 (+521.05%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19
CoronaVirusDatabase
A repository for analyzing references and database of "gisanddata.maps.arcgis.com" website for Corona Virus.
Stars: ✭ 38 (+100%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19
Api
API for Current cases and more stuff about COVID-19 and Influenza
Stars: ✭ 2,323 (+12126.32%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19
align covid
Coronavirus time series aligned by number of cases, not date.
Stars: ✭ 22 (+15.79%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19
COVID-19-AI
Collection of AI resources to fight against Coronavirus (COVID-19)
Stars: ✭ 25 (+31.58%)
Mutual labels:  coronavirus, covid19, covid19-data
covidbr-api
COVIDBR API —— API de tracking dos casos de COVID-19 no Brasil
Stars: ✭ 28 (+47.37%)
Mutual labels:  coronavirus, coronavirus-tracking, covid19-data
Covid19india React
Tracking the impact of COVID-19 in India
Stars: ✭ 6,847 (+35936.84%)
Mutual labels:  coronavirus, covid19, covid19-india

Don't Forget To Update Covid19-Cli Frequently, Thank You For Using

Use pip install -U covid19-cli or pip install covid19-cli==x.y.z x.y.z is the latest version

Covid19-Cli

        A CLI application for getting covid-19 coronavirus 👾 status of your country, state or district at lightning speed right on your terminal 💻 built using https://api.covid19india.org.

        Made with ❣️ using Python3.

PyPI version PyPI - Downloads

image

Dependencies

Installation (Not for development)

  • Note: Please update globally installed package frequently. 😇
  • Installing from pypi
    • pip install covid19-cli (use pip for Python3)
    • Already installed ?
  • Installing Manually :
    • git clone https://github.com/asprazz/covid19-cli.git
    • cd covid19-cli
      • Option 1:
        • (if windows) pip install .
        • (if linux/mac) sudo pip install . -H
      • Option 2:
        • (optional for linux users) if requires chmod +x install.sh
        • then run scripts/./install.sh

Usage

  • covid19 -e or covid19 --emergency : for printing emergency numbers
  • covid19 -h or covid19 --help : for printing emergency numbers
  • covid19 {COUNTRY} :
    • covid19 World : for whole World's status world is special keyword
    • covid19 India or covid19 Ind or covid19 In : for India's status
    • covid19 USA or covid19 Us : for Fetching Usa's status
    • covid19 UK or covid19 GBR : for Fetching UK's status
    • covid19 World -a or covid19 World --all : for Fetching all countries at once
    • covid19 India -a or covid19 India --all : for Fetching all states at once (alternative to covid India -s mh)
    • For fetching states in India (only for India)
      • covid19 India -s maharashtra or covid19 Ind -s=maharashtra : for both country's and state's status
      • covid19 India -s mh : will work the same way
      • covid19 India -s all or covid19 In -s=ALL : for all states of India
  • See CODES.md (https://github.com/asprazz/covid19-cli/blob/master/CODES.md)
  • See Documentation (https://github.com/asprazz/covid19-cli/blob/master/docs/)

Contributing Guidelines

Development

  • Please, follow the contributing guidelines
  • Fork the repository and clone it to your local environment
  • Activate environment if any ( venv or conda for more details )
  • Running covid19
    • Running locally
      • cd covid19-cli
      • python covid19/__main__.py
    • Installing globally from your local repository
      • cd covid19-cli
        • Option 1:
          • (if windows) pip install .
          • (if linux/mac) sudo pip install . -H
        • Option 2:
          • (optional for linux users) if requires chmod +x install.sh
          • then run scripts/./install.sh
        • option 3:
          • python setup.py install
  • Fix 🔧 something broken or Build 🔨 something interesting
  • Don't forget to target develop branch only

Contributing Guidelines

Development

  • Please, follow the contributing guidelines
  • Fork the repository and clone it to your local environment
  • Activate environment if any ( venv or conda for more details )
  • Running covid19
    • Running locally
      • cd covid19-cli
      • python covid19/__main__.py
    • Installing globally from your local repository
      • cd covid19-cli
        • Option 1:
          • (if windows) pip install .
          • (if linux/mac) sudo pip install . -H
        • Option 2:
          • (optional for linux users) if requires chmod +x install.sh
          • then run scripts/./install.sh
        • option 3:
          • python setup.py install

Error reports

Special Thanks To Covid19India

Contributors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].