gpt4 book ai didi

python非阻塞写入csv文件

转载 作者:太空狗 更新时间:2023-10-30 00:01:15 26 4
gpt4 key购买 nike

我正在编写一些 python 代码来进行一些计算并将结果写入文件。这是我当前的代码:

for name, group in data.groupby('Date'):
df = lot_of_numpy_calculations(group)

with open('result.csv', 'a') as f:
df.to_csv(f, header=False, index=False)

有时计算和写入都需要。我读了一些关于 python 中异步的文章,但我不知道如何实现它。有没有一种简单的方法可以优化这个循环,使其不等到写入完成才开始下一次迭代?

最佳答案

由于 numpy 和 pandas io 都不支持异步,因此与异步相比,这可能是线程更好的用例。 (此外,基于 asyncio 的解决方案无论如何都会在幕后使用线程。)

例如,此代码生成一个编写器线程,您可以使用队列向其提交工作:

import threading, queue

to_write = queue.Queue()

def writer():
# Call to_write.get() until it returns None
for df in iter(to_write.get, None):
with open('result.csv', 'a') as f:
df.to_csv(f, header=False, index=False)
threading.Thread(target=writer).start()

for name, group in data.groupby('Date'):
df = lot_of_numpy_calculations(group)
to_write.put(df)
# enqueue None to instruct the writer thread to exit
to_write.put(None)

请注意,如果写入始终比计算慢,队列将不断累积数据帧,最终可能会消耗大量内存。在这种情况下,请务必通过将 maxsize 参数传递给 constructor 来为队列提供最大大小。 .

此外,考虑到为每次写入重新打开文件会减慢写入速度。如果写入的数据量较小,也许您可​​以通过预先打开文件来获得更好的性能。

关于python非阻塞写入csv文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50066619/

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