我正在尝试使用python tableau服务器客户端导出Tableau视图。
以下是用于创建pdf的代码部分。
server.views.populate_pdf(view, options)
with file("dashboard.pdf", 'wb') as f:
f.write(view.pdf)
此代码工作正常,并且正在将视图导出到pdf文件。
我的Tableau仪表板没有几个过滤器(例如product_type,vendor)。
如何在导出时添加视图过滤器,以便仅获取特定product_type和供应商的数据?
答案 0 :(得分:1)
我想我使用以下示例找到了答案。
https://github.com/tableau/server-client-python/blob/master/samples/export.py
我们需要添加视图过滤器(vf),如下所示:
option_factory = getattr(TSC, "PDFRequestOptions")
options = option_factory().vf("product_type","Handphone")
options.vf("vendor","vendor1")
#In case of multi select filter we can use coma separated values as followed
options.vf("vendor","vendor1,vendor2")
#To get the list of all filter options use
print options.view_filters
一旦我们准备好过滤器选项,就可以通过它来填充pdf。
server.views.populate_pdf(view, options)
with file("dashboard.pdf", 'wb') as f:
f.write(view.pdf)