import tempfile with tempfile.TemporaryFile() as tempf: tempf.write(b"Hello World!") # write to the tempf tempf.seek(0) # go to the first char of tempf print(tempf.read()) # prints b'Hello World!'