摘要
加密 Python 工具箱文件。
说明
在 ArcMap 内,也可通过单击 Python 工具箱将其加密。
语法
EncryptPYT (toolbox, password)
参数 | 说明 | 数据类型 |
toolbox | 将在同一位置进行加密的 Python 工具箱。 | String |
password | 用于对加密的 Python 工具箱进行锁定的密码。 | String |
代码示例
EncryptPYT 示例
加密 Python 工具箱。
import arcpy
toolbox = 'd:/tools/analysis.pyt'
password = '<your password>'
arcpy.EncryptPYT(toolbox, password)