Metadata-Version: 2.1
Name: covidactnow
Version: 1.0.20
Summary: A wrapper allowing users to get specific state-based COVID information from the Covid Act Now database.
Home-page: UNKNOWN
Author: Prerit Das
Author-email: <preritdas@gmail.com>
License: UNKNOWN
Keywords: python,covid,rest,information,wrapper
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: requests

# Covid Act Now Python Wrapper

This package is an extremely simple wrapper around Covid Act Now's database of COVID-19 related information. 

Usage is simple. Install the package with `pip install covidactnow`.

```
import covidactnow

api = covidactnow.User(api_key = 'yourapikey')

washingtonInfectionRate = api.infRate('WA')
massachussettsVaxRate = api.vaxRate('MA')

print(f"{washingtonInfectionRate = }")
print(f"{massachussettsVaxRate = }")
```
This will result (with different data, of course):
```

```


