Florian Breit
Florian Breit
I suspect your script might just finish and quit before you ever get around to connecting. Try something like this: ```python import eel import gevent eel.start('index.html',size=(500,500),block=False) gevent.get_hub().join() ``` If you...
@bernardolansing I think it might be useful if you could share a minimal working example (with html files etc, maybe in a separate repo?) - there could be many potential...
@rraammiinn can you please give a minimal working example of what you're trying to do and give a specific example of something that should work but doesn't?
If I understand correctly what you want to do (give the browser unfettered access to the root of your file system, or maybe the root of your python package) this...
@RARM the behaviour with the first call is probably because the gevent main loop needs to be initialised, otherwise the Python script will just finish executing and the process will...
What OS is this, and what file format are your icons in?
Chrome / Chromium on Linux does not support showing a web-app's favicon in the launcher as far as I know, so that's one limitation Eel can't do much about. You...
You can overwrite the "allowed extensions" for eel's start args to not include *.js, it should then skip them when trying to parse for eel-exposed functions. I'd agree though that...
Not sure with the routing issue, that would likely need a bit of more detailed troubleshooting while it's running (you can try and get the Bottle instance and inspect the...
Have you tried to increase the *shutdown_delay* (one of the arguments to `eel.start()`?