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


Python ArcGIS Site.export_site用法及代碼示例


本文簡要介紹 python 語言中 arcgis.gis.admin.Site.export_site 的用法。

用法:

export_site(location)

返回:

字典指示‘success’或‘error’

此操作將門戶網站配置導出到您指定的位置。導出的文件包含以下信息:

Content directory - the content directory contains the data

associated with every item in the portal

Database dump file - a plain-text file that contains the SQL

commands required to reconstruct the portal database

Configuration store connection file - a JSON file that contains

the database connection information

Parameter

Description

location

必需的字符串。門戶可訪問的文件夾的路徑,導出的站點配置將寫入其中。

USAGE: Export Portal Site to a location the Portal server has access to.  ** This can be a
       lengthy operation.

from arcgis.gis import GIS
gis = GIS("https://yourportal.com/portal", "portaladmin", "password")
sitemgr = gis.admin.site
response = sitemgr.export_site(r'c:\temp')
print(response)

# Output
{'status': 'success', 'location': 'C:\Temp\June-9-2018-5-22-29-PM-EDT-FULL.portalsite'}

相關用法


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