Mix AutoBahn with PySide2

I would like to create a websocket server(with ssl) by AutoBahn with PySide2, is it possible to mix these two libraries together?Both of them got their own event-loop. Thanks

Hi!

We had success running autobahn with a PySide2 application, though only for twisted variant of the library. You would need to use the master of https://github.com/sunu/qt5reactor

Basically in your PySide2 app do below and then actually start the PySide2 main loop

import qt5reactor
qt5reactor.install()