本文简要介绍 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}]
相关用法
- Python ArcGIS UserManager.categories用法及代码示例
- Python ArcGIS UserManager.create用法及代码示例
- Python ArcGIS UserManager.signup用法及代码示例
- Python ArcGIS UserManager.advanced_search用法及代码示例
- Python ArcGIS UserManager.search用法及代码示例
- Python ArcGIS UserManager.get用法及代码示例
- Python ArcGIS UserManager.invite用法及代码示例
- Python ArcGIS UserManager.enable_users用法及代码示例
- Python ArcGIS UserManager.disable_users用法及代码示例
- Python ArcGIS UserManager.send_notification用法及代码示例
- Python ArcGIS User.delete用法及代码示例
- Python ArcGIS User.reset用法及代码示例
- Python ArcGIS User.generate_direct_access_url用法及代码示例
- Python ArcGIS User.user_settings用法及代码示例
- Python ArcGIS User.unlink_account用法及代码示例
- Python ArcGIS User.link_account用法及代码示例
- Python ArcGIS User.report用法及代码示例
- Python ArcGIS User.update_level用法及代码示例
- Python ArcGIS User.items用法及代码示例
- Python ArcGIS User.landing_page用法及代码示例
- Python ArcGIS User.reassign_to用法及代码示例
- Python ArcGIS User.get_thumbnail用法及代码示例
- Python ArcGIS User.folders用法及代码示例
- Python ArcGIS User.update用法及代码示例
- Python ArcGIS UX.featured_content用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.gis.UserManager.counts。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。