Metadata-Version: 2.1
Name: appendzip
Version: 0.0.4
Summary: Append a single file to zip, overwriting the existing file if necessary
Home-page: https://github.com/barakplasma/append-zip
Author: Michael Salaverry
Author-email: barakplasma@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/barakplasma/append-zip/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Provides-Extra: dev
Requires-Dist: check-manifest ; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage ; extra == 'test'

# append-zip

Appends a file to a zip file, overwriting the existing file there if necessary

## Performance
Not efficient; extracts all the files in the zip, copies over the new file, and compresses a brand new zip replacing the original one. You will need enough disk space to duplicate the zip file.

## Caveats
for some reason, windows has a different file length after unzipping (by 10-20 bytes). So beware how this works on windows

