For the latest version of JMP Help, visit JMP.com/help.


Scripting Guide > Extending JMP > Work with Python > JMP-to-Python Interfaces
Publication date: 04/30/2021

JMP-to-Python Interfaces

JMP provides the interfaces to access Python that are described in the following sections. The basic execution model is to first initialize the Python connection, perform the required Python operations, and then terminate the Python connection. In most cases, these functions return 0 if the Python operation was successful or an error code if it was not. If the Python operation is not successful, a message is written to the log. The single exception to this is Python Get(), which returns a value.

Python JSL-Scriptable Object Interfaces

The Python interfaces are also scriptable using a Python connection object. A scriptable Python connection object can be obtained using the Python Connect() function.

// return a Python connection scriptable object

PythonConnection = Python Connect();
 

// return 1 if a Python connection is active. Otherwise, returns 0.

x = PythonConnection << Is Connected;
Show( x );
PythonConnection << Disconnect;

x = 1;

0

Want more information? Have questions? Get answers in the JMP User Community (community.jmp.com).