Metadata-Version: 2.1
Name: wxwidgets
Version: 1.0.4
Summary: wxpython based gui elements
Home-page: https://github.com/ChsHub/wxwidgets
Author: ChsHub
Author-email: christian1193@web.com
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: wxPython
Requires-Dist: webcolors

# wxwidgets
Simple widgets for usage with the wxPython library. It includes a table, sizer and input elements for directory, files and text.

## Usage Example SimpleSizer

```python
from wx import Panel, VERTICAL

with SimpleSizer(parent, VERTICAL) as sizer:
    new_element = Panel(parent)
    sizer.Add(new_element)

```

