Save the current Origin session to an Origin project (OPJ) file.
Save(PathName)
True for success, this method will check path existence before attempting to save, so will return False if path does not exist
import PyOrigin PathNameToSave = 'd:\\test.opj' if(PyOrigin.Save(PathNameToSave)): print('Project saving succeeded.') else: print('Project saving failed!')