Specific example #11
-
In your sample you listed I have a table similar, wondering exactly which set of codes you used, different columns but similar layout. So far I have been unsuccessful in running the code with this example. My particular site is this one: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@sheridangis Hello, in your case the url would be https://public.tableau.com/views/EpiCOVIDtest/CountyNumbersTable There was a bug #9 regarding the datatypes, if you upgrade to v0.1.8, the following works fine: from tableauscraper import TableauScraper as TS
url = "https://public.tableau.com/views/EpiCOVIDtest/CountyNumbersTable"
ts = TS()
ts.loads(url)
workbook = ts.getWorkbook()
for t in workbook.worksheets:
print(f"worksheet name : {t.name}")
print(t.data) |
Beta Was this translation helpful? Give feedback.
@sheridangis Hello, in your case the url would be https://public.tableau.com/views/EpiCOVIDtest/CountyNumbersTable
There was a bug #9 regarding the datatypes, if you upgrade to v0.1.8, the following works fine:
https://replit.com/@bertrandmartel/TableauCovid19Wyoming