PyGTK
Lua error in Module:Infobox at line 199: malformed pattern (missing ']').
<templatestyles src="Module:Hatnote/styles.css"></templatestyles>
PyGTK is a set of Python wrappers for the GTK+ graphical user interface library. PyGTK is free software and licensed under the LGPL. It is analogous to PyQt/PySide and wxPython, the Python wrappers for Qt and wxWidgets, respectively. Its original author is the prominent GNOME developer James Henstridge. Today there are six people in the core development team, with various other people who have submitted patches and bug reports. PyGTK has been selected as the environment of choice for applications running on the One Laptop Per Child systems.
PyGTK will be phased out with the transition to GTK+ version 3 and be replaced with PyGObject,[4][5] which uses GObject Introspection to generate bindings for Python and other languages on the fly. This is expected to eliminate the delay between GTK updates and corresponding language binding updates, as well as reduce maintenance burden on the developers.[6]
Contents
Syntax
The python code below will produce a 200x200 pixel window with the words "Hello World" inside.
import gtk
def create_window():
window = gtk.Window()
window.set_default_size(200, 200)
window.connect('destroy', gtk.main_quit)
label = gtk.Label('Hello World')
window.add(label)
label.show()
window.show()
create_window()
gtk.main()
Notable applications that use PyGTK
PyGTK has been used in a number of notable applications, some examples:
<templatestyles src="Div col/styles.css"/>
- Anaconda installer
- BitTorrent
- Deluge
- Emesene
- Exaile
- Flumotion
- Gajim
- gDesklets
- Gedit (for optional Python subsystem and plugins)
- GIMP (for optional Python scripts)
- GNOME Sudoku
- GRAMPS
- Gwibber (microblogging client)
- Jokosher
- puddletag
- PyMusique
- Pybliographer
- Tryton
- ROX Desktop (includes ROX-Filer)
- Ubiquity (Ubuntu installer)
- Ubuntu Software Center
- Wing IDE
- Comix
- MComix
PyGObject
Lua error in Module:Infobox at line 199: malformed pattern (missing ']').
PyGObject provides a convenient wrapper for use in Python programs when accessing GObject libraries. GObject is an object system used by GTK+, GLib, GObject, GIO, GStreamer and other libraries.
Like the GObject library itself, PyGObject is licensed under the GNU LGPL, so it is suitable for use in both free software and proprietary applications. It is already in use in many applications ranging from small single-purpose scripts to large full-featured applications.
PyGObject can dynamically accesses any GObject libraries that use GObject Introspection. It replaces the need for separate modules such as PyGTK, GIO and python-gnome to build a full GNOME 3.0 application. Once new functionality is added to GObject library it is instantly available as a Python API without the need for intermediate Python glue.
A good introduction to PyGObject is not found in the GNOME wiki but here:
- PyGObject was introduced with GTK+ 2.8 9 January 2006, Python bindings for GLib/GObject/GIO/GTK+
- PyGObject tutorial
Notable applications that use PyGObject
PyGObject obsoleted and replaced PyGTK. Maybe also due to the lacking documentation, it took a considerable amount of time until programs were ported. Most of the software listed here, has some older version, which uses PyGTK.
<templatestyles src="Div col/styles.css"/>
See also
- PyQt (Python wrapper for the Qt toolkit)
- PySide (Alternative Python wrapper for the Qt toolkit)
- wxPython (Python wrapper for the wx widgets collection)
References
<templatestyles src="Reflist/styles.css" />
Cite error: Invalid <references>
tag; parameter "group" is allowed only.
<references />
, or <references group="..." />
External links
- PyGTK Homepage
- PyGTK FAQ
- PyGTK Tutorial
- PyGTK Notebook A Journey Through Python Gnome Technologies by Peter Gill
- PyGTK at Python wiki
- PyGObject Homepage
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.
- ↑ Lua error in package.lua at line 80: module 'strict' not found.