Questions tagged [eel]

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

152 questions
0
votes
1 answer

python eel is not working when run as root

I am working on a project with eel and scapy. for scapy sniff, root access is required. I've created virtual environment. scapy part runs fine with root. eel part runs fine without root. but when I tried running eel part with root, nothing is…
0
votes
0 answers

EEL Waiting for localhost

My issue : Hello! I'm trying to do a project with scapy (https://scapy.net/ , a tool to create some internet packets) alongside EEL (for the front-end). In my python i have a function called Attack(). I call this function in js with eel ( SYN() in…
0
votes
1 answer

How to open files dialogue box to choose download destination in eel?

I know that in tkinter it is possible to open file dialogue box, but is there any way to do it in eel using python or even in javascript so that the download location can be obtained instead of hard coding to change the directory each time. I used…
Akash p
  • 67
  • 6
0
votes
2 answers

os.system doesn't work after compiling with pyinstaller

I am trying to get the duration of an online video using ffprobe My program runs perfectly when I run it normally, however when I try to use pyinstaller to compile the script to an exe I click it and the os.system('ffprobe -i "{ URL Here}"…
White Death
  • 408
  • 5
  • 12
0
votes
1 answer

How to use multiprocessing in eel

The logic of my program is following: user clicks button (on UI) -> triggering method of multiprocessing counter (from js to python) -> starting multiprocessing counter loop(in python) -> displaying counter number to UI (from python to html through…
Ming
  • 15
  • 3
0
votes
0 answers

Fetch .json file present in public folder doesn't work after build in react

I am trying to fetch data from a json file called tmp.json that is present in the root of public folder. My app was created using CRA. Here's the code that I wrote for it:- import React, { useState } from "react"; import Button from…
0
votes
1 answer

EEL full screen GUI

I'm trying to make a small application using the eel module. What I ask you is: is there a way to have a full screen gui? Here the image for what I want: This is what I have: This is what I want to have: So just without the grey line. My python…
Matteo Bianchi
  • 434
  • 1
  • 4
  • 19
0
votes
1 answer

how to getElementbyid for Another HTML Page

Can someone please explain how/why this behavior .. I am writing an app using eel. eel starts with page1.html. also there is another page called page2.html. but it is not loaded till I press on some link. My Problem is, I need to insert some values…
Leivir
  • 53
  • 6
0
votes
1 answer

Run Api requests with EEL on python

is it possible to run flask and eel together ? for example. if i have project index.html ( assets are in assets/ ). am using EEL to make the html and python are working together. but i wanted to ask if it possible to also use API requests beside…
0
votes
2 answers

Eel.* is not a function

This is my first time trying something out with eel. I've got a python script with some functions and I'm trying to communicate with them using @eel.expose but it gives me a javascript error - main.html:10 Uncaught TypeError: eel.startEncryption is…
Double
  • 23
  • 1
  • 7
0
votes
1 answer

How can I stop resizing or lock the window size or freeze the window size in eel python library

coders Currently, I am working on a Python project where I have to make a desktop application using the python EEL library and I have done half of the project. Recently I found out that I need to freeze my window size. So is there any option or…
UMANG BARAIYA
  • 571
  • 1
  • 4
  • 9
0
votes
0 answers

How to fix this error on installing Eel using pip

I receive the following output when I give pip install eel C:\Users\Moham\AppData\Local\Temp\TriacleGST.py>pip install eel Collecting eel Using cached Eel-0.14.0.tar.gz (17 kB) Collecting bottle Using cached bottle-0.12.19-py3-none-any.whl (89…
user13494862
0
votes
1 answer

How to handle multiple return from python as multiple parameters in JavaScript?

I am working on a project and I am using the eel python library to create GUI. I am using sqlite to store the database. I want to retrieve information and show it in different input boxes. But my output is [![It means I am getting all…
Rohan Jayaraj
  • 131
  • 1
  • 3
  • 13
0
votes
3 answers

How to start another window using eel python?

I am creating a GUI application using eel library in python. index.html contains login form and if login is successful I want to open retrieve.html. This is my python code and please consider login as successful. @eel.expose def retrieve(): …
Rohan Jayaraj
  • 131
  • 1
  • 3
  • 13
0
votes
1 answer

JS does not display the result | Python | Eel

I cannot solve the problem. I wrote a program, here is its short description: An application whose logic is written in python and the interface is rendered using HTML and CSS. Python imported module eel. Python has a function that returns an array.…
C9F
  • 3
  • 1