1
0
mirror of https://github.com/djohnlewis/stackdump synced 2025-01-22 22:51:36 +00:00
stackdump/python/packages/sqlobject/postgres/__init__.py

8 lines
205 B
Python
Raw Permalink Normal View History

from sqlobject.dbconnection import registerConnection
def builder():
import pgconnection
return pgconnection.PostgresConnection
registerConnection(['postgres', 'postgresql', 'psycopg'], builder)