Eel icon indicating copy to clipboard operation
Eel copied to clipboard

A little Python library for making simple Electron-like HTML/JS GUI apps

Results 212 Eel issues
Sort by recently updated
recently updated
newest added

**Eel version** Please state the version of Eel you're using. 0.16.0 **Describe the bug** A clear and concise description of what the bug is. AttributeError: module 'eel' has no attribute...

bug

Maybe I'm stupid, but I don't understand how to call an async JS function from Python. For example: ```html eel.expose(test); async function test() { console.log("Hello world!"); } ``` This does...

help wanted

**Eel version** 0.16 and 0.17 both have the issue **Describe the bug** ![image](https://github.com/user-attachments/assets/3ec36ce8-4f89-48f0-9697-e7a9302723ad) Basically when I compile my project using auto-py-2-exe, it can works without issue, however if I compile...

bug

**Eel version** 0.16.0 (also present in 0.17.0 after testing) **Describe the bug** I added a python file named `main.py` to my electron project. here is the contents of it: ```py...

bug

Tests in windows are timing out. Unsure if this is just in GitHub or is the same on any 'normal' PC as well. Need to investigate.

bug

Hi Simon, Glad you are back! I'll remove Paling, and instruct people to start using EEL again, as soon as all changes have been merged. If you want to chat...

help wanted

**Eel version** 0.18.1 **Describe the bug** When calling Python function inside `script` tag I expect this function to print output to frontend but it prints to terminal only. **To Reproduce**...

bug

Basically that https://github.com/python-eel/Eel/issues/76 Isn't there a way allowing javascript to access local files like Electron offers? I'm trying to build app that can show user's local files

help wanted

The issue is that the instructions `eel._call_return_callbacks[call.call] =` store a reference to the callback, so once the callback is executed it needs to be deleted otherwise the memory allocated for...