Back
I have to upload a lot of worksheets to tableau server. Many of those will be created and uploaded temporarily. I want to delete some workbook uploaded to tableau server since those are no more in use. How can I do that in python programmatically?
You can make use of TSC(Tableau Server Client).
https://github.com/tableau/server-client-python/blob/master/docs/docs/api-ref.md
From the above link, you can get detailed info there. You can delete the workbook by its id.
workbooks.delete(workbook_id)
31k questions
32.8k answers
501 comments
693 users