Metadata-Version: 1.2
Name: nlzss
Version: 0.1.2
Summary: Nintendo LZSS compression algorithm
Home-page: https://github.com/DorkmasterFlek/python-nlzss
Author: Dorkmaster Flek
Author-email: dorkmasterflek@gmail.com
License: GNU GPL v3
Description: PyNLZSS
        =======
        
        Python bindings for the Nintendo GBA/DS LZSS compression algorithm.
        
        LZSS algorithm and C code from CUE's tools: http://www.romhacking.net/utilities/826/
        
        Installation
        ------------
        
        ::
        
            pip install nlzss
        
        Encode
        ------
        
        ::
        
            >> import nzlss
            >> nzlss.encode_file('in_file.txt', 'out_file.txt')
        
        Decode
        ------
        
        ::
        
            >> import nzlss
            >> nzlss.decode_file(in_path='in_file.txt', out_path='out_file.txt')
        
        That's it!
        
Platform: UNKNOWN
Requires-Python: >=2, >=3
