Giả sử rằng bạn đã kết nối với PostgreSQL và đã có bảng trong PostgreSQL. Hoặc truy cập liên kết này https://wiki.postgresql.org/wiki/Psycopg2_Tutorial
import psycopg2
try:
conn = psycopg2.connect("host='localhost' dbname='template1' user='dbuser' password='dbpass'")
except:
print "I am unable to connect to the database"
Đầu tiên, hãy mở tệp .csv.
>>> import csv
>>> with open('names.csv') as csvfile:
... reader = csv.DictReader(csvfile)
... for row in reader:
... print(row['first_name'], row['last_name'])
...
Đó là ví dụ từ https://docs.python.org/2/library/csv. html Thay đổi dòng in bằng chèn vào PostgreSQL.
>>> import psycopg2
>>> cur.execute("INSERT INTO test (num, data) VALUES (%s, %s)",
... (100, "abc'def"))
Bạn có thể thay đổi (100, "abc'def") bằng (biến1, biến2) Xem liên kết này http://initd.org/psycopg/docs/usage.html Hoặc trong mã mẫu đầy đủ:
>>> import csv
>>> import psycopg2
>>> with open('names.csv') as csvfile:
... reader = csv.DictReader(csvfile)
... for row in reader:
... cur.execute("INSERT INTO test (num, data) VALUES (%s, %s)", (variable1, variable2))
...
Hy vọng điều này sẽ giúp ...