You will need some GUI library with Python bindings. **Cross-platform (Windows, Linux, Mac)** Of course, there are many, but the most popular that I've seen in wild are: - [WxPython][1] - based on [WxWidgets][2] (very popular, free to also for commercial projects) - [PyQt][3] - based on [Qt][4] (also very popular and more stable than WxWidgets but costly license for commercial projects) Also you can find complete list on [http://wiki.python.org/moin/GuiProgramming][5] Follow tutorials for each one. [1]: http://www.wxpython.org/ [2]: http://www.wxwidgets.org/ [3]: http://www.riverbankcomputing.co.uk/news [4]: http://trolltech.com/products/qt/ [5]: http://wiki.python.org/moin/GuiProgramming