Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JIRASummaryDetails
ORG-9039

Integrate Python into Origin as a scripting language.

Code Block
titleLabTalk Script1
run.Python(%(str$), #); // # = 32(or 33) for setting path, 16 for suppress dump output, 2 for file, 1 for expression, 0 for statement

Or

Code Block
titleLabTalk Script2
run -py %(str$);  // Run Python script
run -pye %(str$); // Evaluate Python Expression
run -pyf %(str$); // Run Python file

ORG-10903

ORG-11444

Access Origin Objects from Python.

Samples under Origin exe\Samples\Python\ folder.

Code Block
titlePython Script Example1
import PyOrigin
pages = PyOrigin.Pages()
for page in pages:
	print(page.GetName())
ORG-11739Supported Version: Python 2.7 and 3.3
By default we support Python 3.3, to switch the Python version to Python 2.7, please run the script below in Script Window
Code Block
@pyv=2; //set to use python 2.7, while @pyv=3 to use python 3.3
ORG-10779Execution mode in Script Window to run Python scriptsImage RemovedImage Added