A little Python library for making simple Electron-like HTML/JS GUI apps.
Questions tagged [eel]
152 questions
1
vote
1 answer
Pyinstaller : module could not be found error (Pandas)
I was getting a 'Failed to load script error', when I checked it with -F the cmd line says
File "site-packages\pandas\core\window\ewm.py", line 3, in module
ImportError: DLL load failed while importing aggregations: The specified module could not…
user13494862
1
vote
2 answers
not able to pip install eel . - Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output
I'm trying to install eel library for python and I keep getting this message. I have tried upgrading pip but still no luck please help using windows 10, python 3.8 on visualstudio.
distutils.errors.DistutilsError: Command '['c:\program files
…

Syed Inamul Haq
- 11
- 2
1
vote
0 answers
PHP sqlite3 database dropdown menu using python eel
I am trying to printing values in dropdown menu. the values printing on console, but doesn't printing on html
here is my code:

Polyvios P
- 442
- 4
- 11
1
vote
1 answer
Python EEL and PyInstaller Issue
I've recently created a program using eel, in this program I use the module moviepy to split the audio and the video of a file.
But when I try to put the whole project into an .exe file with PyInstaller, the app won't work.
The command I used is:…

Fearr
- 11
- 1
- 3
1
vote
1 answer
Eel and python - how can hide cmd window when the app is running
I have created a simple html page and used it in a python app with the help of Eel
Everything works fine but I want to hide the cmd window that opens up when the python app is running and just show the html page that eel is opening. how can I…

mohammad fallah.rasoulnejad
- 759
- 1
- 15
- 29
1
vote
2 answers
Python: no module named 'bottle-websocket' when running an executable made with PyInstaller, including Eel module
I was playing around with the eel module for Python - gives an opportunity to run HTML + CSS/JS with the python functionality.
Made a simple program, tried to make an executable out of it via PyInstaller.
No errors whatsoever, but when running this…

Mykhailo
- 37
- 8
0
votes
0 answers
Error while converting my eel python project to .exe file
I have made a single page project eel where I take the user id and print it in python whenever the person clicks on the button. It runs smoothly on normal run in vs code. But when I converted it to .exe file It is throwing me error. I have tried…
0
votes
0 answers
Why does calling closed_callback not working in my python eel program?
I have been trying to make a app using python eel for my ui. I have been finding when i close the ui window, the progarm does not stop. So I added close_callback. This has not helped and the app still runs when you close the ui…

Matthew Wright
- 24
- 3
0
votes
0 answers
Install python eel from USB drive
I want to create a little app with python. This app is supposed to have a gui. I want to use python eel for that.
Now the problem is, that the computer on which I want to do this, has no internet connection.
I already installed python from a USB,…

Thornan
- 21
- 2
0
votes
0 answers
EEL Program built with pyinstaller stops server (leaving the chromium window, but stopping server)
I'm making my chat application. When i run the source code, it works. But when i try to use my EXE, (all files exist in the run directory) It launches Chromium (in --app mode with my page), but after a few seconds, the server stops. Here is my…

MoneyGrab
- 9
- 2
0
votes
0 answers
How to restore the EEL python web session
I am using EEL package in python to create web UI. But there are some situtations when because the errors in python the session is closed. When such situation arises I want to restore the session in the same web window or tab and run the python…

dnyanesh ambhore
- 441
- 1
- 4
- 8
0
votes
1 answer
Unable to create exe for EEL python Application
I have below python EEL folder structure
Main:
app.py
web:
src:
asset:
images:
image.jpg
style :
style.js
component:
…

dnyanesh ambhore
- 441
- 1
- 4
- 8
0
votes
1 answer
Combining Eel, Jinja2, Babel - how to?
On a project where I use Eel Python and you can tell Eel to use Jinja2.
Works fine (congrats to the creators). I installed Babel, created a /lang/ folder where I store .pot and .po and .mo files after extraction (using cli command, pybabel…
0
votes
0 answers
Python eel exposed function not getting called from JS file as expected
I have made a web page in HTML and backend in python, for the connectivity between the front end and back end, I have used eel via javascript.
This is my javascript file:
function myFunction(){
let x = document.getElementById("file")
let y =…

Adhar Verma
- 1
- 1
0
votes
1 answer
Why window.resizeTo() function is not resizing window at the smaller then given values in JavaScript
I am building an app using python-eel in chrome mode (Front end : in HTML, CSS & JS). The problem is I use a function which resize the window on resizing the window so that my app content looks good (without extra space & some hidden…

Moeez Raza
- 32
- 4