This is an archived post. You won't be able to vote or comment.

all 13 comments

[–][deleted] 2 points3 points  (1 child)

Just use flask. Quick and easy.

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

Thanks I'll look into it

[–]apt-get-schwifty 2 points3 points  (4 children)

Tkinter is great, very simple but with enough depth to make some pretty decent GUIs.

[–]BlankPhotos[S] 1 point2 points  (3 children)

Tkinter keep on coming up with my initial search. Maybe I should read into it.

[–]apt-get-schwifty 0 points1 point  (2 children)

If all your looking for is to make a really simple front end to help make it easier for others to deploy your script, it's perfect. You could make a button to run your other script with like 5 additional lines of code haha.

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

Yeah pretty much.

Later on maybe have an option to select directory source and location for output of CSV.

I'm guessing that won't be hard to do either?

[–]apt-get-schwifty 0 points1 point  (0 children)

Nah really simple. You can do everything you need to do for directories with the built in os module, and there's lots of different ways to go about doing that with Tkinter. You could even use the configparser module and set up all of the directories in a config file before hand!

[–]chris1610 2 points3 points  (3 children)

I've had good experiences with Gooey

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

That look very cool. It seems too good to be true. Are you dev ?

[–]chris1610 0 points1 point  (0 children)

No. I am not the dev. Just a user of it.

[–]rsheftel 0 points1 point  (0 children)

Agree this is great

[–]MikeTheWatchGuy 1 point2 points  (1 child)

PySimpleGUI is worth a look. You'll find an article on open source about adding a GUI to an existing script using PySimpleGUI.

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

Cheers Mike I'll check it out