pythonguis-examples
pythonguis-examples copied to clipboard
Demo desktop apps built with Python & Qt. With examples for PyQt6, PySide6, PyQt5 & PySide2
QLCDNumber overflows when input >= 2147483648. (For example: input 9999999999...9) https://github.com/mfitzp/15-minute-apps/blob/b99eb330310fe7302ead39473ef0d34cccb3d12d/calculator/calculator.py#L62-L67 Since integer has an limit of 0x7FFFFFFF(or 2147483647), casting it into float using `self.stack[-1] = float(v)` would be better....
Package googletrans is needed in translate app.
http://docs.python-guide.org/en/latest/writing/structure/#modules
playing with calculator I received ``` python calculator.py Traceback (most recent call last): File "calculator.py", line 1, in from PyQt5.QtGui import * ModuleNotFoundError: No module named 'sip' ``` in response...
原计算器不支持小数点计算 The original calculator does not support decimal point calculations
In wordprocessor, found bugs on setShortcut for copy, paste, select QAction.
@mfitzp I'm going to use this branch to upload the examples from the articles. I started with the articles under `tutorials/start` because these are probably the most basic articles, I...
This pull request adds a new PyQt6 application called Resource Monitor. It demonstrates real-time monitoring of system resources (CPU, memory, and network speed) using PyQt6, pyqtgraph, and QThread for background...
If you are laying out components in a grid like pattern, a toggle will not line up with the top of the bounding box. It so it will appear offset...