Skip to content

zserge/webview-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2e5462f · Jul 15, 2018

History

4 Commits
Jul 15, 2018
Mar 7, 2018
Jul 15, 2018
Jul 15, 2018

Repository files navigation

webview

Python extension that provides API for the webview library.

Getting started

Install the bindings:

pip install webview

Try the following example:

import webview

w = webview.WebView(width=320, height=240, title="Hello", url="https://google.com", resizable=True, debug=False)
w.run()

You may use most of the webview APIs:

# Change window title
w.set_title("New title")
# Make window fullscreen
w.set_fullscreen(True)
# Change initial window background color
w.set_color(255, 0, 0)
# Inject some JS
w.eval("alert('hello')")
# Inject some CSS
w.inject_css('* {background-color: yellow; }')
# Show native OS dialog
file_path = w.dialog(0, 0, "open file", "")
# Post funciton to the UI thread
w.dispatch(some_func)
w.dispatch(lambda: some_func())
# Control run loop
while w.loop(True):
  pass

Dispatch is currently only a stub and is implemented as direct function call. Also, proper Python-to-JS object mapping is not implemented yet, but is highly

Development

To build and install the library locally:

python setup.py install

To upload a new version:

python setup.py sdist
twine upload dist/webview-*.tar.gz

To build and install it locally:

python setup.py install

Please, ensure that all sources are formatted using yapf.

About

Python bindings to webview

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published