https://github.com/tarek99samy/lzw-text-compression
A simple python implementation for the well-known compression algorithm LZW
https://github.com/tarek99samy/lzw-text-compression
compression compression-algorithm compression-implementations lzw lzw-algorithm lzw-compression text-compression text-compression-algorithm
Last synced: 2 months ago
JSON representation
A simple python implementation for the well-known compression algorithm LZW
- Host: GitHub
- URL: https://github.com/tarek99samy/lzw-text-compression
- Owner: tarek99samy
- License: mit
- Created: 2020-05-07T04:45:33.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-07T05:36:51.000Z (about 5 years ago)
- Last Synced: 2025-04-14T23:14:21.795Z (2 months ago)
- Topics: compression, compression-algorithm, compression-implementations, lzw, lzw-algorithm, lzw-compression, text-compression, text-compression-algorithm
- Language: Python
- Size: 8.79 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LZW-Text-Compression
- A simple python implementation for the well-known compression algorithm LZW
- If you don't know much about it, this article may help: https://www.geeksforgeeks.org/lzw-lempel-ziv-welch-compression-technique/
# How To Run Encoder
1. **Modify *Input.txt* and write there the text you want to compress**
2. **The input text may contain character from keyboard (even spaces and special characters)**# How To Run Decoder
1. **Make sure you have run the Encoder file with your text before trying to run decoder**
2. **_Output.txt_ file will be created for you which contain the original text**# Future Work
- **Develop the algorithm for Image-Compression**