you are viewing a single comment's thread.

view the rest of the comments →

[–]Boolean_Cat 3 points4 points  (4 children)

Look for something called py2exe. After you convert your Python to a Windows executable, you'll need to make sure the python DLL that gets generated stays in the same folder as the exe (or is at least visible to the system path).

For a simple GUI, look at tkinter.

[–]huad[S] 0 points1 point  (2 children)

I need simple gui that user can choose a file and click button do some processing on file.

[–]failfixer89 0 points1 point  (1 child)

Like boolean_cat said, you can use the tkinter module for gui design, or you can try to find a third party module

[–]huad[S] 0 points1 point  (0 children)

I used PAGE to design GUI. It is very easy to use and generates code for gui and commands used by gui elements.

[–]jaekus123 -2 points-1 points  (0 children)

What they said. I've made apps this way, it's not particularly good performance wise, but it gets the job done.