wxwidgets

wxpython based gui elements


License
MIT
Install
pip install wxwidgets==1.0.5

Documentation

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

from wx import Panel, VERTICAL

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