Metadata-Version: 2.1
Name: lzwfile
Version: 0.1.3
Summary: Python module for decoding compressed lzw files
Home-page: https://github.com/JJJados/lzwfile
Author: Jayden Laturnus
Author-email: jaydenlaturnus@gmail.com
License: MIT
Description: # 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.
Keywords: lzw
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7.4
Description-Content-Type: text/markdown
