Metadata-Version: 2.4
Name: webruntime
Version: 0.5.8
Summary: Launch HTML5 apps in the browser or a desktop-like runtime.
Home-page: http://webruntime.readthedocs.io
Download-URL: https://pypi.python.org/pypi/webruntime
Author: Almar Klein and contributors
Author-email: almar.klein@gmail.com
License: (new) BSD
Keywords: GUI,web,runtime,XUL,nwjs
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Provides: webruntime
License-File: LICENSE
Requires-Dist: dialite
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: download-url
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: platform
Dynamic: provides
Dynamic: requires-dist
Dynamic: summary


The webruntime module can be used to launch applications based on
HTML/JS/CSS. This can be a browser or a runtime that looks like a
desktop app, such as XUL (based on Firefox) or NW.js.

Example:

.. code-block:: python

    >>> from webruntime import launch
    >>> rt = launch('http://xkcd.com', 'app')
    ...
    >>> rt.close()

