Twisted Qt Integration
Project description
Qt5Reactor
Using the QtReactor
Install using pip
pip install qt5reactor
Before running / importing any other Twisted code, invoke:
app = QApplication(sys.argv) # your code to init QtCore
from twisted.application import reactors
reactors.installReactor('qt5')
or
app = QApplication(sys.argv) # your code to init QtCore import qt5reactor qt5reactor.install()
Testing
trial --reactor=qt5 [twisted] [twisted.test] [twisted.test.test_internet]
Make sure the plugin directory is in path or in the current directory for reactor discovery to work.
Testing on Python 3
trial does not work on Python3 yet. Use Twisted’s Python 3 test runner instead.
Install the reactor before calling unittest.main().
import qt5reactor qt5reactor.install() unittest.main(...)
Project details
Release history Release notifications
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
| Filename, size & hash SHA256 hash help | File type | Python version | Upload date |
|---|---|---|---|
| qt5reactor-0.5-py2.py3-none-any.whl (7.4 kB) Copy SHA256 hash SHA256 | Wheel | py2.py3 | Mar 21, 2018 |
| qt5reactor-0.5.tar.gz (5.9 kB) Copy SHA256 hash SHA256 | Source | None | Mar 21, 2018 |