The hotest way to deal with PyQt
Project description
The hotest way to deal with PyQt
Allows a unique way to deal with QtDesigner .ui files.
Example:
from PyQt4 import QtGui import pycante class MyWidget(pycante.E("/path/to/file.ui"), AnotherClass); pass class MyAnotherWidget(pycante.E(QtGui.QFrame), AnotherClass): pass w0 = MyWidget() w1 = MyAnotherWidget()