Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 442 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 442 Bytes

PyQTerminal

A terminal emulator written in pyqt。

Requirement

  • paramiko -- SSH backend
  • pyte -- VT100 support

Usage

if __name__ == "__main__":
    try:
        app = QApplication(sys.argv)
        win = QTerminal(host='10.11.3.13', user='root', password='pslkien@3d')
        win.show()
        sys.exit(app.exec_())
    except:
        traceback.print_exc()

Screenshot

1