Using Jython

Jython is an implementation of the Python scripting language. Isight uses the Jython interpreter Version 2.5.1.

A Jython script consists of Python statements. Most statements are assignments (x = y*3-5) or method calls (jobLog.logInfo("foo bar")). Statements end at the end of a line, with no need for punctuation like a semicolon.

An example of a Jython script, as it appears in the Script Component Editor, is shown below:



Documentation can be found on-line at http://www.jython.org. Documentation of the underlying Python language is at http://python.org/doc.