当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。