activities
latest
false
- 概要
- 暗号化
- データベース
- Java
- Python
- Web API
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
開発者向けのアクティビティ
Last updated 2024年9月12日
Python スクリプトを読み込み
UiPath.Python.Activities.LoadScript
Python スクリプトのハンドラーを
PythonObject
型変数に格納できます。
You can use the resulting variable to invoke the methods within the code. If there is inline code besides the methods present in the script, the code is also executed at runtime.
It can only be used inside the Python Scope activity.
Due to a software limitation, this activity uses, by default, the installation location of the Python activity package as the run directory for the script.
To be able to use relative paths inside the script, you can add the following code to the loaded script as a workaround:
import sys
import os
sys.path.append(os.path.dirname(os.path.realpath(<em>file</em>)))
import <your module here>
import sys
import os
sys.path.append(os.path.dirname(os.path.realpath(<em>file</em>)))
import <your module here>
共通
- 表示名 - アクティビティの表示名です。 このフィールドでは
String
型の変数のみがサポートされています。
入力
- コード - 読み込む Python コードです。 このフィールドでは String 型の変数のみがサポートされています。
- ファイル - 読み込む Python コードが含まれているファイルへのパスです。 このフィールドでは String 型の変数のみがサポートされています。
その他
- プライベート - オンにした場合、変数および引数の値が Verbose レベルでログに出力されなくなります。
出力
- 結果 - 指定した Python スクリプトのハンドラーです。
PythonObject
型変数に格納されます。