A little Python library for making simple Electron-like HTML/JS GUI apps.
Questions tagged [eel]
152 questions
1
vote
2 answers
cant convert .py to .exe using pyinstaller
Actually im working on a face recognition system which contains few sound files few folders and a hand full of python files. Im using EEL to include html and CSS to the front end. Now i want to know how to include the folders into the exe .Then…

sharan deepak
- 21
- 2
1
vote
0 answers
Uncaught ReferenceError: require is not defined with EEL
I am Trying to run html page with electron + eel.
I have successfully loaded the webpage + eel.js.
My Problem is whenever I try to use require module in the javascript of the HTML page. it gives me the below:
Uncaught ReferenceError: require is not…

Alexander
- 99
- 7
1
vote
1 answer
How to load Electron + EEL in python
I am Trying to use Electron browser using EEL. my problem is electron can not load the index.html page.
Python file :
import eel
import eel.browsers
eel.init('templates')
eel.browsers.set_path('electron',…

Alexander
- 99
- 7
1
vote
0 answers
How to pass variable to html using jinja2 in EEL
For those who don't know EEL is python library that allows you to build desktop apps using web technologies. It's similar to Electron JS.
Is it possible to pass variable to jinja2 in html file from python? Or how can I achieve that?

themm1
- 137
- 2
- 10
1
vote
1 answer
not allowed to load local resource - Eel Python
When passing across a file location from eel to JavaScript, the image fails to load due to this error:
index.html:1 Not allowed to load local resource: file:///C:/Users/dave/Desktop/tools-and-utensils.png
Does the Eel python library allow the use…

BigBlueMonster
- 65
- 4
1
vote
0 answers
Python Eel. Python function does not start using from javascript
Sorry for my English.
I am want to study python library (eel). I am wrote the following code as in the example from the documentation:
The "index.html" file is located in the "Web" folder:

Aevgenyev
- 11
- 1
1
vote
1 answer
WebSocket DISCONNECT after handshake with Django-EEL
I am trying to use EEL + Django. i found this solution in this GitHub link.
I managed to make Django find the eel.js. but the issue it disconnect just after making WebSocket handshaking.
as below:-
You have 18 unapplied migration(s). Your…

CoderButBeginner
- 95
- 7
1
vote
0 answers
Is it possible to use the native desktop application made in python in android?
Is it possible to create the Android application using the eel framework Because i have create the desktop application using eel and now need to make the android application can i make it.

sanjay prajapati
- 92
- 13
1
vote
1 answer
How to communicate between multiple javascript files in python eel
I am trying to make a HTML app using eel. In this app I have two javascript files and want to make communication between my python main.py file. It will get a string from "show()" and "show2()".The string from "show()" will go to my "script.js" file…

This is Nahid khan
- 31
- 4
1
vote
1 answer
How to take image input from user in eel python?
I am using eel library to create GUI. I can't get the path using tag because of security reasons. So please tell me a way to get the image and display it in eel interface. I show several questions related to this but I didn't…

Rohan Jayaraj
- 131
- 1
- 3
- 13
1
vote
1 answer
Javascript can`t see python function exposed with eel
I used @eel.expose the same way as in the documentation, but it doesnt work.
I am trying to send information about weather from pyowm to javascript, but javascript doesnt recognize python function.
Here is my python code:
import eel
import…

F1Lneze
- 21
- 4
1
vote
1 answer
Python: EEL and SELENIUM / Cannot create installer
Could you please tell me how I can make a standalone pyinstaller app / what I should write in setup.py in oreder to make my app work with pyinstaller. Here is what my python script uses
from selenium import webdriver
from…

Mihnea-Octavian Manolache
- 544
- 1
- 4
- 20
1
vote
0 answers
How to acces my EEL app from the internet?
I have my EEL app running great in my LAN, and I would like to get an acces from the internet with my nginx reverse proxy (letsencrypt docker image).
I saw that EEl use a bottle server and that I probably need a middleware script to pass the right…

TheToto318
- 11
- 1
1
vote
1 answer
Python EEL and Multiprocessing?
im currently facing an issue with eel and multiprocessing opening multiple eel windows when an external python script executes that uses multiprocessing.
Folder Structure
Project[folder]
|
start.py
|_______web[folder]
…

Alejandro Suarez
- 149
- 3
- 16
1
vote
1 answer
How to send return value to JS without stopping Python function
I am using the eel module to communicate with Javascript (My Web UI). I have a loading screen while the python script is running. So I need my user to know what is the progress in python side while in loading screen.
So there is a function…
user13494862