What would be the optimal way to develop a basic graphical application for Windows based on a Python console script? It would be great if the solution could be distributed as a standalone directory, containing the .exe
file.
views:
203answers:
3
+3
A:
I would recommend that you use IronPython, which is Microsoft's implementation of Python for the .NET framework.
Antonio Cangiano
2009-08-09 12:15:28
+7
A:
As far as I understand your question, you want to write a graphical windows application in Python, to do this I suggest using wxPython and then py2exe to create a standalone exe that can run on any machine without requiring python to be installed
The following tutorial shows everything step by step: Quickly Creating Professional Looking Application Using wxPython, py2exe and InnoSetup
Diaa Sami
2009-08-09 12:31:52
@Diaa Thanks, looks like what I need, diving in.
Alex
2009-08-09 13:19:10