Does anyone used PyQt with gevent? How to link PyQt loop to the gevent?
http://www.gevent.org/ - coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent event loop.
|
Does anyone used PyQt with gevent? How to link PyQt loop to the gevent? http://www.gevent.org/ - coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent event loop.
| |||||||||
feedback
|
|
Here's how you would change pyqt by example's session1 to cooperate: https://github.com/traviscline/pyqt-by-example/commit/b5d6c61daaa4d2321efe89679b1687e85892460a | |||
feedback
|
|
You can use a Qt IDLE "timer" to allow The correct solution would be to allow libevent to listen on new Qt events somehow, but I haven't been able to figure out how to do that in practice yet. Maybe having Qt to send something to gevent via a socket when a GUI event arrives into the event queue would help. Has anybody solved that? Working example:
| ||||
|
feedback
|
|
you sould avoid use app.exec_(), it is a loop function which use this function to process events: http://doc.qt.nokia.com/stable/qcoreapplication.html#processEvents so you can call processEvents directly. | |||
|
feedback
|