Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JJJados/lzwfile
Python module for decompressing lzw files.
https://github.com/JJJados/lzwfile
Last synced: 30 days ago
JSON representation
Python module for decompressing lzw files.
- Host: GitHub
- URL: https://github.com/JJJados/lzwfile
- Owner: JJJados
- License: other
- Created: 2019-11-12T16:53:21.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-11T17:58:03.000Z (about 4 years ago)
- Last Synced: 2024-11-07T13:50:17.116Z (about 1 month ago)
- Language: Python
- Homepage:
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LZWFILE
Python module for decoding lzw files. This is based directly off Mark Adler's C library for decoding lzw files.
Some slight modifications were done for my own use case.## Getting Started
```Python
from lzwfile import decompress# File name can be used if located within same directory,
# if not please use the absolute path.file_name = 'compressed_file.Z'
decompressed_data = decompress(file_name)
```## Notes
I'm planning on adding encoding functionality to this package as well to further my understanding
of the lzw compression algorithm.