This is my python function:
@eel.expose def get_events(username): print("get_events") name_of_events = client.get_events(username) return name_of_events
This is my JS function:
function get_days(){ alert(eel.get_events('ofek')); """""" """""" }
In my JS function I call to a python function - get_events using eel but it doesn't recognize this function.
In my JS function I call to a python function - get_events using eel but it doesn't recognize this function.