I'm using the python gzip library to expand files, and a few of them are corrupted. The exact error is this:
Error -3 while decompressing: invalid block type
Is it possible to either read all the data before the broken point of the file, or to somehow skip over the broken point and read what's before and after? The compressed files are basically lines of text, and I would like to recover as much data as possible.
Thanks