معرفی شرکت ها


covid19-tracker-0.0.8


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

This module helps to track Covid19.
ویژگی مقدار
سیستم عامل -
نام فایل covid19-tracker-0.0.8
نام covid19-tracker
نسخه کتابخانه 0.0.8
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Ajay Lingayat
ایمیل نویسنده lingayatajay2810@gmail.com
آدرس صفحه اصلی https://github.com/Ajay2810-hub/covid19-tracker
آدرس اینترنتی https://pypi.org/project/covid19-tracker/
مجوز -
# covid19-tracker [![Downloads](https://pepy.tech/badge/covid19-tracker)](https://pepy.tech/project/covid19-tracker) [![Downloads](https://pepy.tech/badge/covid19-tracker/month)](https://pepy.tech/project/covid19-tracker/month) [![Downloads](https://pepy.tech/badge/covid19-tracker/week)](https://pepy.tech/project/covid19-tracker/week) [![MIT License](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors-) [![HitCount](http://hits.dwyl.com/Ajay2810-hub/covid19-tracker.svg)](http://hits.dwyl.com/Ajay2810-hub/covid19-tracker) [![GitHub stars](https://img.shields.io/github/stars/Ajay2810-hub/covid19-tracker.svg?style=social&label=Star)](https://github.com/Ajay2810-hub/covid19-tracker) ## Installation and Usage on Github Pages [See Documentation](https://ajay2810-hub.github.io/covid19-tracker/) ## Requirements ``` python >= 3.6 ``` ## Dependencies ``` bs4 requests regex ``` ## Installation Run the following to install: ```python pip install covid19-tracker ``` ## Usage ```python from covid19tracker import Tracker track = Tracker() ``` ### Get Total Worldwide Cases ```python track.total_cases() ``` Output: ``` 25992115 ``` ### Get Total Worldwide deaths ```python track.total_deaths() ``` Output: ``` 862773 ``` ### Get Total Worldwide Recoveries ```python track.total_recoveries() ``` Output: ``` 18261000 ``` ### Get Worldwide Active cases ```python track.active_cases() ``` Output: ``` { 'currently infected patients': 6866475, 'patients in mild conditions': 6805920, 'serious/critical conditions': 60555 } ``` ### Get Worldwide Closed cases ```python track.closed_cases() ``` Output: ``` { 'outcomes': 19142009, 'recovered/discharged': 18278873, 'deaths': 863136 } ``` ### Get Country names ```python 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 ```python 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 ```python 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 ```python 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 ```python 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 ```python 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. ```


نیازمندی

مقدار نام
- bs4
- requests
- regex
>=3.7 pytest


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl covid19-tracker-0.0.8:

    pip install covid19-tracker-0.0.8.whl


نصب پکیج tar.gz covid19-tracker-0.0.8:

    pip install covid19-tracker-0.0.8.tar.gz