Tableau Server Client (TSC)
中server_info.get
的用法。
用法
server_info.get()
检索服务器的构建和版本信息。
此方法进行未经身份验证的调用,因此不需要登录或身份验证令牌。
REST API:Server Info
参数None
Exceptions
错误 | 说明 |
---|---|
404003 UNKNOWN_RESOURCE |
如果未找到服务器信息端点,则引发异常。 |
示例
import tableauserverclient as TSC
# create a instance of server
server = TSC.Server('https://MY-SERVER')
# set the version number > 2.3
# the server_info.get() method works in 2.4 and later
server.version = '2.5'
s_info = server.server_info.get()
print("\nServer info:")
print("\tProduct version: {0}".format(s_info.product_version))
print("\tREST API version: {0}".format(s_info.rest_api_version))
print("\tBuild number: {0}".format(s_info.build_number))
相关用法
- Python Pandas series.cummax()用法及代码示例
- Python Pandas series.cumprod()用法及代码示例
- Python dict setdefault()用法及代码示例
- Python seaborn.swarmplot()用法及代码示例
- Python seaborn.residplot()用法及代码示例
- Python calendar setfirstweekday()用法及代码示例
- Python seaborn.regplot()用法及代码示例
- Python seaborn.PairGrid()用法及代码示例
- Python set clear()用法及代码示例
- Python seaborn.boxenplot()用法及代码示例
- Python seaborn.pairplot()用法及代码示例
- Python OpenCV setWindowTitle()用法及代码示例
- Python seaborn.factorplot()用法及代码示例
- Python seaborn.FacetGrid()用法及代码示例
- Python seaborn.lineplot()用法及代码示例
- Python seaborn.lmplot()用法及代码示例
- Python set()用法及代码示例
- Python setattr()用法及代码示例
- Python set copy()用法及代码示例
- Python seaborn.pointplot()用法及代码示例
- Python set add()用法及代码示例
- Python set symmetric_difference_update()用法及代码示例
- Python OpenCV selectroi()用法及代码示例
- Python seaborn.jointplot()用法及代码示例
- Python seek()用法及代码示例
注:本文由纯净天空筛选整理自tableau.github.io大神的英文原创作品 server_info.get。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。