aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tutorial/t1.py
blob: 26b00c2b6a0785a69f4bde52f03fa3b1232e91ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python

# PyQt tutorial 1


import sys
from PySide2 import QtGui


app = QtGui.QApplication(sys.argv)

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

hello.show()

sys.exit(app.exec_())