This commit is contained in:
spla 2022-01-16 17:09:38 +01:00
pare c5d11c3081
commit c614ff3eb1

Veure arxiu

@ -195,7 +195,7 @@ if __name__ == '__main__':
############################################################################### ###############################################################################
insert_sql = 'INSERT INTO spamcheck(created_at, id, email, ip, text: tor_exit_node) VALUES(%s,%s,%s,%s,%s,%s) ON CONFLICT DO NOTHING' insert_sql = 'INSERT INTO spamcheck(created_at, id, email, ip, text, tor_exit_node) VALUES(%s,%s,%s,%s,%s,%s) ON CONFLICT DO NOTHING'
i = 0 i = 0
@ -215,7 +215,7 @@ if __name__ == '__main__':
cur = conn.cursor() cur = conn.cursor()
cur.execute(insert_sql, (created_at_lst[i], id_lst[i], email_lst[i], ip_lst[i], text_lst[i]), tor_exit_node) cur.execute(insert_sql, (created_at_lst[i], id_lst[i], email_lst[i], ip_lst[i], text_lst[i], tor_exit_node))
conn.commit() conn.commit()
@ -231,7 +231,7 @@ if __name__ == '__main__':
conn.close() conn.close()
print(created_at_lst[i], id_lst[i], email_lst[i], ip_lst[i], text_lst[i]) print(created_at_lst[i], id_lst[i], email_lst[i], ip_lst[i], text_lst[i], tor_exit_node)
i = i + 1 i = i + 1