Metadata-Version: 2.1
Name: tksugar
Version: 0.1.2
Summary: A module that generates a structured Tk window frame from a text file.
Home-page: https://github.com/TakamiChie/TkSugar
Author: TakamiChie
Author-email: chie@onpu-tamago.net
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
Requires-Dist: pyyaml
Requires-Dist: pyyaml-include

# TkSugar

A module that generates a structured Tk window frame from a text file.

```python
from tksugar.generator import Generator

gen = Generator()
gen.string = """
_Tk:
  title: "TEST Window"
  geometry: 400x300
  _Frame:
    pack:
    _Label:
      text: "Hello"
      pack:
"""
window = gen.generate()
window.mainloop()
```
->

![demo](window.png)

