You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -215,7 +215,7 @@ The **Execute Python Script** module contains sample Python code that you can us
215
215
The **Python script** text box is pre-populated with some instructions in comments, and sample code for data access and output. You must edit or replace this code. Be sure to follow Python conventions about indentation and casing.
216
216
217
217
+ The script must contain a function named `azureml_main` as the entry point for this module.
218
-
+ The entry point function can contain up to two input arguments: `Param<dataframe1>` and `Param<dataframe2>`
218
+
+ The entry point function must have two input arguments: `Param<dataframe1>` and `Param<dataframe2>`, even when these arguments are not used in your script.
219
219
+ Zipped files connected to the third input port are unzipped and stored in the directory, `.\Script Bundle`, which is also added to the Python `sys.path`.
220
220
221
221
Therefore, if your zip file contains `mymodule.py`, import it using `import mymodule`.
0 commit comments