Skip to main content

remotezip

Build Status

This module provides a way to access single members of a zip file archive without downloading the full content from a remote web server. For this library to work, the web server hosting the archive needs to support the range header.

Installation

pip install remotezip

Usage

Initialization

RemoteZip(url, ...)

To download the content, this library rely on the requests module. The constructor interface matches the function requests.get module.

  • url: URL where the zip file is located (required).
  • auth: authentication credentials.
  • headers: headers to pass to the request.
  • timeout: timeout for the request.
  • verify: enable/disable certificate verification or set custom certificates location.
  • ... Please look at the requests documentation for further usage details.
  • initial_buffer_size: How much data (in bytes) to fetch during the first connection to download the zip file central directory. If your zip file contains a lot of files, would be a good idea to increase this parameter in order to avoid the need for further remote requests. Default: 64kb.
  • session: a custom session object to use for the request.
  • support_suffix_range: You can set this attribute to False if the remote server doesn't support suffix range (negative offset). Notice that this option will use one more HEAD request to fetch the content length.

Class Interface

RemoteZip is a subclass of the python standard library class zipfile.ZipFile, so it supports all its read methods:

  • RemoteZip.close()
  • RemoteZip.getinfo(name)
  • RemoteZip.extract(member[, path[, pwd]])
  • RemoteZip.extractall([path[, members[, pwd]]])
  • RemoteZip.infolist()
  • RemoteZip.namelist()
  • RemoteZip.open(name[, mode[, pwd]])
  • RemoteZip.printdir()
  • RemoteZip.read(name[, pwd])
  • RemoteZip.testzip()
  • RemoteZip.filename
  • RemoteZip.debug
  • RemoteZip.comment

Please look at the zipfile documentation for usage details.

NOTE:

  • extractall() and testzip() require to access the full content of the archive. If you need to use such methods, a full download of it would be probably more efficient.
  • RemoteZip.open() now supports seek operations when reading archive members. However as the content is streamed and DEFLATE format doesn't support seek natively, any negative seek operation will result in a new remote request from the beginning of the member content. This is very inefficient, the recommandation is to use RemoteZip.extract() and then open and operate on the extracted file.

Examples

List members in archive

Print all members part of the archive:

from remotezip import RemoteZip

with RemoteZip('http://.../myfile.zip') as zip:
    for zip_info in zip.infolist():
        print(zip_info.filename)

Download a member

The following example will extract the file somefile.txt from the archive stored at the URL http://.../myfile.zip.

from remotezip import RemoteZip

with RemoteZip('http://.../myfile.zip') as zip:
    zip.extract('somefile.txt')

S3 example

If you are trying to download a member from a zip archive hosted on S3 you can use the aws-requests-auth library for that as follow:

from aws_requests_auth.boto_utils import BotoAWSRequestsAuth
from hashlib import sha256

auth = BotoAWSRequestsAuth(
    aws_host='s3-eu-west-1.amazonaws.com',
    aws_region='eu-west-1',
    aws_service='s3'
)
headers = {'x-amz-content-sha256': sha256('').hexdigest()}
url = "https://s3-eu-west-1.amazonaws.com/.../file.zip"

with RemoteZip(url, auth=auth, headers=headers) as z: 
    zip.extract('somefile.txt')

Command line tool

A simple command line tool is included in this distribution.

usage: remotezip [-h] [-l] [-d DIR] url [filename [filename ...]]

Unzip remote files

positional arguments:
  url                URL of the zip archive
  filename           File to extract

optional arguments:
  -h, --help         show this help message and exit
  -l, --list         List files in the archive
  -d DIR, --dir DIR  Extract directory, default current directory

Example

$ remotezip -l "http://thematicmapping.org/downloads/TM_WORLD_BORDERS-0.3.zip"
  Length  DateTime             Name
--------  -------------------  ------------------------
    2962  2008-07-30 13:58:46  Readme.txt
   24740  2008-07-30 12:16:46  TM_WORLD_BORDERS-0.3.dbf
     145  2008-03-12 13:11:54  TM_WORLD_BORDERS-0.3.prj
 6478464  2008-07-30 12:16:46  TM_WORLD_BORDERS-0.3.shp
    2068  2008-07-30 12:16:46  TM_WORLD_BORDERS-0.3.shx
    
$ remotezip "http://thematicmapping.org/downloads/TM_WORLD_BORDERS-0.3.zip" Readme.txt
Extracting Readme.txt...

How it works

This module uses the zipfile.ZipFile class under the hood to decode the zip file format. The ZipFile class is initialized with a file like object that will perform transparently the remote queries.

The zip format is composed by the content of each compressed member followed by the central directory.

How many requests will this module perform to download a member?

  • If the full archive content is smaller than initial_buffer_size, only one request will be needed.
  • Normally two requests are needed, one to download the central directory and one to download the archive member.
  • If the central directory is bigger than initial_buffer_size, a third request will be required.
  • If negative seek operations are used in ZipExtFile, each of them will result in a new request.

Alternative module

There is a similar module available for python pyremotezip.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

remotezip-0.12.5-py3-none-any.whl (8.1 kB view details)

Uploaded Python 3

File details

Details for the file remotezip-0.12.5-py3-none-any.whl.

File metadata

  • Download URL: remotezip-0.12.5-py3-none-any.whl
  • Upload date:
  • Size: 8.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.6 {"installer":{"name":"uv","version":"0.10.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"macOS","version":null,"id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for remotezip-0.12.5-py3-none-any.whl
Algorithm Hash digest
SHA256 4b865aa4908274387f1ac5b41f633497400bfa18f0f044d37f8ef8dca9da9242
MD5 4aad95d6923c1242827aebc13f88c6cd
BLAKE2b-256 cd63351a2958fa2bb251448f17b150e68ba6d2f1182b6f59f0badec75af5d3a1

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.12.5 This release

1 file

0.12.3

2 files

0.12.2

2 files

0.12.1

1 file

0.12.0

1 file

0.11.1

1 file

0.10.0

1 file

0.9.4

1 file

0.9.3

3 files

0.9.2

2 files

0.9.1

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page