https://github.com/timhanewich/vaccinationrates
Global COVID-19 vaccination and case rates
https://github.com/timhanewich/vaccinationrates
Last synced: 8 months ago
JSON representation
Global COVID-19 vaccination and case rates
- Host: GitHub
- URL: https://github.com/timhanewich/vaccinationrates
- Owner: TimHanewich
- License: mit
- Created: 2021-05-24T14:07:48.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-24T14:13:59.000Z (about 5 years ago)
- Last Synced: 2025-09-24T00:52:01.604Z (9 months ago)
- Language: C#
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
# VaccinationRates
A lightweight .NET class library for sourcing COVID-19 case and vaccination rates from Bing's COVID dashboard service.
## Installing into a .NET project
The package ID is `VaccinationRates` on Nuget. To install:
```
dotnet add package VaccinationRates
```
## Using the library
To request data:
```
using VaccinationRates;
VaccinationAreaData worldwidedata = await VaccinationAreaData.LoadWorldAsync();
```