Easiest way to develop simple GUI in Python [closed]
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, descr开发者_Go百科ibe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this questionI'm done with my class project which I coded using Python. I'm working on the extra credit part i.e. GUI development - Windows platform.
I need something simple, easy to use, possibly drag-and-drop GUI development tool for Python. GUI needs to look somewhat like google, since all my project does is:
input: Company name
output: Ethical or Unethical
So, all I need is:
- An attractive image
- Input textbox
- Search button
- Output box
Take your pick here.
Tkinter is in the Python stdlib.
Try with Kivy! kivy.org It's quite easy, multi platform and a really good documentation
Tkinter is simple but is too ugly. PyQT can do everything you want but is too big. Perhaps IronPython will be good for you. Take a look at this: Python guis
Glade or wxGlade.
EasyGUI for very easy GUI Development
I prefer PyQT although it is pretty big. It has all the features that normal QT has, and that's why it's very usable. I think you can use QML with it too.
I would recommend wxpython. It's very easy to use and the documentation is pretty good.
精彩评论