Top "Gzip" questions

GZip/gzip is both the name for a compressed data format and any of several software applications implementing this format.

Compressing HTTP Post Data sent from browser

I want to send a compressed POST data with Javascript to a server I control. Is there any way to …

http gzip
Programmatically extract tar.gz in a single step (on Windows with 7-Zip)

Problem: I would like to be able to extract tar.gz files in a single step. This makes my question …

scripting gzip archive tar 7zip
Gzip with all cores

I have a set of servers filled each with a bunch of files that can be gzipped. The servers all …

linux bash gzip
Is there any way to get curl to decompress a response without sending the Accept headers in the request?

Is there any way to get curl to decompress a response without sending the Accept-encoding headers in the request? I'm …

curl gzip
GZip Compression On IIS 7.5 is not working

I am trying to support GZip compression for my static files under IIS (which should be enabled by default but …

.net asp.net iis gzip iis-7.5
How to check if InputStream is Gzipped?

Is there any way to check if InputStream has been gzipped? Here's the code: public static InputStream decompressStream(InputStream input) { …

java http gzip inputstream httpurlconnection
Is gzip format supported in Spark?

For a Big Data project, I'm planning to use spark, which has some nice features like in-memory-computations for repeated workloads. …

java scala mapreduce gzip apache-spark
Decompressing GZip Stream from HTTPClient Response

I am trying to connect to an api, that returns GZip encoded JSON, from a WCF service (WCF service to …

c# json wcf gzip
Decode gzipped web page retrieved via cURL in PHP

I'm retrieving a gzipped web page via curl, but when I output the retrieved content to the browser I just …

php encoding gzip decoding
Python 3, read/write compressed json objects from/to gzip file

For Python3, I followed @Martijn Pieters's code with this: import gzip import json # writing with gzip.GzipFile(jsonfilename, 'w') as …

json python-3.x gzip