You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A parallel implementation of the bzip2 data compressor in python, this data compression pipeline is using algorithms like Burrows–Wheeler transform (BWT) and Move to front (MTF) to improve the Huffman compression. For now, this tool only will be focused on compressing .csv files, and other files on tabular format.
🖇 In computer science and information theory, a Huffman code is a particular type of optimal prefix code that is commonly used for lossless data compression.
The cefd (Compression Engine For Dummies) is a simple Compression app 💾 which encodes text. It's easy to understand & implement even for someone who is new to Compression.