Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Easiest way to develop simple GUI in Python [closed]

I'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
like image 857
csguy11 Avatar asked Nov 27 '10 20:11

csguy11


People also ask

What is the easiest GUI for Python?

Python Tkinter Tkinter is the standard built-in GUI library for Python, and, with over 41,000 stars on GitHub, it's the most popular Python GUI framework. It's a fast and easy-to-use Python GUI library, making it the go-to library for building a Python GUI application.

How do I make a simple GUI in Python?

Tkinter ProgrammingImport the Tkinter module. Create the GUI application main window. Add one or more of the above-mentioned widgets to the GUI application. Enter the main event loop to take action against each event triggered by the user.


2 Answers

Take your pick here.

Tkinter is in the Python stdlib.

like image 108
user225312 Avatar answered Sep 19 '22 14:09

user225312


Try with Kivy! kivy.org It's quite easy, multi platform and a really good documentation

like image 33
piertoni Avatar answered Sep 20 '22 14:09

piertoni