Guest User

Untitled

a guest
Sep 24th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.58 KB | None | 0 0
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3.  
  4. ###############################################################################
  5. # Project name: Social Zap                                                    #
  6. # Description: This is a simple social client, made in python and pyqt        #
  7. ###############################################################################
  8.  
  9. # Normal imports
  10.  
  11. import sys
  12. from PyQt4 import QtGui, uic
  13. def main():
  14.     app = QtGui.QApplication(sys.argv)
  15.     ui = uic.loadUi('ui_files/main.ui')
  16.     sys.exit(app.exec_())
  17.    
  18. if __name__ == '__main__':
  19.     main()
Add Comment
Please, Sign In to add comment