Find / Generate documentation for Gtk, Gdk, GdkPixbuf, [closed]
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this questionWhere can I find proper documentation on the Python objects Gtk
, Gdk
,... from gi.repository
?
I'm stuck with using dir()
and it's of the utmost annoyance...
To sum it up: heelp!
(NOTE: the pygtk doc is too outdated, I'm using pygobject)
I haven't found online documentation but you can use the help command from python interactive prompt, like:
>>> import gi
>>> help(gi)
Help on package gi:
NAME
gi
FILE
/usr/lib/pymodules/python2.6/gtk-2.0/gi/__init__.py
DESCRIPTION
...
The GTK/GDK documentation can be found here: http://www.pygtk.org/docs/pygtk/
精彩评论