Tableau Server Client (TSC)
中sites.get_by_id
的用法。
用法
sites.get_by_id(site_id)
查询具有给定 ID 的站点。
REST API:Query Site
参数
名字 | 说明 |
---|---|
site_id |
您要查询的站点的 ID。 |
异常
错误 | 说明 |
---|---|
Site ID undefined. |
如果未指定 id,则引发错误。 |
返回
返回 SiteItem
。
示例
# import tableauserverclient as TSC
# server = TSC.Server('https://MY-SERVER')
# sign in, etc.
a_site = server.sites.get_by_id('9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d')
print("\nThe site with id '9a8b7c6d-5e4f-3a2b-1c0d-9e8f7a6b5c4d' is: {0}".format(a_site.name))
相关用法
- Python Tableau sites.get_by_name用法及代码示例
- Python Tableau sites.get用法及代码示例
- Python Tableau sites.create用法及代码示例
- Python Tableau sites.delete用法及代码示例
- Python Tableau sites.update用法及代码示例
- Python Sympy sieve.search()用法及代码示例
- Python scipy signal.windows.slepian用法及代码示例
- Python simpy.prevprime()用法及代码示例
- Python Sympy sieve.mobiusrange()用法及代码示例
- Python Sympy sieve.totientrange()用法及代码示例
- Python Sympy sieve.extend_to_no()用法及代码示例
- Python Sympy sieve.primerange()用法及代码示例
- Python Sympy sieve.extend()用法及代码示例
- Python simpy.nextprime()用法及代码示例
- Python simpy.primerange()用法及代码示例
- Python sklearn.cluster.MiniBatchKMeans用法及代码示例
- Python scipy.ndimage.binary_opening用法及代码示例
- Python scipy.signal.windows.tukey用法及代码示例
- Python scipy.stats.mood用法及代码示例
- Python str.isidentifier用法及代码示例
- Python sklearn.metrics.fbeta_score用法及代码示例
- Python scipy.fft.ihfftn用法及代码示例
- Python scipy.stats.normaltest用法及代码示例
- Python scipy.ndimage.convolve1d用法及代码示例
- Python scipy.stats.arcsine用法及代码示例
注:本文由纯净天空筛选整理自tableau.github.io大神的英文原创作品 sites.get_by_id。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。