You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

374 lines
16 KiB

10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
10 years ago
9 years ago
9 years ago
9 years ago
10 years ago
9 years ago
10 years ago
10 years ago
9 years ago
9 years ago
9 years ago
9 years ago
10 years ago
10 years ago
9 years ago
  1. Gooey (Beta)
  2. =====
  3. Turn (almost) any Python Console Program into a GUI application with one line
  4. <p align="center">
  5. <img src="https://cloud.githubusercontent.com/assets/1408720/7904381/f54f97f6-07c5-11e5-9bcb-c3c102920769.png" />
  6. </p>
  7. Table of Contents
  8. -----------------
  9. - [Gooey](#gooey)
  10. - [Table of contents](#table-of-contents)
  11. - [Latest Update](#latest-update)
  12. - [Quick Start](#quick-start)
  13. - [Installation Instructions](#installation-instructions)
  14. - [Usage](#usage)
  15. - [What It Is](#what-is-it)
  16. - [Why Is It](#why)
  17. - [Who is this for](#who-is-this-for)
  18. - [How does it work](#how-does-it-work)
  19. - [Internationalization](#internationalization)
  20. - [Configuration](#configuration)
  21. - [Run Modes](#run-modes)
  22. - [Full/Advanced](#advanced)
  23. - [Basic](#basic)
  24. - [No Config](#no-config)
  25. - [Examples](#examples)
  26. - [Screenshots](#screenshots)
  27. - [Change Log](#change-log)
  28. - [TODO](#todo)
  29. - [Contributing](#wanna-help)
  30. - [Image Credits](#image-credits)
  31. ----------
  32. ###Artist Wanted!
  33. Want to contribute to Gooey? We need icons/logos!
  34. Drop me an <a href="mailto:audionautic@gmail.com">email</a> if you want to help out!
  35. ----------------
  36. ##Quick Start
  37. ###Installation instructions
  38. The easiest way to install Gooey is via `pip`
  39. pip install Gooey
  40. Alternatively, you can install Gooey by cloning the project to your local directory
  41. git clone https://github.com/chriskiehl/Gooey.git
  42. run `setup.py`
  43. python setup.py install
  44. ###Usage
  45. Gooey is attached to your code via a simple decorator on whichever method has your `argparse` declarations (usually `main`).
  46. from gooey import Gooey
  47. @Gooey <--- all it takes! :)
  48. def main():
  49. parser = ArgumentParser(...)
  50. # rest of code
  51. Different styling and functionality can be configured by passing arguments into the decorator.
  52. # options
  53. @Gooey(advanced=Boolean, # toggle whether to show advanced config or not
  54. language=language_string, # Translations configurable via json
  55. show_config=True, # skip config screens all together
  56. program_name='name', # Defaults to script name
  57. program_description, # Defaults to ArgParse Description
  58. default_size=(610, 530), # starting size of the GUI
  59. required_cols=1, # number of columns in the "Required" section
  60. optional_cols=2, # number of columbs in the "Optional" section
  61. dump_build_config=False) # Dump the JSON Gooey uses to configure itself
  62. )
  63. def main():
  64. parser = ArgumentParser(...)
  65. # rest of code
  66. See: [How does it Work](#how-does-it-work) section for details on each option.
  67. Gooey will do its best to choose sensible widget defaults to display in the GUI. However, if more fine tuning is desired, you can use the drop-in replacement `GooeyParser` in place of `ArgumentParser`. This lets you control which widget displays in the GUI. See: [GooeyParser](#gooeyparser)
  68. from gooey import Gooey, GooeyParser
  69. @Gooey
  70. def main():
  71. parser = GooeyParser(description="My Cool GUI Program!")
  72. parser.add_argument('Filename', widget="FileChooser")
  73. parser.add_argument('Date', widget="DateChooser")
  74. ...
  75. What is it?
  76. -----------
  77. Gooey converts your Console Applications into end-user-friendly GUI applications. It lets you focus on building robust, configurable programs in a familiar way, all without having to worry about how it will be presented to and interacted with by your average user.
  78. Why?
  79. ---
  80. Because as much as we love the command prompt, the rest of the world looks at it like an ugly relic from the early '80s. On top of that, more often than not programs need to do more than just one thing, and that means giving options, which previously meant either building a GUI, or trying to explain how to supply arguments to a Console Application. Gooey was made to (hopefully) solve those problems. It makes programs easy to use, and pretty to look at!
  81. Who is this for?
  82. ----------------
  83. If you're building utilities for yourself, other programmers, or something which produces a result that you want to capture and pipe over to another console application (e.g. *nix philosophy utils), Gooey probably isn't the tool for you. However, if you're building 'run and done,' around-the-office-style scripts, things that shovel bits from point A to point B, or simply something that's targeted at a non-programmer, Gooey is the perfect tool for the job. It lets you build as complex of an application as your heart desires all while getting the GUI side for free.
  84. How does it work?
  85. -----------------
  86. Gooey is attached to your code via a simple decorator on whichever method has your `argparse` declarations.
  87. @Gooey
  88. def my_run_func():
  89. parser = ArgumentParser(...)
  90. # rest of code
  91. At run-time, it parses your Python script for all references to `ArgumentParser`. (The older `optparse` is currently not supported.) These references are then extracted, assigned a `component type` based on the `'action'` they provide, and finally used to assemble the GUI.
  92. ####Mappings:
  93. Gooey does its best to choose sensible defaults based on the options it finds. Currently, `ArgumentParser._actions` are mapped to the following `WX` components.
  94. | Parser Action | Widget | Example |
  95. |:----------------------|-----------|------|
  96. | store | TextCtrl | <img src="https://cloud.githubusercontent.com/assets/1408720/7904380/f54e9f5e-07c5-11e5-86e5-82f011c538cf.png"/>|
  97. | store_const | CheckBox | <img src="https://cloud.githubusercontent.com/assets/1408720/7904367/f538c850-07c5-11e5-8cbe-864badfa54a9.png"/>|
  98. | store_true| CheckBox | <img src="https://cloud.githubusercontent.com/assets/1408720/7904367/f538c850-07c5-11e5-8cbe-864badfa54a9.png"/>|
  99. | store_False | CheckBox| <img src="https://cloud.githubusercontent.com/assets/1408720/7904367/f538c850-07c5-11e5-8cbe-864badfa54a9.png"/> |
  100. | append | TextCtrl | <img src="https://cloud.githubusercontent.com/assets/1408720/7904380/f54e9f5e-07c5-11e5-86e5-82f011c538cf.png"/> |
  101. | count| DropDown &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; | <img src="https://cloud.githubusercontent.com/assets/1408720/7904371/f53ccbe4-07c5-11e5-80e5-510e2aa22922.png"/> |
  102. | Mutually Exclusive Group | RadioGroup | <img src="https://cloud.githubusercontent.com/assets/1408720/7904383/f553feb8-07c5-11e5-9d5b-eaa4772075a9.png"/>
  103. |choice &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;| DropDown | <img src="https://cloud.githubusercontent.com/assets/1408720/7904379/f54e4da6-07c5-11e5-9e66-d8e6d7f18ac6.png"/> |
  104. ###GooeyParser
  105. If the above defaults aren't cutting it, you can control the exact widget type by using the drop-in `ArgumentParser` replacement `GooeyParser`. This gives you the additional keyword argument `widget`, to which you can supply the name of the component you want to display. Best part? You don't have to change any of your `argparse` code to use it. Drop it in, and you're good to go.
  106. **Example:**
  107. from argparse import ArgumentParser
  108. ....
  109. def main():
  110. parser = ArgumentParser(description="My Cool Gooey App!")
  111. parser.add_argument('filename', help="name of the file to process")
  112. Given then above, Gooey would select a normal `TextField` as the widget type like this:
  113. <p align="center">
  114. <img src="https://cloud.githubusercontent.com/assets/1408720/7904368/f5393e20-07c5-11e5-88e9-c153fc3ecfaa.PNG">
  115. </p>
  116. However, by dropping in `GooeyParser` and supplying a `widget` name, you can display a much more user friendly `FileChooser`
  117. from gooey import GooeyParser
  118. ....
  119. def main():
  120. parser = GooeyParser(description="My Cool Gooey App!")
  121. parser.add_argument('filename', help="name of the file to process", widget='FileChooser')
  122. <p align="center"><img src="https://cloud.githubusercontent.com/assets/1408720/7904370/f53ae23e-07c5-11e5-8757-c8aa6f3013b5.PNG"></p>
  123. **Custom Widgets:**
  124. | Widget | Example |
  125. |----------------|------------------------------|
  126. | Directory/FileChooser | <p align="center"><img src="https://cloud.githubusercontent.com/assets/1408720/7904377/f5483b28-07c5-11e5-9d01-1935635fc22d.gif" width="400"></p> |
  127. | DateChooser &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;| <p align="center"><img src="https://cloud.githubusercontent.com/assets/1408720/7904376/f544756a-07c5-11e5-86d6-862ac146ad35.gif" width="400"></p> |
  128. Internationalization
  129. --------------------
  130. <img src="https://cloud.githubusercontent.com/assets/1408720/7904365/f52e9f1a-07c5-11e5-8f31-36a8fc14ac02.jpg" align="right" />
  131. Gooey is international ready and easily ported to your host language. Languages are controlled via an argument to the `Gooey` decorator.
  132. @Gooey(language='russian')
  133. def main():
  134. ...
  135. All program text is stored externally in `json` files. So adding new langauge support is as easy as pasting a few key/value pairs in the `gooey/languages/` directory.
  136. Thanks to some awesome [contributers](https://github.com/chriskiehl/Gooey/graphs/contributors), Gooey currently comes pre-stocked with the following language sets:
  137. - English
  138. - Dutch
  139. - French
  140. - Portuguese
  141. Want to add another one? Submit a [pull request!](https://github.com/chriskiehl/Gooey/compare)
  142. -------------------------------------------
  143. Configuration
  144. -------------
  145. Just about everything in Gooey can be customized by passing arguments to the decorator.
  146. | Parameter | Summary |
  147. |-----------|---------|
  148. | advanced | Toggles whether to show the 'full' configuration screen, or a simplified version |
  149. | show_config | Skips the configuration all together and runs the program immediately |
  150. | language | Tells Gooey which language set to load from the `gooey/languages` directory.|
  151. |program_name | The name displayed in the title bar of the GUI window. If not supplied, the title defaults to the script name pulled from `sys.argv[0]`. |
  152. | program_description | Sets the text displayed in the top panel of the `Settings` screen. Defaults to the description pulled from `ArgumentParser`. |
  153. | default_size | Initial size of the window |
  154. | required_cols | Controls how many columns are in the Required Arguments section |
  155. | optional_cols | Controls how many columns are in the Optional Arguments section |
  156. | dump_build_config | Saves a `json` copy of its build configuration on disk for reuse/editing |
  157. Run Modes
  158. ---------
  159. Gooey has a handful of presentation modes so you can tailor its layout to your content type and user's level or experience.
  160. ###Advanced
  161. The default view is the "full" or "advanced" configuration screen. It has two different layouts depending on the type of command line interface it's wrapping. For most applications, the flat layout will be the one to go with, as its layout matches best to the familiar CLI schema of a primary command followed by many options (e.g. Curl, FFMPEG).
  162. On the other side is the Column Layout. This one is best suited for CLIs that have multiple paths or are made up of multiple little tools each with their own arguments and options (think: git). It displays the primary paths along the left column, and their corresponding arguments in the right. This is a great way to package a lot of varied functionality into a single app.
  163. <p align="center">
  164. <img src="https://cloud.githubusercontent.com/assets/1408720/7927433/f06a36cc-08ad-11e5-843e-9322df96d4d6.png">
  165. </p>
  166. Both views present each action in the `Argument Parser` as a unique GUI component. It makes it ideal for presenting the program to users which are unfamiliar with command line options and/or Console Programs in general. Help messages are displayed along side each component to make it as clear as possible which each widget does.
  167. **Setting the layout style:**
  168. Currently, the layouts can't be explicitely specified via a parameter (on the TODO!). The layouts are built depending on whether or not there are `subparsers` used in your code base. So, if you want to trigger the `Column Layout`, you'll need to add a `subparser` to your `argparse` code.
  169. It can be toggled via the `advanced` parameter in the `Gooey` decorator.
  170. @gooey(advanced=True)
  171. def main():
  172. # rest of code
  173. --------------------------------------------
  174. ###Basic
  175. The basic view is best for times when the user is familiar with Console Applications, but you still want to present something a little more polished than a simple terminal. The basic display is accessed by setting the `advanced` parameter in the `gooey` decorator to `False`.
  176. @gooey(advanced=False)
  177. def main():
  178. # rest of code
  179. <p align="center">
  180. <img src="https://cloud.githubusercontent.com/assets/1408720/7904369/f53a4306-07c5-11e5-8e63-b510d6db9953.png">
  181. </p>
  182. ----------------------------------------------
  183. ###No Config
  184. No Config pretty much does what you'd expect: it doesn't show a configuration screen. It hops right to the `display` section and begins execution of the host program. This is the one for improving the appearance of little one-off scripts.
  185. <p align="center">
  186. <img src="https://cloud.githubusercontent.com/assets/1408720/7904382/f54fe6f2-07c5-11e5-92e4-f72a2ae12862.png">
  187. </p>
  188. ---------------------------------------
  189. Examples
  190. --------
  191. Gooey comes with a bunch of example programs. Examples are located in the `examples` directory inside of the root `gooey` package. However, the easiest way to play with them is to import them into a python project and execute their `main` function.
  192. from gooey.examples import widget_demo
  193. widget_demo.main()
  194. or
  195. from gooey.examples import subparser_demo
  196. subparser_demo.main()
  197. >Note: The examples *must* be run from a Python file! Due to Gooey's file requirements, it won't work from the comman line.
  198. Screenshots
  199. ------------
  200. | Flat Layout | Column Layout |Success Screen | Error Screen | Warning Dialog |
  201. |-------------|---------------|---------------|--------------|----------------|
  202. | <img src="https://cloud.githubusercontent.com/assets/1408720/7950190/4414e54e-0965-11e5-964b-f717a7adaac6.jpg"> | <img src="https://cloud.githubusercontent.com/assets/1408720/7950189/4411b824-0965-11e5-905a-3a2b5df0efb3.jpg"> | <img src="https://cloud.githubusercontent.com/assets/1408720/7950192/44165442-0965-11e5-8edf-b8305353285f.jpg"> | <img src="https://cloud.githubusercontent.com/assets/1408720/7950188/4410dcce-0965-11e5-8243-c1d832c05887.jpg"> | <img src="https://cloud.githubusercontent.com/assets/1408720/7950191/4415432c-0965-11e5-9190-17f55460faf3.jpg"> |
  203. ----------------------------------------------
  204. ###Change Log
  205. ----------
  206. - Subparser Support!
  207. - Moved all internal messaging to pubsub
  208. - expanded i18n converage
  209. - allowed returning to the main configuration screen
  210. - Fixed success checkmark showing on failure
  211. - Refactoring to beauty
  212. - Removed parsing code, replaced it with @SylvainDe patch
  213. - Fixed issue #87
  214. - Fixed issue #85
  215. - Argparse no longer required to me in `main` (issue 84)
  216. - Drag and Drop support (`Issue #28`)
  217. - Added drag and drop support
  218. - Added new widget packs: DateChooser, FileChooser, DirChooser
  219. - fixed several parsing related issues.
  220. - Gooey now has a sane setup.py (thanks to hero user LudoVio)
  221. - Gooey now builds from json for easy configurability
  222. - Side Note: This was done with big strides towards making Gooey language agnostic. Coming Soon!
  223. - Fixed GUI layout so that resizing works better
  224. Wanna help?
  225. -----------
  226. Code, translation, graphics? Pull requests are welcome.
  227. [1]: http://i.imgur.com/7fKUvw9.png