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


Python ArcGIS UserManager.counts用法及代碼示例


本文簡要介紹 python 語言中 arcgis.gis.UserManager.counts 的用法。

用法:

counts(type='bundles', as_df=True)

返回:

Pandas DataFrame 如果 as_df 為真。如果為 False,則結果是字典列表。

counts 方法返回一個關於當前用於給定 type 的許可證數量的簡單報告。 type 可以是角色、應用程序、捆綁包或用戶許可類型。

Parameter

Description

type

必需的字符串。要返回的數據類型。以下值有效:

  • role - returns counts on user roles

  • app - returns counts on registered applications

  • bundles - returns counts on application bundles

  • user_type - returns counts on the user license types

as_df

可選布爾值。如果為 true,則結果作為 pandas DataFrame 返回,否則作為字典列表返回。

例子:

# Usage Example

>>>gis.users.counts("Role", as_df=True)


**Example as_df=True**

>>> df = gis.users.counts('user_type', True)
>>> df
    count        key
0     12  creatorUT
1      2   viewerUT


**Example as_df=False**


>>> df = gis.users.counts('user_type', False)
>>> df
[{'key': 'creatorUT', 'count': 12}, {'key': 'viewerUT', 'count': 2}]

相關用法


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