Most of the link sites I visited are for C / C ++. Is there a link to pyqt4 for python? Like https://doc.qt.io/qt-4.8/classes.html .
Absolutely! I am using the classes page in the reference guide . Happy coding! :)
Itβs convenient for me to use the help () function through the interactive Python interpreter.
$ python
from PyQt4 import QtGuihelp (QtGui)help (QtGui.QTextEdit)
from PyQt4 import QtGui
help (QtGui)
help (QtGui.QTextEdit)