lorencarvalho / zipfile38

A backport of the zipfile module from Python 3.8, which contains notable improvements such as the "strict_timestamps" keyword argument (which enables the creation of reproducible zip archives).

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pypi

A backport of the zipfile module from Python 3.8, which contains notable improvements such as the "strict_timestamps" keyword argument (which enables the creation of reproducible zip archives).

installation:

pip install zipfile38

usage:

if sys.version_info >= (3, 8):
    import zipfile
else:
    import zipfile38 as zipfile

---

shout out to Thomas Kluyver's backport for 3.6 and Markus Scheidgen's backport for 3.7.

About

A backport of the zipfile module from Python 3.8, which contains notable improvements such as the "strict_timestamps" keyword argument (which enables the creation of reproducible zip archives).

License:Other


Languages

Language:Python 100.0%