pywebview is a lightweight cross-platform wrapper around a webview component that allows to display HTML content in its own native GUI window. It gives you power of web technologies in your desktop application, eliminating the need of launching a web browser. Combined with a lightweight web framework like Flask, Bottle or web.py, you can create beautiful cross-platform HTML5 user interfaces targeting WebKit, while hiding implementation details from the end user. If HTML is not your strong point, you might want to use REMI, which allows you to create HTML based interfaces using Python code only.
pywebview is lightweight and has no dependencies on an external GUI framework. It uses native GUI for creating a web component window: Win32 on Windows, Cocoa on Mac OSX and Qt4/5 or GTK3 on Linux. If you choose to freeze your application, it does not bundle a heavy GUI toolkit with it keeping the executable size small. Compatible with both Python 2 and 3. While Android is not supported, you can use the same codebase with solutions like Python for Android for creating an APK.
An example application created with pywebview can be found here https://github.com/r0x0r/traktorlibrarian If you have built an app using pywebview, please do not hesitate to showcase it.
The BSD license
pip install pywebview
Help, PRs and donations are welcome. If you found a bug, please test it first in a web-browser that is used by default for your operating system to see if the problem is with your code, rather than pywebview. Feature requests are welcome, but nothing is guaranteed.
pywin32
, comtypes
. ActiveState distribution of Python 2 comes with pywin32 preinstalled
pyobjc
. PyObjC comes presintalled with the Python bundled in OS X. For a stand-alone Python installation you have to install it separately.
For GTK3 based systems
PyGObject
For QT based systems
Either PyQt4
or PyQt5
import webview
webview.create_window("It works, Jim!", "http://www.flowrl.com")
For more elaborated usage, refer to the examples in the examples
directory.
There is also a sample Flask application boilerplate provided in the examples/flask_app
directory. It provides
an application scaffold and boilerplate code for a real-world application.
-
webview.create_window(title, url, width=800, height=600, resizable=True, fullscreen=False, min_size=(200, 100))
Create a new WebView window. Calling this function will block application execution, so you have to execute your program logic in a separate thread. -
webview.load_url(url)
Load a new URL into a previously created WebView window. This function must be invoked after WebView windows is created with create_window(). Otherwise an exception is thrown. -
webview.create_file_dialog(dialog_type=OPEN_DIALOG, directory='', allow_multiple=False, save_filename='')
Create an open file (webview.OPEN_DIALOG
), open folder (webview.FOLDER_DIALOG
) or save file (webview.SAVE_DIALOG
) dialog.allow_multiple=True
enables multiple selection.directory
Initial directory.save_filename
Default filename for save file dialog. Return a tuple of selected files, None if cancelled -
webview.destroy_window()
Destroy a webview window
For OS X and Linux systems you get WebKit. The actual version depends on the version of installed Safari on OS X and QT / GTK on Linux. Note that WebKit bundled with QT / GTK is slightly out of date comparing to the latest Safari or Chrome.
For Windows, you get MSHTML (Trident) in all its glory. The version depends on the installed version of Internet Explorer. For Windows XP systems, you cannot get anything better than IE8. For Vista, you are limited to IE9. For Windows 7/8/10, you will get the latest installed version. EdgeHTML is not yet supported on Windows 10, as it requires a .NET interface. This is planned for future versions for pywebvview.
Use py2app on OS X and py2exe/pyinstaller on Windows. For reference setup.py files, look in examples/py2app_setup.py
and examples/py2exe_setup.py
Released 08/06/2016
New
[OSX] Add a default application menu #35. Thanks @cuibonoboNew
[Linux] GTK is made as default and pypi dependency added. USE_GTK environment variable is also deprecated. To use QT, setwebview.config["USE_QT"] = True
Fix
[Windows] Open folder of create_file_dialog now returns Unicode, instead of byte encoding.
Released 19/05/2016
Fix
[Windows] Fix a dead-lock that sometimes occurs on a window creation, when used with a HTTP server running in a separate thread.
Released 17/05/2016
Fix
[Windows] PyInstaller: Icon not found #29
Released 12/02/2016
New
[All] Add an ability to programmatically destroy a webview windowFix
[Windows] Fullscreen modeFix
[Windows] Change setup.py to use pypiwin32 #22Fix
[Windows] Relative import of win32_gen fixed on Python 3 #20. Thanks to @yoavram for the contributionFix
[Windows] FileNotFound exception on Windows 2003. Thanks to @jicho for the contributionFix
[OSX] Non-SSL URLs are allowed by default on El Capitan. Thanks to @cr0hn for the contribution
Released 27/11/2015
New
[All] Right click context menu is disabled #12New
[All] Window minimum size constraints #13New
[All] Save file dialogNew
[All] Addeddirectory
andsave_filename
parameters tocreate_file_dialog
New
[All] An option to set a default directory in a file dialogNew
[GTK] Introduced USE_GTK environment variable. When set, GTK is preferred over QT.Fix
[Windows] Webview scrollbar sizing with a non-resizable windowFix
[Windows] Add support for application icon #9Fix
[Windows] Disable logging spam for comtypes
Fix
[Windows] Invisible scrollbarsFix
[Windows] Fullscreen mode
Fixed
#10 Underlying browser does not resize with window under windows
Released on 08/10/2015
Fixed
Pressing close window button terminates the whole program on OSX
Released on 06/10/2015
New
Support for native open file / open folder dialogsFixed
#6 FEATURE_BROWSER_EMULATION not in winreg.HKEY_CURRENT_USER. Thanks to @frip for the fix.
Released on 08/04/2015
Fixed
Python 3 compatibility in Win32 module (thanks @Firnagzen) #3Fixed
Floating values for window dimensions causing issues on Windows XP (thanks @Firnagzen) #4Fixed
Correct IE version registry key on Windows XP (thanks @Firnagzen) #5
Released on 11/02/2015
Fixed
A problem preventing from creating a window on Windows
Released on 30/11/2014
New
Windows supportNew
GTK3 supportNew
pip installationNew
Fullscreen mode
Released on 20/11/2014
- First release
- Linux and OSX support