--- id: remotezip version: "0.12.3" license: MIT license_treatment: permissive maintenance: dormant --- # remotezip — Access zip file content hosted remotely without downloading the full file. License: permissive · Maintenance: dormant · Downloads: 90.9K/mo ## What it is and what it does remotezip is a Python library that lets you read and extract individual files from zip archives hosted on remote web servers without downloading the entire archive. It wraps the standard library's zipfile.ZipFile class and uses HTTP Range requests to fetch only the parts of the archive you need—typically the central directory and the specific member you want to extract. The library requires the remote server to support Range headers and depends only on requests for HTTP communication. It exposes the full ZipFile API (namelist, extract, open, read, etc.), making it a drop-in replacement for local zip operations when bandwidth matters. A command-line tool is also included for quick listing and extraction from the shell. Use it for: - Extract a single file from a large remote zip without downloading gigabytes of data. - List archive contents and selectively download only needed members from S3 or other HTTP-hosted zips. - Integrate remote zip access into data pipelines where bandwidth or latency is a constraint. - Stream specific files from cloud-hosted archives using custom authentication (auth parameter). ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Download individual files from remote zip archives without fetching the entire file, using HTTP range requests to minimize bandwidth. Yes, if your use case involves selective extraction from remote zips and the server supports Range requests. The low install friction and permissive license make it a practical choice. Be aware that dormant maintenance (900 days since last release) means security or compatibility updates may lag; verify the package works with your Python version and target servers before relying on it in production. ## Install pip install remotezip uv add remotezip poetry add remotezip ## Installing remotezip Before you install: Low friction install with a single runtime dependency (requests). Dormant maintenance status—last release was 900 days ago, though the repository remains active with recent commits and no archived flag. License in practice: MIT license permits commercial and private use with minimal restrictions; attribution required. Quickstart: pip install remotezip from remotezip import RemoteZip with RemoteZip('http://example.com/archive.zip') as z: z.extract('file.txt') Remote server must support HTTP Range requests; some operations (extractall, testzip) require full archive download and may be inefficient. Verify before relying: - Whether dormant status (900 days since release) affects real-world reliability or if the package is stable-enough-to-ignore. - Performance characteristics when dealing with large central directories or archives with many files. ## Package facts - License: MIT (permissive) - Python support: unspecified - Install friction: low - Maintenance: dormant - Downloads: 90.9K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags remote zip file access, partial zip download, http range requests, stream zip members, lazy zip extraction, remote archive reader, bandwidth-efficient zip, remote-file-access, bandwidth-optimization [View on SkillFed](https://skillfed.io/packages/remotezip) · [View on PyPI](https://pypi.org/project/remotezip/)