Metadata-Version: 2.2
Name: gui_creater
Version: 0.1.7
Summary: A simple library to make useful Gui.(By classes)
Home-page: https://github.com/pysilver-8888/Gui_creater
Author: pysilver
Author-email: 19595263@qq.com
License: MIT
Keywords: gui,example
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-python
Dynamic: summary

This is a package about how to create a gui easily,
like this
```python
import Gui_creater as gc
root=gc.Windows()
root.add("-Window",name=1)
root.add("-Text","2",father_name="1",placewhere=("place",{"x":0,"y":0}),args={"text":"HELLO_GUI(你好，GUI)","bg":"red"})
root.add("-Button","3",father_name="1",placewhere=("place",{"x":100,"y":0}),args={"text":"HELLO(你好)","bg":"blue","command":lambda:print("HELLO GUI!")})
root.start()
```
They can create a window,and there is a text ("HELLO_GUI("你好，GUI")"),a button (its text is "HELLO(你好)").If you click the button,then it can print("HELLO GUI!").You can run "test.py" to try it.
If you make a new widget and you want more people use it,you can
```python
import Gui_creater as gc
gc.Create_new_widget()
```
Then you can see a window , a input-area and a button with text "打开" are on it.
Click the button , then choose a file.After that ,you can see texts in the area.
Click the button with text "上传",it can upload you widget to server. 
If it report error like "服务器未工作，换个时间再试试吧",you can wait and send your widget code later.
