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


Python Tableau groups.get用法及代碼示例


Tableau Server Client (TSC)groups.get的用法。

用法

groups.get(req_options=None)

返回有關站點上的組的信息。

要獲取有關組中用戶的信息,您必須首先使用groups.populate_users 方法使用用戶信息填充GroupItem

REST API:Get Users on Site

參數

名字 說明
req_options (可選)您可以將包含附加參數的請求對象傳遞給該方法以過濾請求。例如,如果您正在搜索特定組,您可以指定組的名稱或組 ID。

返回

返回GroupItem 對象和PaginationItem 對象的列表。使用這些值來迭代結果。

示例

# import tableauserverclient as TSC
# tableau_auth = TSC.TableauAuth('USERNAME', 'PASSWORD')
# server = TSC.Server('https://SERVERURL')

  with server.auth.sign_in(tableau_auth):

       # get the groups on the server
       all_groups, pagination_item = server.groups.get()

       # print the names of the first 100 groups
       for group in all_groups :
           print(group.name, group.id)



相關用法


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