Sophie

Sophie

distrib > Fedora > 15 > i386 > by-pkgid > 918e1b4642b299f61b06eaa7c01112db > files > 44

PyQt-examples-3.18.1-9.fc15.i686.rpm

#!/usr/bin/env python

# Qt tutorial 1.

import sys
import qt


a = qt.QApplication(sys.argv)

hello = qt.QPushButton("Hello world!", None)
hello.resize(100, 30)

a.setMainWidget(hello)
hello.show()
sys.exit(a.exec_loop())