Just wondering... could you check that psycopg is working at all (without sqlalchemy)
try to test it with this code:
#!/usr/bin/python
from psycopg import connect
conn = connect("dbname=xxx user=yyy password=zzz")
curs = conn.cursor()
curs.execute("CREATE TABLE testtable(testcolumn char(8))")
curs.execute("INSERT INTO testtable VALUES ('a')")
--
-=[ Piotr Ozarowski ]=-
-=[ http://www.ozarowski.pl ]=-
pgp1xlZksUYMq.pgp
Description: PGP signature

