pyqt4 reference for python?
Most of the reference site i visited are for C/C++. Is there a re开发者_如何转开发ference site of pyqt4 for python? Like https://doc.qt.io/qt-4.8/classes.html.
Absolutely! I use the classes page in their reference guide. Happy coding! :)
I feel comfortable using the help() function through the Python interactive interpreter.
$python
from PyQt4 import QtGui
help(QtGui)
help(QtGui.QTextEdit)
精彩评论