An open API service indexing awesome lists of open source software.

https://github.com/oelin/rle

A simple run-length encoding library for Python.
https://github.com/oelin/rle

data-compression python run-length-encoding

Last synced: 10 months ago
JSON representation

A simple run-length encoding library for Python.

Awesome Lists containing this project

README

          

# RLE

A simple run-length encoding library for Python.

```py
>>> import rle

>>> rle.encode('hellloooo wooorllddd')

'hel3o4 wo3rld3'
```