How to read from QTextedit in python?
If all you need is the displayed text in your QTextEdit widget, you can access that by using the toPlainText() method on the widget you need the text from. Example: mytext = self.textEdit.toPlainText() At this point, you can do whatever you want with mytext. You can write it to a file, you can manipulated it, … Read more