Tôi đã kết thúc bằng cách sử dụng lệnh copy_expert. Lưu ý rằng trên Windows, bạn phải thiết lập quyền của tệp. Bài đăng này rất hữu ích khi đặt quyền .
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()