Eel
Eel copied to clipboard
A little Python library for making simple Electron-like HTML/JS GUI apps
**Eel version** 0.15.0 python == 3.8.10 py2exe = 0.13.0.0 **Describe the bug** Eel packages giving issues while creating exe using py2exe. exe generated gives below error: **File "eel\__init__.pyc", line 21,...
**Describe the problem** I'd like to be able to communicate between Python and the Electron main process (in addition to between Python and the Electron renderer process). I've got it...
PyInstaller now has a custom hook for Eel (https://github.com/pyinstaller/pyinstaller-hooks-contrib/pull/6) that tells it how to collect eel.js and our hidden imports (bottle-websocket), so we don't need our own code to enable...
Currently only implemented for pyinstaller. This is update for cx-freeze.
In windows, Electron is not in PATH by default. So, which will not work and it makes an error
This PR includes 3 fixes. The first one is for #371 which I ended up forking/fixing, the other two were done in an attempt to get my app to run...
We can now include a context into the start page for jinja templates. This is useful for adding code generated data, custom functions, iterators into the markup. I make use...
Add support for reloading the Bottle server during development. Eel on the JS side will now try to automatically reconnect to the Python/Bottle server when the websocket dies. This allows...
Hi, I've added a couple of changes First I've added tracking of the browser process's launched this can be retrieved via **get_browser_process()** the idea is to use this to determine...