Find / Create Documentation for Gtk, Gdk, GdkPixbuf,

Where can I find the right documentation for Python objects Gtk, Gdk, ... from gi.repository? I am stuck in use dir()and it is extremely unpleasant ...

To summarize: heelp!

(NOTE: the pygtk document is too outdated, I am using pygobject)

+3
source share
2 answers

I did not find the online documentation, but you can use the help command from the python interactive prompt, for example:

>>> import gi
>>> help(gi)

Help on package gi:

NAME
    gi

FILE
    /usr/lib/pymodules/python2.6/gtk-2.0/gi/__init__.py

DESCRIPTION
...
+2
source

The GTK / GDK documentation can be found here: http://www.pygtk.org/docs/pygtk/

0
source

All Articles