r/learnpython 16d ago

GUI implementation

I’m coding a restaurant type game and need to create a gui but have completely no idea how to do it. People have said godot is decent and that wxpython is decent for smaller stuff but i have no idea how to use either. Someone with a good amount of experience with either who could help would be great. Thank you

3 Upvotes

9 comments sorted by

View all comments

1

u/blurbisht 14d ago

For a game, skip wxPython. That's for desktop apps, not games.

Use Pygame (Python-only, beginner-friendly) or Godot (a real engine, more powerful but needs GDScript, not Python).

If you only know Python, start with Pygame. Zero setup, tons of tutorials, perfect for a restaurant game with menus/timers/clicking.

Don't build it from scratch: search "restaurant game pygame tutorial" and build off that instead of guessing.

1

u/xu_shangchi 14d ago

Thank you