Jac

Results 184 comments of Jac

@saadbahir yes - check out the example code in https://github.com/tableau/server-client-python/blob/master/samples/export.py

I suspect that implementing this might require/be improved by implementing this request as well: https://github.com/tableau/server-client-python/issues/1045

I'm pretty sure this functionality needs to be implemented in the REST API, I'll get this to the relevant team.

I don't actually know, I've sent this question to some other teams who should be able to answer.

Unfortunately the answer is that this isn't supported.

Unfortunately this change (to/from oAuth) isn't currently supported through the API. You might be able to do it using the document api to edit the xml of the downloaded file,...

It's not you - that relationship is very strange and the ids do not represent the same thing. There are some (ugly) workarounds described in this open issue: https://github.com/tableau/server-client-python/issues/825

Could you explain what you mean by "this no longer works"? What did you see before, and what do you get now instead?

Got it - sorry, I totally skimmed over the example url in the first post. I'll have to check with the team that owns the feature on whether they knew/intended...

The usage parameter needs to be passed in to the populate_views() method, like this ``` server.workbooks.populate_views(sample_workbook, usage=True) print("\nName of views in {}: ".format(sample_workbook.name)) print([(view.name, view.total_views) for view in sample_workbook.views]) ```...