nuwa/dev/: gooey-1.2.0a1 metadata and description

Homepage Simple index PyPI page

Turn (almost) any command line program into a full GUI application with one line

author Chris Kiehl
author_email audionautic@gmail.com
classifiers
  • Development Status :: 4 - Beta
  • Intended Audience :: Developers
  • Topic :: Desktop Environment
  • Topic :: Software Development :: Build Tools
  • Topic :: Software Development :: Widget Sets
  • Programming Language :: Python :: 3
  • License :: OSI Approved :: MIT License
license MIT
platform
  • UNKNOWN
requires_dist
  • Pillow (>=4.3.0)
  • psutil (>=5.4.2)
  • colored (>=1.3.93)
  • pygtrie (>=2.3.3)
  • re-wx (>=0.0.9)
  • typing-extensions (==3.10.0.2)
  • wxpython (>=4.1.0)
requires_python >=3.6
File Tox results History
Gooey-1.2.0a1-py3-none-any.whl
Size
628 KB
Type
Python Wheel
Python
3
  • Uploaded to nuwa/dev by nuwa 2024-04-15 02:32:09

Turn (almost) any Python Console Program into a GUI application with one line

https://cloud.githubusercontent.com/assets/1408720/7904381/f54f97f6-07c5-11e5-9bcb-c3c102920769.png

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