DecryptPYT
サマリー
The DecryptPYT function decrypts an encrypted Python toolbox file.
ディスカッション
An encrypted Python toolbox can also be decrypted by clicking the toolbox in ArcGIS Pro.
構文
DecryptPYT(toolbox, password)
| パラメーター | 説明 | データ タイプ |
|---|---|---|
|
toolbox |
The encrypted Python toolbox that will be decrypted. |
String |
|
password |
The password used to unlock the encrypted Python toolbox. |
String |
コードのサンプル
DecryptPYT example
Decrypt an encrypted Python toolbox.
import arcpy
toolbox = 'd:/tools/analysis.pyt'
password = '<your password>'
arcpy.DecryptPYT(toolbox, password)