You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-utils-3-console-gui/client.py

18 lines
340 B

#!/usr/bin/python
#-*- coding: utf-8 -*-
import sys
from PySide import QtGui
from gui.Box import Example
from ClientClass import ApiClient
app = QtGui.QApplication(sys.argv)
ClientObj = ApiClient()
ex = Example(ClientObj)
#f = QtGui.QStyleFactory().create('Motif')
#ex.setStyle(f)
#ex.setStyle('Windows')
ex.show()
sys.exit(app.exec_())