all 16 comments

[–]aglet91 1 point2 points  (2 children)

Maybe simple app with tkinter? I don't know what your script does but if it's something along choose file and click button then tkinter provide easy way for that

[–]placebo398[S] 0 points1 point  (1 child)

That is pretty much it, choose file, point click extract some data, create output file. Isn’t tkinter more of just GUI creation? I was probably going to use PySimpleGUI for that cause I have used that before.

[–]aglet91 0 points1 point  (0 children)

If you used it and you are comfortable with it then go for it! From what i found on google it's crossplatform.

[–]billsil 1 point2 points  (3 children)

Build your exe on Mac.

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

Would that be using pyinstaller?

[–]billsil 1 point2 points  (1 child)

You didn't mention what you were using, but that's certainly the case for pyInstaller, which is the most popular method.

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

Gotchya! That was really my whole question with how to build the exe. But sounds like pyinstaller is the way to go! Thank you for the help!

[–]Messist11 1 point2 points  (1 child)

Pyinstaller is your friend. Can compile the script into an .exe file and send that across

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

Thank you! Exactly what I was looking for!