Fivebit 0.2h

Fivebit is a Python 3 compression library for short text strings. It compresses short strings into five bit characters, which yields a 37.5% reduction for lowercase ASCII. Using the included dictionary will decrease size further. Custom dictionaries can be easily created for use with languages other than English Example usage: import fivebit a = fivebit.compress("Your string here") print(fivebit.decompress(a))