Eel
Eel copied to clipboard
A little Python library for making simple Electron-like HTML/JS GUI apps
**Eel version** 1.40 **Describe the bug** When a call is made from Python to JS, the return in the python side is a function that must be called to be...
The windows OS has been failing on tests for ages. The current error says that it cannot find the chrome binary. This GitHub action should provide it.
I would like to use eel even if chromium is installed via [Flatpak](https://flatpak.org/) and not via e.g. apt… . My current workaround is this bash script: ```bash #!/bin/bash if [...
What needs to be written in the base.html file or in the hello.html file in order to include the css file, since I don't get the body background-color? thanks for...
NEED HELP! I use eel in my project and I need to keep the window size fixed, with no option to maximize the window or rearrange. The program is using...
I like Eel,it help me out of annoying python gui work.Actually i'm using electron-vue as my GUI,that means i run a electron to interactive with user and run a python...
I built my eel application using cx_freeze instead of PyInstaller, then realized that PyInstaller-specific variables were hardcoded into __init__.py. In the function _get_real_path, sys.frozen is used by both cx_freeze and...
Hi, I would like to know if it was possible to run eel in a tkinter application to get a cleaner result. Thank you in advance for your response !
**problem** I have designed an app using eel. Main webpage has option for user to choose action needed. Once he clicks his option, it opens other webpage where he submits...
Hi there! I have a question about the code [here](https://github.com/ChrisKnott/Eel/blob/e2b6aea81f293599528b9692afd7709a5f5a3854/eel/__init__.py#L118). Why is it necessary to find all the exposed JS functions before running? The Python side could send a message...