pyqtconsole is a lightweight python console for Qt applications. It's made to be easy to embed in other Qt applications and comes with some examples that show how this can be done. The interpreter can run in a separate thread, in the UI main thread or in a gevent task.
Table of Contents:
Also See:
Simply type:
pip install pyqtconsole
Or to install a development version from local checkout, type:
pip install -e .
The following snippet shows how to create a console that will execute user
input in a separate thread. Be aware that long running tasks will still block
the main thread due to the GIL. See the examples directory for more
examples.
import sys
from threading import Thread
from PyQt5.QtWidgets import QApplication
from pyqtconsole.console import PythonConsole
app = QApplication([])
console = PythonConsole()
console.show()
console.eval_in_thread()
sys.exit(app.exec_())- Separate thread - Runs the interpreter in a separate thread, see the example threaded.py. Running the interpreter in a separate thread obviously limits the interaction with the Qt application. The parts of Qt that needs to be called from the main thread will not work properly, but is excellent way for having a 'plain' python console in your Qt app.
- main thread - Runs the interpreter in the main thread, see the example inuithread.py. Makes full interaction with Qt possible, lenghty operations will of course freeze the UI (as any lenghty operation that is called from the main thread). This is a great alternative for people who does not want to use the gevent based approach but still wants full interactivity with Qt.
- gevent - Runs the interpreter in a gevent task, see the example _gevent.py. Allows for full interactivity with Qt without special consideration (at least to some extent) for longer running processes. The best method if you want to use pyQtgraph, Matplotlib, PyMca or similar.
The coloring of the syntax highlighting can be customized by passing a
formats dictionary to the PythonConsole constructer. This dictionary
must be shaped as follows:
import pyqtconsole.highlighter as hl
console = PythonConsole(formats={
'keyword': hl.format('blue', 'bold'),
'operator': hl.format('red'),
'brace': hl.format('darkGray'),
'defclass': hl.format('black', 'bold'),
'string': hl.format('magenta'),
'string2': hl.format('darkMagenta'),
'comment': hl.format('darkGreen', 'italic'),
'self': hl.format('black', 'italic'),
'numbers': hl.format('brown'),
'inprompt': hl.format('darkBlue', 'bold'),
'outprompt': hl.format('darkRed', 'bold'),
'fstring': hl.format('darkCyan', 'bold'),
'escape': hl.format('darkorange', 'bold'),
'shellcmd': hl.format(None, 'bold'),
})All keys are optional and default to the value shown above if left unspecified.
A local method, named clear(), is available to clear the input screen and reset the line numbering. Enable it by pushing the method into the available namespace in the console:
console.interpreter.locals["clear"] = console.clearOptionally, commands entered in the console that start with a special character (e.g. '!') will be executed as shell commands.
The output of the command will be printed in the console.
This feature is disabled by default, but can be enabled by setting the shell_cmd_prefix parameter when creating the console.
For example, on a Linux or macOS system, setting shell_cmd_prefix='!' and entering !ls -l will list the files in the current directory.
console = PythonConsole(shell_cmd_prefix=True)IN [0]: !ls -l
OUT[0]: total 16546
-rw-r--r-- 1 user user 18741 Fen 6 2026 file1.txt
-rw-r--r-- 1 user user 18741 Feb 6 2026 file2.txtBy default IN [n]: and OUT [n]: are displayed before each input and output line.
You can customize this through constructor arguments:
# Including the line numbers:
console = PythonConsole(inprompt="%d >", outprompt="%d <")
# Or just static:
console = PythonConsole(inprompt=">>>", outprompt="<<<")This module depends on QtPy which provides a compatibility layer for Qt4 and Qt5. The console is tested under both Qt4 and Qt5.