[Paraview] Cannot find SaveData for python scripting

2010-02-16 Thread Fabian Wein
Hi, I searched and googled but could not find the python call for SaveData(). I import my data by my own reader and want to export it as VTK file by scripting. Any hints? Is there a doxygen documentation or something like that for the complete python interface? I just have the examples from the

Re: [Paraview] Cannot find SaveData for python scripting

2010-02-16 Thread Adriano Gagliardi
[mailto:paraview-boun...@paraview.org] On Behalf Of Fabian Wein Sent: 16 February 2010 10:31 To: paraview@paraview.org Subject: [Paraview] Cannot find SaveData for python scripting Hi, I searched and googled but could not find the python call for SaveData(). I import my data by my own reader and want

Re: [Paraview] Cannot find SaveData for python scripting

2010-02-16 Thread Fabian Wein
Hi Adriano, To save a state: servermanager.SaveState() To load a state: servermanager.LoadState() If there is a command you are looking for that doesn't appear using dir(), then try dir(servermanager) as it may be hiding in there somewhere. Thanks a lot. Fabian

Re: [Paraview] Cannot find SaveData for python scripting

2010-02-16 Thread Jean M. Favre
Fabian Wein wrote: Hi, I searched and googled but could not find the python call for SaveData(). All the writers can be found under... servermanager.writers dir(servermanager.writers) ['AnimationSceneImageWriter', 'CSVWriter', 'DataSetCSVWriter', 'DataSetWriter', 'EnSightWriter',

Re: [Paraview] Cannot find SaveData for python scripting

2010-02-16 Thread Berk Geveci
Also, make sure to check these out: http://paraview.org/Wiki/ParaView/Python_Scripting http://paraview.org/Wiki/Python_GUI_Tools http://paraview.org/Wiki/Python_recipes Best, -berk On Tue, Feb 16, 2010 at 6:20 AM, Fabian Wein fabian.w...@am.uni-erlangen.de wrote: Hi Adriano, To save a