The difference between qt and PyQt4

Well, I'm new to Qt and found that it works with python, I don't know how true this is. but some code snippets have

 import qt 

and some have

 import PyQt4 

I don’t know what the difference is, when I tried to exchange them, I got some errors, because some functions were not recognized, and so on, also I am trying to create a GUI interface for my application, in which a GUI framework would be offered? Is there anything close to a VB environment?

+5
source share
1 answer

Old PyQt3 uses qt

import qt

Current PyQt4 uses PyQt4

import PyQt4

If you are using PySide, use PySide.

import PySide
+5
source

All Articles