wiithon.formats.lz77 module

class wiithon.formats.lz77.Lz77[source]

Bases: object

classmethod read(stream)[source]
Parameters:

stream (BinaryIO)

Return type:

Lz77

static uncompress(compressed_data, size)[source]
Parameters:
Return type:

bytes

write(stream)[source]
Parameters:

stream (BinaryIO)

Return type:

None

get_bytes()[source]
Return type:

bytes

static compress(uncompressed_data)[source]
Parameters:

uncompressed_data (bytes)

Return type:

bytes