Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pyqt4 reference for python?

Most of the reference site i visited are for C/C++. Is there a reference site of pyqt4 for python? Like https://doc.qt.io/qt-4.8/classes.html.

like image 908
unice Avatar asked Dec 27 '22 17:12

unice


2 Answers

Absolutely! I use the classes page in their reference guide. Happy coding! :)

like image 199
John Doe Avatar answered Dec 31 '22 12:12

John Doe


I feel comfortable using the help() function through the Python interactive interpreter.

$python

from PyQt4 import QtGui

help(QtGui)

help(QtGui.QTextEdit)

like image 38
kroosec Avatar answered Dec 31 '22 14:12

kroosec