Metadata-Version: 2.4
Name: webview2
Version: 0.0.1
Summary: Build immersive applications supported by WebView2 on Windows Operation Systems
Home-page: https://github.com/aiyojun/pypi-repo
Author: aiyojun
Author-email: aiyojun@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
Requires-Dist: pywin32
Requires-Dist: voxe==0.0.4
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: summary

# Project description

Build immersive applications supported by WebView2 on Windows Operation Systems

## Usage

```python
import asyncio

from webview2 import Window, webview2_api 

class MainWindow(Window):
    @webview2_api
    def greeting(self):
        return "hello webview2"


win = MainWindow(
    title="My App", size="1480x960",# icon="logo.ico",
    url="https://www.bing.com",# cache="PATH_OF_WEBVIEW2_CACHE"
)
asyncio.run(win.run())

```

## Titlebar

Mark the css `app-region:drag;` of the title bar element to achieve the effect of dragging the title bar.
