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:
So just without the grey line.
My python code:
import eel
from openpyxl import Workbook
wb = Workbook()
ws = wb.active
ws['A1'] = 'NOME1'
ws['B1'] = 'NOME2'
eel.init('web')
counter = 2
counter2 = 2
@eel.expose
def data1(data):
global counter
ws['A'+str(counter)] = data
wb.save("sample.xlsx")
counter += 1
@eel.expose
def data2(data):
global counter2
ws['B'+str(counter2)] = data
wb.save("sample.xlsx")
counter2 += 1
eel.start('index.html')
My javascript code:
function data1() {
var data1 = document.getElementById("input1").value
eel.data1(data1)
document.getElementById('input1').value = ''
}
function data2() {
var data2 = document.getElementById("input2").value
eel.data2(data2)
document.getElementById('input2').value = ''
}