PyQtTerminal
PyQtTerminal copied to clipboard
A simple to use terminal widget written in python
usage?
How is this supposed to be used? I tried adding the standard: ```python3 if __name__ == "__main__": import sys from PyQt5.QtWidgets import QApplication app = QApplication(sys.argv) main = Terminal(None) main.setGeometry(1,...
I am able to put the custom widget and it asks for input very nicely but I can't seem to connect the Terminal class to the PlainEditText class
The readme does not say much. Can you add a little more documentation? show a simple program using your code. Use a simple sub-process that prints something to stderr, something...