Skip to content

Specific example #11

Answered by bertrandmartel
sheridangis asked this question in Q&A
Apr 8, 2021 · 1 comments · 2 replies
Discussion options

You must be logged in to vote

@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) 

https://replit.com/@bertrandmartel/TableauCovid19Wyoming

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@sheridangis
Comment options

@bertrandmartel
Comment options

Answer selected by bertrandmartel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants