4

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.

2 Answers 2

6

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

Sign up to request clarification or add additional context in comments.

1 Comment

A similar documentation that looks nicer, has more information, and should be compatible, is available for PySide as well.
4

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

$python

from PyQt4 import QtGui

help(QtGui)

help(QtGui.QTextEdit)

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.