The jmp package for Python is a bridge between JMP and Python that facilitates bidirectional communication. This package exposes JMP functionality to Python and enables Python to treat JMP data tables as Python objects. This package is only available within the JMP Python environment.
Load the jmp package with the Python import function. This example loads the jmp package and opens the Big Class.jmp data table:
import jmp
dt = jmp.open(jmp.SAMPLE_DATA + 'Big Class.jmp')