EncryptPYT

この ArcGIS 2.6 ドキュメントはアーカイブされており、今後更新されません。 コンテンツとリンクが古い場合があります。 最新のドキュメントをご参照ください

概要

Encrypts a Python toolbox file.

注意:

The encryption of a Python toolbox is performed in place and will overwrite the original unencrypted .pyt file. It is recommended to back up the input file to avoid the loss of its contents in case the password is forgotten.

ディスカッション

A Python toolbox can also be encrypted by clicking on the toolbox within ArcGIS Pro.

構文

EncryptPYT (toolbox, password)
パラメーター説明データ タイプ
toolbox

The Python toolbox that will be encrypted in place.

String
password

The password used to lock the encrypted Python toolbox.

String

コードのサンプル

EncryptPYT example

Encrypt a Python toolbox.

import arcpy

toolbox = 'd:/tools/analysis.pyt'
password = '<your password>'

arcpy.EncryptPYT(toolbox, password)

関連トピック