{"library":"pyliblzfse","title":"pyliblzfse","description":"pyliblzfse provides Python bindings for the LZFSE reference implementation, offering compression and decompression using Apple's LZFSE algorithm. Version 0.4.1 is the latest release. The library is in maintenance mode with sparse updates.","language":"python","status":"maintenance","last_verified":"Fri May 01","install":{"commands":["pip install pyliblzfse"],"cli":null},"imports":["from pyliblzfse import compress","from pyliblzfse import decompress"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from pyliblzfse import compress, decompress\n\noriginal = b\"Hello, world!\" * 1000\ncompressed = compress(original)\ndecompressed = decompress(compressed)\nassert original == decompressed\nprint(\"LZFSE compression works!\")","lang":"python","description":"Compress and decompress bytes using LZFSE. Both compress and decompress expect bytes input and return bytes.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}