Metadata-Version: 2.1
Name: pycorona
Version: 0.3
Summary: pycorona is a package to get Coronavirus stats of any country
Home-page: https://github.com/toxicrecker/pycorona
Author: toxicrecker
Author-email: reck.channel.mainlead@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# pycorona
pycovid is a library that is used to get coronavirus condition (i.e. active cases, deaths, etc) of any country.

# Usage
```python
from pycorona import Country

country = Country("USA")
cases = country.total_cases()
print(cases)
> 2,234,475
```

Attributes available -<br>
    continent()<br>
    flag()<br>
    total_cases()<br>
    today_cases()<br>
    total_deaths()<br>
    today_deaths()<br>
    recovered()<br>
    critical_cases()<br>
    active_cases()<br>
    tests()<br>

Note - This package is currently under development

