This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dhimmel
Recipients dhimmel
Date 2017-11-28.20:41:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1511901675.08.0.213398074469.issue32160@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation for the lzma module currently contains 6 examples (https://docs.python.org/3.6/library/lzma.html#examples). However, it does not include an example to XZ compress a file on disk. The functionality I'm envisioning would be similar to the command:

```sh
xz --compress --keep path
```

I believe this is possible in python with:

```python
with open(in_path) as in_file, lzma.open(out_path, 'w') as out_file:
    shutil.copyfileobj(in_path, out_file)
```

Note gzip has a similar example (https://docs.python.org/3.6/library/gzip.html#examples-of-usage).

Compressing an existing file on disk is a use case I commonly encounter. Python is ideal for the task because it provides a cross-platform solution that doesn't require installing additional command line utilities. Before finding shutil.copyfileobj, I assumed memory-efficient on-disk XZ compression was not possible in Python, due to its omission from the docs.

I'm happy to propose example code for the documentation.

Alternatively, if this feature is considered useful, we could consider an API addition to provide a one-line command for on-disk compressing/decompressing files. Since this would be a major addition that should be consistent across compression modules, perhaps we should just start with a lzma doc example?
History
Date User Action Args
2017-11-28 20:41:15dhimmelsetrecipients: + dhimmel
2017-11-28 20:41:15dhimmelsetmessageid: <1511901675.08.0.213398074469.issue32160@psf.upfronthosting.co.za>
2017-11-28 20:41:15dhimmellinkissue32160 messages
2017-11-28 20:41:14dhimmelcreate