Closed jakedobkin closed 3 years ago
For now I'm manually downloading it and compiling it here: https://github.com/lukegil/covid-19/tree/main/raw_data/nyc/covid19-vaccine
Checking in on this one! It would be great if the sheets powering the Tableau viz on the city site were up on Github!
Still checking in on this! I noticed you guys added the vax zipcode to the Tableau but it would make life much easier for us if it were on github too!
+1 on this issue. Is there a reliable endpoint for the Tableau dashboard? download of a .csv
? It only now allows for an export of the tab file.
+1 on this issue again. I would appreciate being able to download this data via github.
I've made a Tableau scraper library in python, it would be possible to extract the data daily in a Github action with :
from tableauscraper import TableauScraper as TS
url = 'https://public.tableau.com/views/COVID-19VaccineTrackerDashboard_16153822244270/Dosesadministered'
ts = TS()
ts.loads(url)
workbook = ts.getWorkbook()
for t in workbook.worksheets:
print(f"worksheet name : {t.name}")
print(t.data)
I've set up a repository extracting the data every day from this Tableau dashboard : https://github.com/bertrandmartel/covid19-nyc-vaccine-tracker
Hi,
When will the data underlying this page be made available on Github? https://www1.nyc.gov/site/doh/covid/covid-19-data-vaccines.page
Thanks,
Jake