Python Forum
Reading from the written output - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Reading from the written output (/thread-26269.html)



Reading from the written output - buduboti - Apr-25-2020

Hey! I'd like to compress some data with LZ77 and that requires to process already processed data.
I know that I could use a buffer and print the results at the very end, but for optimization reasons I'd like to read from written data, if it's possible. Any idea how could I do that?