Hello!!!
This is a question about Asynch Paraview. If there’s a better place to ask this questoin, let me know…
I’m building a POC with Trame and Asynch Paraview and I’m at the point where I need to do more than I can figure out from the two example apps (wavelet, rock)
In general, there doesn’t seem to be any documentation for any of the asynch microservices - like PipelineBuilder etc. Is this correct, or am I missing something?
My most immediate need to is to find out what filters are supported. In the snippet below I’m trying to use the Shrink filter, but this bombs with the below error
RuntimeError: Could not create proxy
Shrinkof group
filters`
How do I find out what filters are supported and the properties that they support? And is there any documentation available that I’m missing?
self.outline = await self._builder.CreateProxy(
"filters",
"Shrink",
Input=self.reader
)