Metadata-Version: 2.2
Name: Gui_creater
Version: 0.1.0
Summary: A simple library to make useful Gui.
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)
a.add("-Text","2",father_name="1",placewhere=("place",{"x":0,"y":0}),args={"text":"HELLO_GUI(浣犲ソ锛孏UI)","bg":"red"})
a.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("浣犲ソ锛孏UI")"),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. 
