# Javascript–Python bridge
# Run Javascript from Python
window.evaluate_js(code, callback=None)
allows you to execute arbitrary Javascript code with a last value returned synchronously. If callback function is supplied, then promises are resolved and the callback function is called with the result as a parameter. Javascript types are converted to Python types, eg. JS objects to dicts, arrays to lists, undefined to None. If executed Javascript code results in an error, the error is rethrown as a webview.util.JavascriptException
in Python.
# Run Python from Javascript
Executing Python functions from Javascript can be done with two different mechanisms.
by exposing an instance of a Python class to the
js_api
parameter ofcreate_window
. All the callable methods of the class will be exposed to the JS domain aspywebview.api.method_name
with correct parameter signatures. Method name must not start with an underscore. Nested classes are allowed and are converted into a nested objects in Javascript. Cclass attributes starting with an underscore are not exposed. See an example.by passing your function(s) to window object's
expose(func)
. This will expose a function or functions to the JS domain aspywebview.api.func_name
. Unlike JS API,expose
allows to expose functions also at the runtime. If there is a name clash between JS API and exposed functions, the latter takes precedence. See an example.
Exposed function returns a promise that is resolved to its result value. Exceptions are rejected and encapsulated inside a Javascript Error
object. Stacktrace is available via error.stack
. Exposed functions are executed in separate threads and are not thread-safe.
window.pywebview.api
is not guaranteed to be available on window.onload
. Subscribe to the window.pywebviewready
event instead to make sure that window.pywebview.api
is ready.