Kalanyr: How many people are still using Python 2 and wouldn't be able to change to Python 3 for some reason ?
teceem: I'd like a Windows GUI and not have to use any form of command line interface at all. But that's just me.
I just did some quick tinkering and if you're somewhat comfortable with using Pip and making sure the extra stuff is installed Gooey appears to work.
Use pip to install gooey
(from a command line / powershell)
pip -install gooey
add then open gogrepoc.py in your editor/ IDE of choice find
import locale
and on a new line directly after it add:
from gooey import Gooey
and place the @Gooey decorator just before the process_argv definition
so it looks like this
@Gooey
def process_argv(argv):
and it should create a functional GUI for you, when you run it. It's not super pretty though.
Let me know if it works for you, and if it does I'll probably add it in , since it's pretty simple. And I'll see about cleaning up the help text to look a bit neater in the GUI.
(If you could still answer the question though, that'd be nice , since Python GUI programs still use Python 2 or Python 3 under the hood)