Why do neither of these statements import QtCore, QtGui, QtNetwork or any of the others? I've searched so long and can't find anyone to answer such a simple question. Or at least that's what I think it is.
import PyQt4
from PyQt4 import *
Instead I have to do:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtNetwork import *
Plus a bunch more. Any shortcuts to grab them all?
Edit: My solutions was to go through the libraries that I was using (for Py2exe) and just copy their imports. That worked. Still, but not as tedious.