Backport of the Python 3.8 zipfile module for use with older Python versions. Provides the same API as the standard library zipfile, but with the improvements introduced in Python 3.8 (e.g., ZipFile.open() as a context manager, Path support). Currently version 0.0.3, no recent releases. Low maintenance.
pip install zipfile38No compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic usage: create and read zip files using ZipFile as a context manager.
Check sys.version_info before installing, or only install if Python < 3.8.
Use the standard library zipfile if Python >= 3.8.
Use 'from zipfile38 import ZipFile' explicitly rather than 'import zipfile38' to avoid confusion.
Use: from zipfile38 import ZipFile
Install with pip install zipfile38, and ensure you are using Python < 3.8.
No dependency data recorded yet.