Can I embed a Paraview interactor as a pyqt5 widget?

I simple example of a paraview script is

 from paraview.simple import *                                                  
                                                                                
 sphere = Sphere(ThetaResolution=16, PhiResolution=32)                          
 shrink = Shrink(sphere)                                                        
 Show(shrink)                                                                   
 Render()
 Interact()

Is there a way I can embed this into a PyQt5 application as a widget? In a vein similar to vtk via

from vtk.qt.QVTKRenderWindowInteractor import QVTKRenderWindowInteractor

Thanks

Hi,

I have the same problem, could find the answer? If yes could you please share it with me?

you can find the answer here