This is what works for me in python (tg-admin shell): from sqlobject.sqlbuilder import *
This does not work for me in python: from SQLBuilder import * the last is doc'd here: http://sqlobject.org/SQLBuilder.html So my question is boiling down to, what's the right way to import sqlbuilder and are the docs in error, or is it just me?

