quamash
quamash copied to clipboard
Implementation of the PEP 3156 event-loop (asyncio) api using the Qt Event-Loop
My colleague @rayg-ssec and I use quamash in our Qt app. We have been using `conda` as one of our main package managers and build tools. We depend a lot...
Hello I added some lines to the quamash init file and works fine: https://gist.github.com/dpineiden/9c969a2a0217a13b39afc4d0c4e13f07
According to the [Python 3.7 docs](https://docs.python.org/3/library/asyncio-eventloop.html?highlight=set_default_executor#asyncio.loop.run_in_executor) >awaitable loop.run_in_executor(executor, func, *args) >Arrange for func to be called in the specified executor. The executor argument should be an concurrent.futures.Executor instance. The default...
Hi Devs, Current event poll use of query time out of 0.01, the best way of 0 delay maybe a push model(I just focus on windows), Is that possible? Tks,...
see: #23 A custom event loop policy has the possibility of making `QThreadExecutor`s more useful as you could run coroutines in them, with a per-thread event loop with less. Even...
I did some experimenting with quamash, and I think it's fairly easy to make an awaitable wrapper for Qt signals. While it's not part of a regular asyncio event loop,...
Hello, I was wondering what would be the implication of using the asyncio event loops for a Qt application instead of quamash Event loop. We can use asyncio with Qt...
While using quamash and tcp client connect to a closed tcp server and hope to try to reconnect to this tcp server automatically, it will raised a ConnectionRefusedError and stop...
When using asyncio without Quamash, `loop.run_in_executor` doesn't necessarily need an explicit thread executor. However, in Usage in `readme.md` it's given explicitly. Is there any reason to do that, or can...
Hello, I have this minimal code to reproduce the problem: ```python import asyncio import sys from PyQt5.QtWidgets import QApplication from quamash import QEventLoop def problem(): app = QApplication(sys.argv) loop =...