Metadata-Version: 2.1
Name: coronatracker
Version: 0.3
Summary: A Python wrapper for Bing's COVID19 tracker.
Home-page: https://github.com/NCPlayz/coronatracker
Author: NCPlayz <Nadir Chowdhury>
Author-email: chowdhurynadir0@outlook.com
License: MIT
Platform: UNKNOWN
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Utilities
Classifier: Natural Language :: English
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7.0
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.23.0)
Requires-Dist: aiohttp (>=3.6.2)

# coronatracker

This is a simple tracker for COVID19 which uses the data for https://bing.com/covid and wraps it into usable data for Python programs.

```py
>>> import coronatracker 
>>> ct = coronatracker.CoronaTracker() 
>>> ct.fetch_results()
>>> ct.get_country('United Kingdom')
Country(total_stats=TotalStats(confirmed=1551, deaths=53, recovered=19), id='unitedkingdom', last_updated=datetime.datetime(2020, 3, 16, 23, 0, 12, 91000), areas=[], name='United Kingdom', lat=53.943838, long=-2.550564)
```

## Requirements

- Requests
- aiohttp

## Install

```sh
$ python -m pip install -U coronatracker
```



