Articles

Web programming languages and standards.

Python: how to download and extract a ZIP file

Python offers many modules for working with files, including those compressed in ZIP format. In this article we will see how to download a file via HTTP and decompress it using Python's urllib and zipfile modules.

Node.js: how to download and extract a ZIP file

Downloading a file via HTTP and decompressing it is a common operation in Node.js programming. In this article, we'll walk you through the steps required to download a ZIP file via HTTP and decompress it using Node.js.<

Back to top