1.. _other-gui-packages: 2 3Other Graphical User Interface Packages 4======================================= 5 6Major cross-platform (Windows, Mac OS X, Unix-like) GUI toolkits are 7available for Python: 8 9.. seealso:: 10 11 `PyGObject <https://wiki.gnome.org/Projects/PyGObject>`_ 12 PyGObject provides introspection bindings for C libraries using 13 `GObject <https://developer.gnome.org/gobject/stable/>`_. One of 14 these libraries is the `GTK+ 3 <https://www.gtk.org/>`_ widget set. 15 GTK+ comes with many more widgets than Tkinter provides. An online 16 `Python GTK+ 3 Tutorial <https://python-gtk-3-tutorial.readthedocs.io/>`_ 17 is available. 18 19 `PyGTK <http://www.pygtk.org/>`_ 20 PyGTK provides bindings for an older version 21 of the library, GTK+ 2. It provides an object oriented interface that 22 is slightly higher level than the C one. There are also bindings to 23 `GNOME <https://www.gnome.org/>`_. An online `tutorial 24 <http://www.pygtk.org/pygtk2tutorial/index.html>`_ is available. 25 26 `PyQt <https://riverbankcomputing.com/software/pyqt/intro>`_ 27 PyQt is a :program:`sip`\ -wrapped binding to the Qt toolkit. Qt is an 28 extensive C++ GUI application development framework that is 29 available for Unix, Windows and Mac OS X. :program:`sip` is a tool 30 for generating bindings for C++ libraries as Python classes, and 31 is specifically designed for Python. 32 33 `PySide2 <https://doc.qt.io/qtforpython/>`_ 34 Also known as the Qt for Python project, PySide2 is a newer binding to the 35 Qt toolkit. It is provided by The Qt Company and aims to provide a 36 complete port of PySide to Qt 5. Compared to PyQt, its licensing scheme is 37 friendlier to non-open source applications. 38 39 `wxPython <https://www.wxpython.org>`_ 40 wxPython is a cross-platform GUI toolkit for Python that is built around 41 the popular `wxWidgets <https://www.wxwidgets.org/>`_ (formerly wxWindows) 42 C++ toolkit. It provides a native look and feel for applications on 43 Windows, Mac OS X, and Unix systems by using each platform's native 44 widgets where ever possible, (GTK+ on Unix-like systems). In addition to 45 an extensive set of widgets, wxPython provides classes for online 46 documentation and context sensitive help, printing, HTML viewing, 47 low-level device context drawing, drag and drop, system clipboard access, 48 an XML-based resource format and more, including an ever growing library 49 of user-contributed modules. 50 51PyGTK, PyQt, PySide2, and wxPython, all have a modern look and feel and more 52widgets than Tkinter. In addition, there are many other GUI toolkits for 53Python, both cross-platform, and platform-specific. See the `GUI Programming 54<https://wiki.python.org/moin/GuiProgramming>`_ page in the Python Wiki for a 55much more complete list, and also for links to documents where the 56different GUI toolkits are compared. 57 58