I am scraping a website with a while True loop, and then saving all of the data to a file with np.savez. I want to process the npz file, but the file updates faster than I can copy it. Here's my code:
while True:
time.sleep(1.5)
for post in new:
all_posts.append(post)
np.savez('records.npz', posts)
new = other_site.get_next()
Initially to process the data I was scraping I just would copy the file, but now the file is too big and it gets corrupted every time. I could restart this process from the beginning and save less often so I would have more time to copy, but I'd like to know if there's a way I can recover the data I've written. Another idea I had was to truncate the end of the file such that it still looks like an npz file and python can read it, but I don't know if that's possible.
.npzfile is just a zipped file of.npyfiles, so you can process the files with any zip utility. Are you asking if there is a way to rescue the data you've created? I'm not quite clear where exactly your problem is. – Henry Gomersall Nov 22 '12 at 14:12zip -FF --out repaired_file.npz. You may have lost some data, but might be able to recover most of it. – Henry Gomersall Nov 22 '12 at 14:22