Skończyło się na użyciu polecenia copy_expert. Zwróć uwagę, że w systemie Windows musisz ustawić uprawnienia do pliku. Ten post jest bardzo przydatny ustawianie uprawnień .
with open(the_file, 'r') as f:
sql_copy_statement = "copy {table} FROM '"'{from_file}'"' DELIMITER '"'{deli}'"' {file_type} HEADER;".format(table = the_table,
from_file = the_file,
deli = the_delimiter,
file_type = the_file_type
)
print sql_copy_statement
cur.copy_expert(sql_copy_statement, f)
conn.commit()