PyQt

1 개요[ | ]

PyQt
파이큐트
  • 크로스플랫폼 GUI 툴킷 Qt의 파이썬 바인딩
  • 작성언어: C++, Python
  • 라이선스: GNU GPL, 커머셜

 

 

2 구성[ | ]

  • QtCore
  • QtGui
  • QtNetwork
  • QtOpenGL
  • QtSql
  • QtSvg
  • QtXml
  • QtMultimedia
  • QtDesigner

3 예제[ | ]

#! /usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from PyQt4.QtGui import *

a = QApplication(sys.argv)
w = QWidget()

w.resize(320, 240)
w.setWindowTitle("Hello, World!")
w.show()

sys.exit(a.exec_())  # Finally, we enter the mainloop of the application.

 

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}