Executing External Python* Scripts
To import and execute external Python* scripts from an IPython shell provided by the ISD Shell:
- Launch the ISD Shell.
- Navigate to your script file location by executing the following script:import os os.chdir('<directory_path>')where<directory_path>points to the folder containing the Python script you want to execute.
- Import your script as a Python module:import <script_name>where<script_name>equals your Python file name without extensions.Now you can proceed with executing your script.