Metadata-Version: 2.4
Name: xicommon-zipfile-deflate64
Version: 0.3.0
Summary: Extract Deflate64 ZIP archives with Python's zipfile API.
Home-page: https://github.com/brianhelba/zipfile-deflate64
Author: Kitware, Inc.
Author-email: kitware@kitware.com
License: Apache 2.0
Project-URL: Bug Reports, https://github.com/brianhelba/zipfile-deflate64/issues
Project-URL: Source, https://github.com/brianhelba/zipfile-deflate64
Keywords: zip zipfile deflate deflate64
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python
Classifier: Topic :: System :: Archiving
Classifier: Topic :: System :: Archiving :: Compression
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# xicommon-zipfile-deflate64
[![PyPI](https://img.shields.io/pypi/v/xicommon-zipfile-deflate64)](https://pypi.org/project/xicommon-zipfile-deflate64/)

**WARNING:**
This package is a fork of zipfile-deflate64 and is only intended for usage in the [Rappsilber-Laboratory/xicommon](https://github.com/Rappsilber-Laboratory/xicommon) project. It will not be maintained for any other purposes.
The main objective of this fork is to support free threaded Python.

Extract Deflate64 ZIP archives with Python's `zipfile` API.

## Installation
```bash
pip install xicommon-zipfile-deflate64
```


## Usage
Anywhere in a Python codebase:
```python
import zipfile_deflate64  # This has the side effect of patching the zipfile module to support Deflate64
```

Alternatively, `zipfile_deflate64` re-exports the `zipfile` API, as a convenience:
```python
import zipfile_deflate64 as zipfile

zipfile.ZipFile(...)
...
```


