Tableau Server Client (TSC)
中CSVRequestOptions
的用法。
用法
CSVRequestOptions(maxage=-1)
使用此類指定生成 CSV 數據時要應用的視圖過濾器。或者,您可以通過提供 maxage
值來指定緩存在服務器上的 CSV 數據的最長期限。請參閱views.populate_csv
。
屬性
名字 | 說明 |
---|---|
maxage |
可選的。 CSV 數據在刷新前緩存在服務器上的最大分鍾數。該值必須是介於 1 和 240 分鍾之間的整數。 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)
相關用法
- Python CSV轉JSON用法及代碼示例
- Python Calendar itermonthdays2()用法及代碼示例
- Python Condition release()用法及代碼示例
- Python Collections.UserString用法及代碼示例
- Python Calendar monthdatescalendar()用法及代碼示例
- Python Condition notify()用法及代碼示例
- Python Condition wait()用法及代碼示例
- Python Calendar itermonthdates()用法及代碼示例
- Python Calendar iterweekdays()用法及代碼示例
- Python Calendar monthdayscalendar()用法及代碼示例
- Python Calendar itermonthdays3()用法及代碼示例
- Python Sympy Curve.translate()用法及代碼示例
- Python Collections.UserDict用法及代碼示例
- Python Celsius轉Fahrenheit用法及代碼示例
- Python Collections.UserList用法及代碼示例
- Python Condition acquire()用法及代碼示例
- Python Calendar yeardatescalendar()用法及代碼示例
- Python Condition notify_all()用法及代碼示例
- Python Calendar itermonthdays()用法及代碼示例
- Python Calendar yeardayscalendar()用法及代碼示例
- Python Calendar yeardays2calendar()用法及代碼示例
- Python Calendar itermonthdays4()用法及代碼示例
- Python Calendar monthdays2calendar()用法及代碼示例
- Python OpenCV Canny()用法及代碼示例
- Python cudf.core.column.string.StringMethods.is_vowel用法及代碼示例
注:本文由純淨天空篩選整理自tableau.github.io大神的英文原創作品 CSVRequestOptions class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。