Code Monkey home page Code Monkey logo

covid19-tracker's Introduction

covid19-tracker

Downloads Downloads Downloads MIT License HitCount GitHub stars Latest PyPI version Supported Python versions

Installation and Usage on Github Pages

See Documentation

Requirements

 python >= 3.6

Dependencies

 bs4
 requests
 regex

Installation

Run the following to install:

pip install covid19-tracker 

Usage

 from covid19tracker import Tracker

 track = Tracker() 

Get Total Worldwide Cases

 track.total_cases()

Output:

25992115

Get Total Worldwide deaths

 track.total_deaths()

Output:

862773

Get Total Worldwide Recoveries

 track.total_recoveries()

Output:

18261000

Get Worldwide Active cases

 track.active_cases()

Output:

{
   'currently infected patients': 6866475,
   'patients in mild conditions': 6805920,
   'serious/critical conditions': 60555
}

Get Worldwide Closed cases

 track.closed_cases()

Output:

{
   'outcomes': 19142009,
   'recovered/discharged': 18278873,
   'deaths': 863136
}

Get Country names

 track.countries() 

Output:

[
   {
      'id': 1,
      'name': 'USA', 
      'continent': 'North America'
   }, 
   {
      'id': 2,
      'name': 'Brazil', 
      'continent': 'South America', 
   }, 
   {
      'id': 3,
      'name': 'India', 
      'continent': 'Asia'
   }, 
   ... 
]

Get Country Information using name

 track.country_info_by_name('india')

Output:

{
   'id': 3,
   'name': 'India',
   'total cases': 3810625,
   'new cases': 44517,
   'total deaths': 66871,
   'new deaths': 411,
   'total recoveries': 2931005,
   'new recoveries': 31484,
   'active cases': 812749,
   'critical cases': 8944,
   'total cases/1M pop': 2757,
   'deaths/1M pop': 48,
   'total tests/1M pop': 44337201,
   'tests/1M pop': 32075,
   'population': 1382308045,
   'continent': 'Asia',
   '1 case every X ppl': 363,
   '1 death every X ppl': 20671,
   '1 test every X ppl': 31
}

Get Country Information using id

 track.country_info_by_id(2)

Output:

{
   'id': 2,
   'name': 'Brazil',
   'total cases': 3952790,
   'new cases': 'N/A',
   'total deaths': 122681,
   'new deaths': 'N/A',
   'total reciveries': 3159096,
   'new recoveries': 'N/A',
   'active cases': 671013,
   'critical cases': 8318,
   'total cases/1M pop': 18574,
   'deaths/1M pop': 576,
   'total tests/1M pop': 14352484,
   'tests/1M pop': 67440,
   'population': 212817864,
   'continent': 'South America',
   '1 case every X ppl': 54,
   '1 death every X ppl': 1735, 
   '1 test every X ppl': 15
}

Get Continent Information

 track.continent_info('Asia') 

Output:

{
   'name': 'Asia', 
   'total cases': 7266345,
   'new cases': 77856,
   'total deaths': 145247,
   'new deaths': 1160,
   'total recoveries': 5832330,
   'new recoveries': 64220,
   'active cases': 1288768,
   'critical cases': 18821
}

Get Information of all countries belonging to a continent

 track.countries_info_by_continent('europe')

Output:

[
   {
      'id': 4,
      'name': 'Russia',
      'total cases': 1005000,
      'new cases': 4952,
      'total deaths': 17414,
      'new deaths': 115,
      'total recoveries': 821169,
      'new recoveries': 5464,
      'active cases': 166417,
      'critical cases': 2300, 
      'total cases/1M pop': 6886,
      'deaths/1M pop': 119,
      'total tests/1M pop': 37100000,
      'tests/1M pop': 254205,
      'population': 145945354,
      'continent': 'Europe',
      '1 case every X ppl': 145,
      '1 death every X ppl': 8381,
      '1 test every X ppl': 4
   },
   {
      'id': 9,
      'name': 'Spain',
      'total cases': 1005000,
      'new cases': 4952,
      'total deaths': 17414,
      'new deaths': 115,
      'total recoveries': 821169,
      'new recoveries': 5464,
      'active cases': 166417,
      'critical cases': 2300,
      'total cases/1M pop': 6886,
      'deaths/1M pop': 119,
      'total tests/1M pop': 37100000,
      'tests/1M pop': 254205,
      'population': 145945354,
      'continent': 'Europe',
      '1 case every X ppl': 145,
      '1 death every X ppl': 8381,
      '1 test every X ppl': 4
   }, 
   ... 
]

Get Symptoms

 from covid19-tracker import covid
 covid19 = covid()
 covid19.symptoms() 

Output:

COVID-19 affects different people in different ways. Most infected people will develop mild to moderate illness and recover without hospitalization.

 Most common symptoms:
   • fever
   • dry cough
   • tiredness
 Less common symptoms:
   • aches and pains
   • sore throat
   • diarrhoea
   • conjunctivitis
   • headache
   • loss of taste or smell
   • a rash on skin, or discolouration of fingers or toes

Get Prevention Methods

 covid19.preventions()

Output:

 Protect yourself and others around you by knowing the facts and taking appropriate precautions. Follow advice provided by your local health authority.

 To prevent the spread of COVID-19:
    • Clean your hands often. Use soap and water, or an alcohol-based hand rub.
    • Maintain a safe distance from anyone who is coughing or sneezing.
    • Wear a mask when physical distancing is not possible.
    • Don’t touch your eyes, nose or mouth.
    • Cover your nose and mouth with your bent elbow or a tissue when you cough or sneeze.
    • Stay home if you feel unwell.
    • If you have a fever, cough and difficulty breathing, seek medical attention.

 Calling in advance allows your healthcare provider to quickly direct you to the right health facility. This protects you, and prevents the spread of viruses and other infections.

 Masks :-

 Masks can help prevent the spread of the virus from the person wearing the mask to others. Masks alone do not protect against COVID-19, and should be combined with physical distancing and hand hygiene. Follow the advice provided by your local health authority.

covid19-tracker's People

Contributors

ajay-lingayat avatar

Stargazers

Vishal Pandey avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.