Well, I have sort of found the answer, you need to call gtk.main() to
get the window to appear. So the minimal code is:-
#!/usr/bin/python
from sqlkit.widgets import SqlTable, SqlMask
from sqlkit import DbProxy
import gtk
db = DbProxy(engine='sqlite:////home/chris/.sqledit/money.db')
t = SqlMask('jessica', dbproxy=db)
gtk.main()
It's nothing like the display format I want but at least I can see
something now! :-)
--
Chris Green