pyqt

Python. Creating an app for mac os using pyinstaller

Hello everyone I ran into the following problem: A simple window application was written using the PySide2 library. Fro ... ced this problem, knows the solution? How to make an app on mac os from python code, which can be passed on to other people?

How does QScrollArea work?

Please explain how you can work with QScrollArea. In the designer, I did it, but it doesn't work. I didn't find any normal solutions on the Internet

Program for drawing graphs of functions entered by the user or specified as strings

Hello everyone. How to create a program that draws graphs of functions in MatplotLib. I've been sketching out something: # - ... because of this. Can you tell me how to make it so that I can endlessly build graphs of functions?:) Who has what options?

Open a new window when you click a button in PyQt5 (Qt Designer)

I use Qt Designer to create your own application. There is a main window MainWindow and the form Dialog, which I would like t ... GUI self.ui.pushButton.clicked.connect(self.openDialog) # Открыть новую форму def openDialog(self): pass

How to run 2 pyqt5 windows in a thread?

Need to run 2 windows in the stream. There is a PyQt window, and in it a button. When you click this button, another window o ... 2()).start() if __name__ == "__main__": app = QApplication(sys.argv) ex = Example() ex.show() sys.exit(app.exec_())

Error this application failed to start because no qt platform plugin could be initialized.Reinstalling the application may fix this problem

Help, an error occurs when running the design of the program from pycharm. this application failed to start because no qt pla ... et() w.resize(250, 150) w.move(300, 300) w.setWindowTitle('Simple') w.show() sys.exit(app.exec_())

PyQt5 beautiful text, slanted or bold

How to make in slanted text or bold in QMenuBar or QLabel?

Is it possible to make a "text to speech" with Pyqt?

I'm learning how to mess with Pyqt. I am setting up a simple application where there will be a voice notification when a new ... to do something like Pyqt. Is there any functionality in Pyqt or that can be used together with Pyqt to do Text to Speech ?

How to insert accented characters into text entries in PyQt5?

My text entries in PyQt5 (QLineEdit, QPlainTextEdit, Dialogs,...) do not accept accented characters typed on the keyboard. I ... blem is in PyQt, because when I test in Qt Designer, they work perfectly. I use Ubuntu Studio. Does anyone know how to solve?

Data entered in SQLite3 is not shown in PyQT4 application

I made a small desktop application PyQt4 where I insert data in db sqlite3, but when I query these data that were previously ... concursos[i+13])) i += 14 c += 1 insere_dados_q.conn.commit() insere_dados_q.cur.close() insere_dados_q.conn.close()

What secure practices can I adopt to store a password in desktop applications? [closed]

closed . This question needs to be more objective and is not currently accepting answers. ... like browsers can do with cookies? In the specific case of PyQt( or QT), is there any solution for this type of storage?