Metadata-Version: 2.1
Name: Gooey
Version: 1.0.8
Summary: Turn (almost) any command line program into a full GUI application with one line
Home-page: http://pypi.python.org/pypi/Gooey/
Author: Chris Kiehl
Author-email: audionautic@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Desktop Environment
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Widget Sets
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Dist: Pillow (>=4.3.0)
Requires-Dist: psutil (>=5.4.2)
Requires-Dist: colored (>=1.3.93)
Requires-Dist: pygtrie (>=2.3.3)
Requires-Dist: wxpython (==4.1.0)



Gooey (Beta)
############


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

.. image:: 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.

.. code-block::

  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 <https://github.com/chriskiehl/Gooey>`_

