Metadata-Version: 2.1
Name: tkinterie
Version: 1.1.0
Summary: tkinter-WebView widget, based on InternetExplorer.Application
Home-page: UNKNOWN
Author: Smart-Space
Author-email: smart-space@qq.com
License: MIT License
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Operating System :: Microsoft :: Windows
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.5
Description-Content-Type: text/markdown
Requires-Dist: comtypes

# tkinterIE

基于`InternetExplorer.Application`的WebView组件。

## 使用方法

```python
WebView(master,width:int,height:int,url:str='',**kw)
'''
master::父组件
width::初始宽度
height::初始高度
url::网址或html文件，可以为空
**kw::其它Frame参数
'''
```

例子：

```python
from tkinter import Tk
from tkinterie import tkinterIE

a=Tk(classname='test tkinterie')
a.geometry('1200x700')

w=tkinterIE.WebView(a,1200,700,'www.baidu.com')
w.pack()

a.mainloop()
```

---

## 方法

### navigate(url:str)

指向一个网址或者是html文件路径。

---

## What's new

-1.1.0-

WebView can resize itself when father widget's size changes.

-1.0.0-

Upload to PYPI.

