Questions tagged [pyqt]
PyQt is a set of Python bindings for Digia's Qt application framework and runs on all platforms supported by Qt including Windows, MacOS/X and Linux.
90 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
4
votes
1
answer
92
views
Tutorial mode using PySide6
As a part of bigger project, I want to add tutorial mode after first user login. That mode is simply a QFrame showing description of highlighted element in parent ...
1
vote
1
answer
73
views
Send a QNetworkRequest with a parameter
I want to send multiple QNetworkRequests in Python 3.12 that each downloads one image from a server, using a single callback function. To be able to distinguish ...
1
vote
1
answer
113
views
pyqt6 UI for displaying streaming data to two plots and an image display
So I have a large application that I've been writing. One part of that application is responsible for displaying images taken from a camera and plotting two graphs.
I've successfully stripped out the ...
4
votes
2
answers
954
views
Python network manager class using exec()
I wanted to make a small self-integrated API for my PyQt5 application.
This class is a tiny chunk of the whole project:
...
0
votes
1
answer
79
views
Python GUI Based IP location digger
Greetings.
I'm a newbie python developer who just started using PyQt5 as his major GUI development tool.
Because of this, I have started a side project known as NyvoAI, just for gaining more knowledge ...
2
votes
0
answers
156
views
GUI Tic-Tac-Toe game with AI, part 3: control and logic
This is the last part of the series of posts about my GUI Tic Tac Toe game, the previous two question are GUI Tic-Tac-Toe game with six AI players - part 1: the UI and GUI Tic-Tac-Toe game with six AI ...
6
votes
0
answers
290
views
GUI Tic-Tac-Toe game with six AI players - part 1: the UI
This is a huge project that I have worked on for the past few months, it contains 16 scripts, one of the scripts is used to analyze the other scripts. There are 111004 characters in all the script ...
2
votes
0
answers
79
views
Pane. A minimal site specific Browser
Here is the code. It takes an argument with the -l flag for a link otherwise it goes to a hard coded search engine (I have selected brave to be different).
I'm ...
2
votes
1
answer
78
views
Coordinate conversion program using pyqt
As an exercise in using PyQt, the Python switch statement and abstract classes, I made a little app to make conversions between geodetic (WGS84) and PSD93 (Oman) and UTM 40N projections (instead of ...
17
votes
4
answers
4k
views
Python program to scramble MP3 audio
I'm super new to coding. I had a random idea in the car to make this application in order dive head first into learning to code.
This is an app to take an MP3 file, "shred it" into pieces (...
1
vote
0
answers
172
views
Timer with input, sound and flashing ( Just timer :) )
I know that this program is not very outstanding, but I'm learning "Python" and decided to publish this code in order to get some advice and parting words and overall evaluation of the ...
1
vote
0
answers
251
views
PyQt6 Wordle game... with some filtering according to the current state
Refer to Wikipedia English for more context on Wordle.
This version behaves exactly like the standard Wordle game, except that it displays all possible choices in the current condition on the left ...
2
votes
1
answer
949
views
PyQt6 program that helps you categorizing items
Interface:
Console output:
...
1
vote
0
answers
487
views
PyQt6 program that lets you adjust the HSV values of an RGB color
I don't know how to actually describe what this script does concisely.
I am writing GUI programs using PyQt6, and I want the most beautiful palette for my programs, so I browsed Wikipedia for a bunch ...
4
votes
0
answers
534
views
PyQt: Open a file dialog from a separate thread
Based on a question I asked on SO, I have come up with the following solution. As I am very new to Python Qt, I would like a review rather than just add it as an answer in SO.
The code runs a script ...