Top "Gzip" questions

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

How can I estimate the size of my gzipped script?

How can I estimate the size of my JavaScript file after it is gzipped? Are there online tools for this? …

javascript gzip minify
How to unzip .gz files in a new directory in hadoop?

I have a bunch of .gz files in a folder in hdfs. I want to unzip all of these .gz …

hadoop hdfs gzip
How can I read tar.gz file using pandas read_csv with gzip compression option?

I have a very simple csv, with the following data, compressed inside the tar.gz file. I need to read …

python csv pandas gzip tar
Read .tar.gz file in Python

I have a text file of 25GB. so i compressed it to tar.gz and it became 450 MB. now i …

python file tar gzip
How do I read / write gzipped files in C++?

How do I read / write gzipped files in C++? The iostream wrapper classes here look good, and here is a …

c++ gzip zlib gzipstream
Download and decompress gzipped file in memory?

I would like to download a file using urllib and decompress the file in memory before saving. This is what …

python file gzip urllib2 stringio
how to enable gzip compression in angular cli for production build

I would want to compress the bundle files that are created when building the angular project. I use ng build …

angular compression angular-cli gzip angular7
apache compression Deflate .js and .css files not compressed?

In Apache Im enabling output compression by adding the following to my .htaccess file: # compress text, html, javascript, css, xml: …

apache gzip yslow deflate
Apply GZIP compression to a CSV in Python Pandas

I am trying to write a dataframe to a gzipped csv in python pandas, using the following: import pandas as …

python csv pandas gzip export-to-csv
How to decompress Gzip string in ruby?

Zlib::GzipReader can take "an IO, or IO-like, object." as it's input, as stated in docs. Zlib::GzipReader.open('hoge.…

ruby gzip zlib