Use trio async framework with PySide2/PyQt5
Project description
triq
Use trio async framework with PyQt5/PySide2
Caution
This is an alpha-quality software.
How to
...
import triq
import trio
async def some_async_func(message):
await trio.sleep(0.5)
print(message)
app = QApplication([])
hitme = QPushButton('Hit me')
hitme.clicked.connect(lambda: triq.call_async(some_async_func, 'hello, world!'))
hitme.show()
bye = QPushButton('Bye')
bye.clicked.connect(triq.exit)
bye.show()
triq.run(app)
The above should work in PyQt5 and PySide2
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
triq-0.0.4-py3-none-any.whl
(3.9 kB
view hashes)