本文简要介绍 python 语言中 arcgis.gis.workflowmanager.WorkflowManager
的用法。
用法:
class arcgis.gis.workflowmanager.WorkflowManager(item)
基础:
object
表示与 Workflow Manager 实例或项目的连接。
用户使用工作流项创建、更新、删除工作流图、作业模板和作业或各种其他属性。
Parameter
Description
item
必需的字符串。工作流管理器项
例子:
# USAGE EXAMPLE: Creating a WorkflowManager object from a workflow item from arcgis.workflow import WorkflowManager from arcgis.gis import GIS # connect to your GIS and get the web map item gis = GIS(url, username, password) wf_item = gis.content.get('1234abcd_workflow item id') # create a WorkflowManager object from the workflow item wm = WorkflowManager(wf_item) type(wm) >> arcgis.workflowmanager.WorkflowManager # explore the users in this workflow using the 'users' property wm.users >> [{}...{}] # returns a list of dictionaries representing each user
相关用法
- Python ArcGIS WorkflowManager.create_lookup用法及代码示例
- Python ArcGIS Worker用法及代码示例
- Python ArcGIS WorkerManager用法及代码示例
- Python ArcGIS WebMap.update用法及代码示例
- Python ArcGIS WebMap.add_layer用法及代码示例
- Python ArcGIS WebMap用法及代码示例
- Python ArcGIS WebMap.basemap用法及代码示例
- Python ArcGIS WebMap.tables用法及代码示例
- Python ArcGIS WebMap.add_table用法及代码示例
- Python ArcGIS WebMap.forms用法及代码示例
- Python ArcGIS WebSocket用法及代码示例
- Python ArcGIS WebMap.update_drawing_info用法及代码示例
- Python ArcGIS WebhookManager.create用法及代码示例
- Python ArcGIS WebMap.print用法及代码示例
- Python ArcGIS WebMap.layers用法及代码示例
- Python ArcGIS WebMap.save用法及代码示例
- Python ArcGIS WebMap.move_from_basemap用法及代码示例
- Python ArcGIS WebMap.bookmarks用法及代码示例
- Python ArcGIS WebAdaptors.list用法及代码示例
- Python ArcGIS WebMap.update_layer用法及代码示例
- Python ArcGIS WebMap.move_to_basemap用法及代码示例
- Python ArcGIS power用法及代码示例
- Python ArcGIS APIKeyManager.get用法及代码示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代码示例
- Python ArcGIS ContentManager.unshare_items用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 arcgis.gis.workflowmanager.WorkflowManager。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。