This is a COVID-19 tracker created as a school project for the Software Development track at WGU.
Repo created from temlate graciously provided by navdeep-G. Template repo is here: navdeep-G/samplemod
https://covidtracking.com/api/v1/states/current.json https://covidtracking.com/api/v1/states/daily.json
api_response = requests.get('https://covidtracking.com/api/states?state=NY') print("COVID-19 Testing Results in", api_response.json()['state']) print("Positive:", api_response.json()['positive']) print("Negative:", api_response.json()['negative'])