Zlib Decompress Python

import zlib

with open("example", "rb") as file:
	decompressedData = zlib.decompress(file.read())
RyanGar46