python-eel / Eel

A little Python library for making simple Electron-like HTML/JS GUI apps
MIT License
6.41k stars 586 forks source link

Can't deploy EEL on web server (hosting) with Cpanel #653

Open MathieuChartier86 opened 1 year ago

MathieuChartier86 commented 1 year ago

I created a very small web application with EEL but I absolutely don't understand how to launch eel.start(...) with my web host (which works with Cpanel). Cpanel requests a wsgi callable object. I looked on the web but apart from a successful "Hello world", nothing worked. I can't launch the app, even looking at the side of Bottle.

If anyone has a solution to create a valid wsgi that allows running EEL, I'm very interested. Thanks a lot.

gryckelynck commented 1 year ago

I seem to have the same problem. wsgi works with a bottle app calling application = bottle.default_app(), but it doesn't work with eel.start() because I guess it calls bottle.run(...). If anyone have solution I'm also very interrested. Thank you.