I have had help creating a piece of code that compresses a input from a user.The code then transfers this compressed version into a file. The code also sends the input into a file to see how much the file has been compressed.
import gzip, time
plaintext = input("Please enter the text you want to compress: ")
file_ = open('text.txt', 'w')
file_.write(str(plaintext))
file_.close()
with gzip.open('compressed_file.text' + ".gz", "wb") as outfile:
outfile.write(bytes(plaintext, 'UTF-8'))
with open("data.txt","wb") as fh:
with open('compressed_file.text.gz', 'rb') as fd:
fh.write(fd.read())
I want some help on how to decompress the file to make the original user input.
This is the answer as I found it on the answer to another question.
This compresses the input, stores it in the a file and also decompress the file to make the original input. This decompressed input is then printed to the shell.