Skip to content

Instantly share code, notes, and snippets.

@l337quez
Created July 21, 2019 03:21
Show Gist options
  • Save l337quez/664afe5926386304094126c2b5256e80 to your computer and use it in GitHub Desktop.
Save l337quez/664afe5926386304094126c2b5256e80 to your computer and use it in GitHub Desktop.
# #!/usr/bin/python
#Importamos las clases de PySide
import sys
from PySide import QtCore,QtGui
#Creamos una aplicacion Qt
app = QtGui.QApplication(sys.argv)
mainwindow= QtGui.QWidget()
mainwindow.resize(600,407)
mainwindow.setWindowTitle("GNU Pytronics")
mainwindow.setWindowIcon(QtGui.QIcon('pytronics.png'))
mainwindow.show()
sys.exit(app.exec_())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment