To inspect PyQt/PySide program elements like Chrome's element inspector
Project description
PyQtInspect
To inspect PyQt/PySide program elements like Chrome's element inspector.
For Python GUI programs developed with PyQt/PySide using Qt Widgets, it is difficult to view control information, locate the codes where they are defined, and perform other operations at runtime. It's not as easy as inspecting HTML elements in Chrome/Firefox browsers. This project aims to solve this problem by providing an element inspector tool for PyQt/PySide programs, similar to Chrome's element inspector.
Requirements
-
Python 3.7+
-
One of the following Qt for Python frameworks: PyQt5/PySide2/PyQt6/Pyside6
Installation
Simply install using pip install PyQtInspect
.
How to Start
The PyQtInspect architecture is divided into two parts:
-
Debugging side (Server): A GUI program for viewing element information, locating code, etc.
-
Debugged side (Client): Runs within the Python program to be debugged, patches the host program's Qt framework, and transmits information to the server.
When debugging, please start the GUI server first, then launch the Python program to be debugged.
Start the Debugging Side
Enter pqi-server
in the terminal to start the server-side GUI program.
After launching, specify the listening port (default is 19394
)
and click the Serve
button to start listening.
Start the Debugged Side
1. Running Program Source Code with PyQtInspect
Attached (Recommended)
It's the recommended startup method which requires full access to the Python source code of the program to be debugged.
If you run this program to be debugged with python xxx.py param1 param2
,
simply insert -m PyQtInspect --file
between python
and xxx.py
, i.e.,
use python -m PyQtInspect --file xxx.py param1 param2
to attach the PyQtInspect client
to the xxx.py
program with parameters param1
and param2
.
The complete startup command is:
python -m PyQtInspect [--port N] [--client hostname] [--multiprocess] [--show-pqi-stack] [--qt-support=[pyqt5|pyside2|pyqt6|pyside6]] --file executable_file [file_args]
Each parameter is explained as follows:
--port
: Specify the server's listening port, default is19394
--client
: Specify the server's listening address, default is127.0.0.1
--multiprocess
: Specify whether to support multiprocess inspecting, disabled by default--show-pqi-stack
: Specify whether to display the call stack related toPyQtInspect
, disabled by default--qt-support
: Specify the Qt framework used by the program being debugged, default ispyqt5
; optional values arepyqt5
,pyside2
,pyqt6
,pyside6
--file
: Specify the path to the Python source code file of the program to be debuggedfile_args
: Command-line arguments for starting the program to be debugged
For example, to debug PyQt-Fluent-Widgets
,
the demo gallery program is run with python examples/gallery/demo.py
.
Now you can start the PyQtInspect
client with
python -m PyQtInspect --file examples/gallery/demo.py
.
Note: Only PyQt5 programs do not need the --qt-support
parameter;
other frameworks need to specify this parameter explicitly!
2. Using PyCharm (Recommended)
Directly debug the PyQtInspect
module in PyCharm without affecting program debugging.
Also taking PyQt-Fluent-Widgets
as an example,
you can create a new Debug configuration with the following parameters:
Then just Run/Debug as usual.
3. Attach to Process (Currently Unstable)
If the source code of the program to be debugged is not available,
you can attempt to start the PyQtInspect
client by attaching to the process.
Click More->Attach
To Process, select the process window of the program to be debugged,
and click the Attach
button.
Note: Most controls will not have their creation call stack information unless they are created after attaching.
Usage
Inspecting Element Information
Click the Inspect
button, hover the mouse over the control you want to inspect,
and preview the control information.
Click the left mouse button to select the control. You can then locate the creation call stack, execute code, view hierarchy information, etc.
Call Stack Location
The area below the control information section shows the call stack at the time the control was created.
Clicking on it will open PyCharm
, locating the corresponding file and line.
If PyCharm fails to open, you can set the PyCharm path in More->Settings
manually.
p.s. For the PyQtInspect client started via Attach to Process, if the control was already created during the attach process, the call stack information will not be available, and this area will be empty.
Executing Code
After selecting a control,
click the Run Code
button to execute code within the scope of the selected control
(where the selected control instance is self
,
essentially executing code within one of the control's methods).
Viewing Hierarchy Information
A hierarchy navigation bar is at the bottom of the tool, allowing you to directly view, highlight, and locate ancestor and child controls of the selected control. It also makes it easier to switch between controls within the hierarchy.
Combined with mouse selection, users can make more precise selections.
Simulate Left Click with Right Click During Inspection
(Enabled by Default, Disable in More->Mock Right Button Down as Left
)
Since some controls only appear after a left click, right-clicking can simulate a left click to facilitate inspection.
Force Selection with F8
(Enabled by Default, Disable in More->Press F8 to Finish Inspect
)
For controls that are difficult to select with a mouse click, you can complete the selection with F8. Note that F8 is only used to finish selection during the inspection process; pressing F8 WILL NOT start selection if inspection is not active.
Source Code
Currently, the source code distribution package can be downloaded from PyPi, and the GitHub repository will be opened soon.
Known Issues
-
Patching fails with multiple inheritance involving more than two PyQt classes, such as class
A(B, C)
, whereB
andC
inherit from QObject. This might cause the__init__
method ofC
to not execute, leading to exceptions.The author of PyQt has warned against multiple inheritance with more than two PyQt classes, as it can also cause abnormal behavior in PyQt itself.
-
Cannot select some controls for PyQt6.
-
For some computers, sometimes the
QEnterEvent
will have the type170
(which isQEvent.DynamicPropertyChange
), which may cause crash when accessing thepropertyName
method.
If you encounter any problems before the GitHub repository is opened,
please email me at jezachen@163.com
.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file pyqtinspect-0.3.4.tar.gz
.
File metadata
- Download URL: pyqtinspect-0.3.4.tar.gz
- Upload date:
- Size: 4.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 389be8bc048fcd1b86d1c5f82e8d9af6987fa6399bccaeea62067bd8b24ceb3e |
|
MD5 | 6454a6498fe0967d52e9419ec7dd5233 |
|
BLAKE2b-256 | 4210ccde76c66e50da121ca40d0da7333d1be8e0240d6c82722577822354eb77 |
File details
Details for the file PyQtInspect-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: PyQtInspect-0.3.4-py3-none-any.whl
- Upload date:
- Size: 4.1 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b89a8c1e7bad318a81ba4cdb9ad6449ac29b1c876aea253f43714d657c902396 |
|
MD5 | 50a143bd59b2d27198bea6f06bf8a64c |
|
BLAKE2b-256 | 2202699d47b2abb07628490de6a9464b069c0d70d2c7ddf6eefee44f3e163add |