I am using the HTTP module to get a file from a remote server. The file has the extension .gz, meaning it’s a compressed file using GZIP. I can download this file on my PC and extract it using 7zip without any issues.
I need to extract the files inside the .gz file to use it in a downstream module (there is a CSV file inside the .gz archive). I tried using the ‘Archive’ module, but it fails with an error that it only supports .zip files.
Anyone know an easy way of extracting the .gz file? I would prefer not to have to send it to a conversion service, as the .csv file contains a lot of personal information.
Please find in attachement the blueprint of a scenario that download a gzip file from my Google drive and decompressed it using gunzip. gzip.json (14.6 KB)
For testing, I compressed a file using gzip on my computer, then I uploaded it on my drive, and the Make scenario:
Thanks @Philippe_Billet and @samliew - I was indeed not seeing the GZIP option inside the Archive module, as I had picked ZIP originally. Got it working now!