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.
- Host: GitHub
- URL: https://github.com/oelin/rle
- Owner: oelin
- License: mit
- Created: 2023-01-24T18:51:56.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-24T18:59:04.000Z (almost 3 years ago)
- Last Synced: 2023-02-27T20:20:36.890Z (almost 3 years ago)
- Topics: data-compression, python, run-length-encoding
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RLE
A simple run-length encoding library for Python.
```py
>>> import rle
>>> rle.encode('hellloooo wooorllddd')
'hel3o4 wo3rld3'
```