python-eel/Eel
Ver no GitHubQuestion: Call async Javascript function from Python
Open
#741 aberto em 9 de set. de 2024
help wanted
Description
Maybe I'm stupid, but I don't understand how to call an async JS function from Python. For example:
eel.expose(test);
async function test() {
console.log("Hello world!");
}
This does not work:
eel.test()