Hi everyone,<br><br>I am a new user of Paraview and I&#39;m quite interested in using Python script for Paraview<br><br>My goal is to import VTK series files, apply a contour to all of them and finally export the contours in VRML format. This is my first script :<br>
<br>#--------------------------------------------------<br>from paraview.simple import *<br><br>reader = servermanager.sources.LegacyVTKReader()<br>reader.FileNames = [ &quot;/.../1.vtk&quot; , &quot;/.../2.vtk&quot; ]<br>
reader.UpdatePipeline()<br><br>SetActiveSource(reader)<br><br>aContour = Contour(Input = reader)<br>aContour.ContourBy = &quot;alpha1&quot;<br>aContour.Isosurfaces = [0.5]<br><br>Show(aContour)<br>Render()<br><br>#from this point it doesn&#39;t work<br>
exporters = servermanager.createModule(&quot;exporters&quot;)<br>VRMLExporter = servermanager.exporters.VRMLExporter( ? , FileName= &quot;/.../output_1.vrml &quot;)<br>#--------------------------------------------------<br>
<br>Can anyone help me, I&#39;m totally lost with the export part ? (but if you see others problems please tell me!)<br><br>Regards,<br><br>Yann<br>