python-eel / Eel

A little Python library for making simple Electron-like HTML/JS GUI apps
MIT License
6.44k stars 587 forks source link

for javascript calling python, return promises that support catch #291

Closed patter001 closed 4 years ago

patter001 commented 4 years ago

The ability to call in to python works great, but I find myself having to put try/except wrappers around everything and then the return codes also have to return status and exception information.

Perhaps an API where a true promise was returned (vs. passing in a callback) so that the result and catch can be handled depending on if an error occurred.