I'm building an app using Shiny for Python. I would like to run it as a desktop app using Eel https://github.com/python-eel/Eel. Shiny apps are run using the shiny run
command, and Eel apps are using python myapp.py
, and then inside myapp.py you have eel.init()
and eel.start()
. It seems that Shiny and Eel each have their own built-in web servers. So how can we bring these two together?