Bitbucket is a code hosting site with unlimited public and private repositories. We're also free for small teams!

Close

jobprogress -- Cross-toolkit UI progress tracking

When doing complex processing that has to report progress indication to the user, things can get complex quick. Often, we don't know beforehand how many work unit our processing will have, because knowing it depends on another work unit for which the progress should also be reported to the user. One example of such situation is processing files after having collected them. When we start the process, we don't know how many files we'll collect, so it's hard to set a maximum value on our progress bar. jobprogress handles that.

Also, most of the time, we want to run our task in a separate thread so the GUI stays smooth. jobprogress takes care of synchronizing the threaded task and the GUI.

For now, only PyQt is supported, but the toolkit specific layer is pretty thin, so it should be easy to add new toolkits.

The documentation has to be built with Sphinx. You can build the documentation with:

cd docs
make html

The documentation is also available online at http://www.hardcoded.net/docs/jobprogress

Recent activity RSS feed fo jobprogress

Virgil Dupras

Commits by Virgil Dupras were pushed to hsoft/jobprogress

39a9056 - Added tag 1.0.4 for changeset cd283e4e46c5
cd283e4 - v1.0.4
77a25cf - In qt.Progress, don't automatically reraise on error. It's the user that will do it manually from now on.
5704daf - Made _last_error and _reraise_if_error() in TheadPerformer public. Also, added a last_traceback attribute.
3391010 - Added tag 1.0.3 for changeset d829c67ff7bd
d829c67 - v1.0.3
9003427 - Fixed error re-raising meta-crash.
76e8f9d - Added tag 1.0.2 for changeset c0042bbc15fb
c0042bb - Added Job.check_if_cancelled().
baf6dbd - Added tag 1.0.1 for changeset 66056f6d1e00
Tip: Filter by directory path e.g. /media app.js to search for public/media/app.js.
Tip: Use camelCasing e.g. ProjME to search for ProjectModifiedEvent.java.
Tip: Filter by extension type e.g. /repo .js to search for all .js files in the /repo directory.
Tip: Separate your search with spaces e.g. /ssh pom.xml to search for src/ssh/pom.xml.
Tip: Use ↑ and ↓ arrow keys to navigate and return to view the file.
Tip: You can also navigate files with Ctrl+j (next) and Ctrl+k (previous) and view the file with Ctrl+o.
Tip: You can also navigate files with Alt+j (next) and Alt+k (previous) and view the file with Alt+o.