I need a OSX and GNU/Linux compatible GUI toolkit which works with python3.
I tried GTK3 with GObject introspection, but it was hard to be deployed on OSX. Is there something like gtk builder compatible which will run on OSX ?
What my requirements are:
- XML based layout with an IDE builder
- Runs on OSX (and be compatible or works out of the box on GNU/Linux)
- Works on Python3
- Not ugly as TK :) (kidding)
You can use Qt in Python with PyQt. The advantage over Gtk is that it looks native on OS X (Qt uses Cocoa for rendering.)
More info: http://www.riverbankcomputing.co.uk/software/pyqt/intro/
If you're using Homebrew, you can install it quite easily:
Or you might find binaries on the PyQtX project page.