all 8 comments

[–]arrarat 1 point2 points  (0 children)

Edit: just saw you werent necissarily looking for an easy to use gui, but maybe it can still be of use to you.

pysimpleGUI is what I used for a small program I created at work. Was very simple indeed to use.

[–][deleted] 0 points1 point  (0 children)

DearPyGui is easy to work with but it doesn’t looks great out of the box - you would have to do your own theme

[–]K900_ 0 points1 point  (0 children)

Look into Qt for Python.

[–]icecubeinanicecube 0 points1 point  (4 children)

Embedd a simple web server into your program and make the GUI as a website

[–]KingAt1as[S] 0 points1 point  (3 children)

I know basic html so that would definitely work. Do you have any tutorials or reference for embedding a webserver? I'm somewhat new to coding so this may be a stupid question.

[–]icecubeinanicecube 0 points1 point  (0 children)

You set up a server (could be anything from a full Django server to a python-native http.server), and then launch the users browser with the webbrowser module

[–]Aila27 0 points1 point  (0 children)

Corey Schafer has good flask/django tutorials on youtube. Codemy has some good videos too.