0001from sqlobject.dbconnection import registerConnection 0002 0003 0004def builder(): 0005 from . import pgconnection 0006 return pgconnection.PostgresConnection 0007 0008registerConnection(['postgres', 'postgresql', 'psycopg'], builder)