nuwa/dev/: gooey-1.2.0a1 metadata and description
Turn (almost) any command line program into a full GUI application with one line
| author | Chris Kiehl |
| author_email | audionautic@gmail.com |
| classifiers |
|
| license | MIT |
| platform |
|
| requires_dist |
|
| requires_python | >=3.6 |
| File | Tox results | History |
|---|---|---|
Gooey-1.2.0a1-py3-none-any.whl
|
|
Turn (almost) any Python Console Program into a GUI application with one line
Quick Start
Gooey is attached to your code via a simple decorator on your main method.
from gooey import Gooey
@Gooey <--- all it takes! :)
def main():
# rest of code
With the decorator attached, run your program and the GUI will now appear!
Checkout the full documentation, instructions, and source on Github