Metadata-Version: 2.1
Name: lzsslib
Version: 0.0.1.dev0
Summary: A library for inflating and deflating LZSS (Lempel, Ziv, Storer, Szymanski) buffers.
Author-email: Antonio Vázquez <antoniovazquezblanco@gmail.com>
Maintainer-email: Antonio Vázquez <antoniovazquezblanco@gmail.com>
License: GPL-3.0-or-later
Project-URL: Source Code, https://github.com/antoniovazquezblanco/lzsslib/
Project-URL: Issue Tracker, https://github.com/antoniovazquezblanco/lzsslib/issues
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# liblzss

Liblzss is an small library for inflating and deflating LZSS (Lempel, Ziv,
Storer, Szymanski) buffers.

The LZSS format is originally described in a paper titled ["Data Compression via
Textual Substitution" published in Journal of the ACM, 29(4):928-951, 1982 by
J.A. Storer and T.G. Szymanski.](https://doi.org/10.1145/322344.322346)


## Installing

Install and update using `pip`:

```bash
$ pip install -U lzsslib
```


## Links

-   PyPI Releases: https://pypi.org/project/lzsslib/
-   Source Code: https://github.com/antoniovazquezblanco/lzsslib
-   Issue Tracker: https://github.com/antoniovazquezblanco/lzsslib/issues
