Question

I am developing a python app, using python and sqlite and GUI to re-create a Access 2007 report generating app. Since the app is portable, I'm looking for GUI solution for python that user doesn't need to install addition things before using the app.

Is there any GUI solution suits my need? Thanks!

Was it helpful?

Solution

wxPython is very portable

OTHER TIPS

The only fully portable GUI for Python is the standard TkInter, if you don't want any additional install beside Python. The Themed Tk version is quite nice looking, compared to the older Tk version (the themed version is available through the ttk module).

A few weeks ago, I had to answer the same question as you. I came to the conclusion that PyQt is currently the best choice for a modern, powerful, well-maintained, and portable GUI, mainly because of some of the shortcomings of its main contender (wxPython, see below). (Tk, and Themed Tk would be good for simpler needs.)

Two words of warning against wxPython: it is not possible to install it via the popular Fink package manager on Mac OS X, currently, which makes it far less portable than PyQt and TkInter; it is also not yet Python 3-compatible, as far as I know.

PS (Dec. 2012): PySide is currently a strong alternative to PyQt. There are a few Stackoverflow questions about the respective merits of these two Python bindings.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top