當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python Tableau CSVRequestOptions用法及代碼示例


Tableau Server Client (TSC)CSVRequestOptions的用法。

用法

CSVRequestOptions(maxage=-1)

使用此類指定生成 CSV 數據時要應用的視圖過濾器。或者,您可以通過提供 maxage 值來指定緩存在服務器上的 CSV 數據的最長期限。請參閱views.populate_csv

屬性

名字 說明
maxage 可選的。 CSV 數據在刷新前緩存在服務器上的最大分鍾數。該值必須是介於 1240 分鍾之間的整數。 0 在服務器上將被解釋為 1 分鍾,因為這是允許的最短間隔。默認情況下,maxage 設置為 -1 ,表示服務器設置中配置的默認行為。

示例

# import tableauserverclient as TSC
# server = TSC.Server('https://MY-SERVER')
# sign in, get a specific view, etc.

# set view filters
csv_req_option = TSC.CSVRequestOptions(maxage=5)
csv_req_option.vf('Region', 'South')
csv_req_option.vf('Category', 'Furniture')

# retrieve the csv data for the view
server.views.populate_csv(view_item, csv_req_option)

相關用法


注:本文由純淨天空篩選整理自tableau.github.io大神的英文原創作品 CSVRequestOptions class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。