I live in San Diego, and I have been running a little covid dashboard for my neighborhood using the SD County API. Here is the API website: https://sdgis-sandag.opendata.arcgis.com/datasets/covid-19-statistics-by-zip-code/api and here is the query I have been using: https://gis-public.sandiegocounty.gov/arcgis/rest/services/Hosted/COVID_19_Statistics__by_ZIP_Code/FeatureServer/0/query?where=ziptext%20%3D%20%2792131%27&outFields=*&outSR=4326&f=json
Everything was working just fine until the county implemented some kind of firewall to prevent DDOS attacks, and I can no longer access this API. I have a simple python request and it times out: requests.post(srQuery,timeout=5)
The employee I have been speaking with doesnt know why its happening and cant seem to fix it.
The only work around I can think of is to use a browser to access the API, and save the file to my computer, and read it in manually. Does anyone have a better idea? Or an idea of how to automate the saving of a browser file to my hard drive?