I'm loving the new pysimplegui tools, and have just started exploring the pysimpleguiweb port but have quickly hit a roadblock. To actually deploy an application built using the web version, it would be important to be able to control what port number the service was hosted on but it currently looks like it finds a random free port.
Looking through the source code on github I found where the remi server is started, it just specifies port=0.
remi.start(self.MyApp, title=self.Title ,debug=False, address='0.0.0.0', port=0, ...
I guess I can just hack together my own patched version that allows me to specify a port number but I was wondering if there was something obvious I was missing.