gpt4 book ai didi

Pandas to_sql 使索引唯一

转载 作者:行者123 更新时间:2023-12-04 11:27:38 26 4
gpt4 key购买 nike

我已经阅读了有关不向数据库添加重复记录的 Pandas to_sql 解决方案。我正在处理日志的 csv 文件,每次我上传一个新的日志文件时,我都会读取数据并使用 Pandas 创建一个新的数据框进行一些更改。
然后我执行 to_sql('Logs',con = db.engine, if_exists = 'append', index=True) .与 if_exists arg i 确保每次从新文件中新创建的数据框都附加到现有数据库中。问题是它不断添加重复的值。我想确保如果一个已经上传的文件被错误地再次上传,它不会被附加到数据库中。我想在创建数据库时直接尝试这样做,而没有找到解决方法,例如检查之前是否使用过文件名。
我正在使用flask-sqlalchemy。
谢谢你。

最佳答案

最好的办法是通过将索引设置为主键来捕获重复项,然后使用 try/except捕获唯一性违规。你提到了另一篇建议关注 IntegrityError 的帖子。异常(exception),我同意这是最好的方法。您可以将其与去重功能结合使用,以确保您的表更新顺利运行。

演示问题

这是一个玩具示例:

from sqlalchemy import *
import sqlite3

# make a database, 'test', and a table, 'foo'.
conn = sqlite3.connect("test.db")
c = conn.cursor()
# id is a primary key. this will be the index column imported from to_sql().
c.execute('CREATE TABLE foo (id integer PRIMARY KEY, foo integer NOT NULL);')
# use the sqlalchemy engine.
engine = create_engine('sqlite:///test.db')

pd.read_sql("pragma table_info(foo)", con=engine)

cid name type notnull dflt_value pk
0 0 id integer 0 None 1
1 1 foo integer 1 None 0

现在,两个示例数据框, dfdf2 :
data = {'foo':[1,2,3]}
df = pd.DataFrame(data)
df
foo
0 1
1 2
2 3

data2 = {'foo':[3,4,5]}
df2 = pd.DataFrame(data2, index=[2,3,4])
df2
foo
2 3 # this row is a duplicate of df.iloc[2,:]
3 4
4 5

搬家 df进表 foo :
df.to_sql('foo', con=engine, index=True, index_label='id', if_exists='append')

pd.read_sql('foo', con=engine)
id foo
0 0 1
1 1 2
2 2 3

现在,当我们尝试附加 df2 ,我们 catch 了 IntegrityError :
try:
df2.to_sql('foo', con=engine, index=True, index_label='id', if_exists='append')
# use the generic Exception, both IntegrityError and sqlite3.IntegrityError caused trouble.
except Exception as e:
print("FAILURE TO APPEND: {}".format(e))

输出:
FAILURE TO APPEND: (sqlite3.IntegrityError) UNIQUE constraint failed: foo.id [SQL: 'INSERT INTO foo (id, foo) VALUES (?, ?)'] [parameters: ((2, 3), (3, 4), (4, 5))]

建议的解决方案

IntegrityError ,您可以拉取现有表数据,删除新数据的重复条目,然后重试 append 语句。使用 apply()为了这:
def append_db(data):
try:
data.to_sql('foo', con=engine, index=True, index_label='id', if_exists='append')
return 'Success'
except Exception as e:
print("Initial failure to append: {}\n".format(e))
print("Attempting to rectify...")
existing = pd.read_sql('foo', con=engine)
to_insert = data.reset_index().rename(columns={'index':'id'})
mask = ~to_insert.id.isin(existing.id)
try:
to_insert.loc[mask].to_sql('foo', con=engine, index=False, if_exists='append')
print("Successful deduplication.")
except Exception as e2:
"Could not rectify duplicate entries. \n{}".format(e2)
return 'Success after dedupe'

df2.apply(append_db)

输出:
Initial failure to append: (sqlite3.IntegrityError) UNIQUE constraint failed: foo.id [SQL: 'INSERT INTO foo (id, foo) VALUES (?, ?)'] [parameters: ((2, 3), (3, 4), (4, 5))]

Attempting to rectify...
Successful deduplication.

foo Success after dedupe
dtype: object

关于Pandas to_sql 使索引唯一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46016799/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com