DecryptPYT

AllSource 1.3    |

摘要

对加密的 Python 工具箱文件进行解密。

语法

DecryptPYT (toolbox, password)
参数说明数据类型
toolbox

加密的 Python 工具箱将变为未加密。

String
password

用于对加密的 Python 工具箱进行解锁的密码。

String

代码示例

DecryptPYT 示例

对加密的 Python 工具箱进行解密。

import arcpy
toolbox = 'd:/tools/analysis.pyt'
password = '<your password>'
arcpy.DecryptPYT(toolbox, password)

相关主题