python gui?

In my day job I erite backend code. Not gui stuff. I’m building a large robot and will use a BBB and display for data display and more.

I would like to use python. What gui tools work with python on the BBB?

I could also do this with node.js o some other web server. But python might be fun.

PyQt

Could always use python as a web back end and render the gui in the browser. :wink:

I’m using a GUI app now running on the BBB which is a web server backend using Chromium in kiosk mode as the GUI. You can also use Python’s native Tkinter, but that looks kind of dated. PyQt and WxWidgets are available, but I’ve never done those personally.

I think I’m going with web. Thanks.