Thread: Pspice Call
View Single Post
  #2  
Old 10-08-2010, 11:16 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
I'm not familiar with pspice, but you can call any external process and pass it arguments by using the Python subprocess module. Example:
Code:
import subprocess
subprocess.call(['pspice.exe','arg1','arg2'])
Reply With Quote