Last active
May 6, 2025 13:50
-
-
Save rpl/c21b881d0fc9ece430f94ef3c53dd72d to your computer and use it in GitHub Desktop.
mozlz4 python utils
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import io | |
import sys | |
import lz4.block | |
MAGIC = b'mozLz40\0' | |
for path in sys.argv[1:]: | |
dest_path = f'{path}.lz4' | |
print(f'Compressing {path} to {dest_path}') | |
with io.open(path,'rb') as fsrc: | |
data = fsrc.read() | |
with io.open(f'{path}.lz4', 'wb') as fdst: | |
fdst.write(MAGIC) | |
fdst.write(lz4.block.compress(data)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import io | |
import sys | |
import lz4.block | |
MAGIC = b'mozLz40\0' | |
for path in sys.argv[1:]: | |
with io.open(path, 'rb') as f: | |
magic = f.read(len(MAGIC)) | |
if magic != MAGIC: | |
raise Exception('Bad magic number') | |
print(lz4.block.decompress(f.read()).decode("utf-8")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment