Easy threading and multiprocessing for GUI applications
Project description
async_gui
async_gui is a library aimed to make use of threads in GUI applications simpler. It’s inspired by PyCon talk Using futures for async GUI programming in Python 3.3 and tornado @gen.engine implementation.
Most of GUI toolkits don’t allow you to access graphical elements from non-GUI thread. Python 3.2+ has nice new feature concurrent.futures, but we can’t just wait for result from future and callbacks are not very handy.
Combination of Coroutines via Enhanced Generators (PEP-342) and futures creates a rich and easy to use asynchronous programming model which can be used for creating highly responsive GUI applications.
Example
Demo of button click handler:
@engine.async
def on_button_click(self, *args):
self.status_label.setText("Downloading image...")
# Run single task in separate thread
image_data = yield Task(self.load_url,
"http://www.google.com/images/srpr/logo4w.png")
pixmap = QtGui.QPixmap.fromImage(QtGui.QImage.fromData(image_data))
self.image_label.setPixmap(pixmap)
self.status_label.setText("Downloading pages...")
urls = ['http://www.google.com',
'http://www.yandex.ru',
'http://www.python.org']
# Run multiple task simultaneously in thread pool
pages = yield [Task(self.load_url, url) for url in urls]
self.status_label.setText("Done")
avg_size = sum(map(len, pages)) / len(pages)
self.result_label.setText("Average page size: %s" % avg_size)
Tasks yielded from on_button_click() executed in thread pool, but GUI updates done in the GUI thread. For CPU-bound applications there is also ability to run tasks in pool of processes.
See full example in examples directory.
Features
Installation
Using pip:
$ pip install async_gui
Or download, unpack and:
$ python setup.py install
To run tests use:
$ python setup.py test
Links
Documentation at readthedocs.org
Source code and issue tracking at GitHub.
History
0.2.0 (2013-0x-xx)
MultiTask can return generator of ready tasks instead waiting for all done
0.1.0 (2013-04-06)
initial PyPI release
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file async_gui-0.1.1.tar.gz
.
File metadata
- Download URL: async_gui-0.1.1.tar.gz
- Upload date:
- Size: 22.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1584c18f4363bb48a0d8ced1a83387e5b5e7a3779ead018258938560a9317af4 |
|
MD5 | ffcdbda070243f3bf16183d9a92a65e1 |
|
BLAKE2b-256 | 656a7ed68f2a3e49c6c616482a3f5024c1f8568000a19bc9c656b5a38747c2a6 |