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/python3 | |
import io | |
import os | |
import lz4.block | |
from glob import glob | |
FILE_PATH = os.path.dirname(os.path.realpath(__file__)) | |
def uint32(data): | |
"""Convert 4 bytes to a little endian unsigned integer.""" |