python-eel/Eel
Question: Call async Javascript function from Python
Aberta
#741 aberto em 9 de set. de 2024
help wanted
Métricas do repositório
- Stars
- (5.980 estrelas)
- Métricas de merge de PR
- (Métricas PR pendentes)
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()