3
bighead
3y

Why, how, why oh why is the PyQt documentation so awful how and why do i find stuff in some random blog that wasnt in there at all not even mentioned nothing :((((

Comments
  • 0
    The Qt experience is:

    -Trying to piece together docs, finding what imports you need, and figuring out what superclass your dumbass widget inherits so you can find out which methods it actually has
    -Translating from c++ on StackOverflow. Wondering once again what fucking imports you need for your code to work.
    -Finding out it doesn't work because that was Qt 4
    -Finding a solution that doesn't need Qt Creator
  • 1
    @AlgoRythm i got stuff working just taking guesses for example the pyqt5 docs dont mention anything at all about a setText() function for buttons i just tried because i thought it might work
  • 2
    @bighead honestly sometimes the quickest thing to do is open an interpreted session of python and call the help function on some classes. It shows you what you need to know.
Add Comment