Memory buffer in tk.Entry()

Hello, When I enter from clipboard > 20kb text file in tk.Entry() my program freezes. Also, it might be because of a different utf-?. Some of the files can be 50-100kb text buseness/world utf characters, so . . any suggestions 8?) __ ( I’m basically new at this )

That’s seems a lot for an Entry widget, which is intended for a single line.

A Text widget would be better.

I’ve just tried with >250kB of text in a Text widget and it worked fine.

It might have a problem if it’s one long line, though.

Oh my Gosh, my little module seems to work now. I didn’t know tk.Text() could be used but for output only. I am so grateful, thank you, thank you, thank you
8 ) __