As you know, we're using CEFPython in a WXPython application, using a method almost identical to the one your example uses.
We're using Javascript functions that bind to Python code through JavascriptBindings, and we're noticing that the Python code called through Javascript ends up executing on a UI thread, so long-running functions tie up the UI.
Is there a way around this? Obviously we could just create a new thread in Python but we're hoping that there's some way to avoid that.
Thank you very much for the great library.
Adam