Merge pull request #83 from MikeTheWatchGuy/Dev-latest

Dev latest
This commit is contained in:
MikeTheWatchGuy 2018-08-29 11:27:34 -04:00 committed by GitHub
commit 4e9024d201
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 70 additions and 60 deletions

View File

@ -1736,39 +1736,44 @@ Use realtime keyboard capture by calling
## Sample Applications ## Sample Applications
Use the example programs as a starting basis for your GUI. Copy, paste, modify and run! The demo files are: Use the example programs as a starting basis for your GUI. Copy, paste, modify and run! The demo files are:
**Demo_All_Widgets.py** - Nearly all of the Elements shown in a single form | Source File| Description |
**Demo_Canvas.py** - Form with a Canvas Element that is updated outside of the form |--|--|
**Demo_Chat.py** - A chat window with scrollable history |**Demo_All_Widgets.py**| Nearly all of the Elements shown in a single form
**Demo_Chatterbot.py** - Front-end to Chatterbot Machine Learning project |**Demo_Canvas.py** | Form with a Canvas Element that is updated outside of the form
**Demo_Color.py** - How to interact with color using RGB hex values and named colors |**Demo_Chat.py** | A chat window with scrollable history
**Demo_Columns.py** - Using the Column Element to create more complex forms |**Demo_Chatterbot.py** | Front-end to Chatterbot Machine Learning project
**Demo_Compare_Files.py** - Using a simple GUI front-end to create a compare 2-files utility |**Demo_Color.py** | How to interact with color using RGB hex values and named colors
**Demo_Dictionary.py** - Specifying and using return values in dictionary format |**Demo_Columns.py** | Using the Column Element to create more complex forms
**Demo_DisplayHash1and256.py** - Using high level API and custom form to implement a simple display hash code utility |**Demo_Compare_Files.py** | Using a simple GUI front-end to create a compare 2-files utility
**Demo_DuplicateFileFinder.py** - High level API used to get a folder that is used by utility that finds duplicate files. Uses progress meter to show progress. 2 lines of code required to add GUI and meter. |**Demo_Dictionary.py** | Specifying and using return values in dictionary format
**Demo_Func_Callback_Simulator.py** - For the Raspberry Pi crowd. Event loop that simulates traditional GUI callback functions should you already have an architecture that uses them. |**Demo_DisplayHash1and256.py** | Using high level API and custom form to implement a simple display hash code utility
**Demo_GoodColors.py** - Using some of the pre-defined PySimpleGUI individual colors |**Demo_DuplicateFileFinder.py** | High level API used to get a folder that is used by utility that finds duplicate files. Uses progress meter to show progress. 2 lines of code required to add GUI and meter
**Demo_HowDoI.py** - This is a utility to be experienced! It will change how you code. |**Demo_Func_Callback_Simulator.py** | For the Raspberry Pi crowd. Event loop that simulates traditional GUI callback functions should you already have an architecture that uses them
**Demo_Keyboard.py** - Using blocking keyboard events |**Demo_GoodColors.py** | Using some of the pre-defined PySimpleGUI individual colors
**Demo_Keyboard_Realtime.py** - Using non-blocking / realtime keyboard events |**Demo_HowDoI.py** | This is a utility to be experienced! It will change how you code
**Demo_Machine_Learning.py** - A sample Machine Learning front end |**Demo_Keyboard.py** | Using blocking keyboard events
**Demo_Matplotlib.py** - Integrating with Matplotlib to create a single graph |**Demo_Keyboard_Realtime.py** | Using non-blocking / realtime keyboard events
**Demo_Matplotlib_Animated.py** - Animated Matplotlib line graph |**Demo_Machine_Learning.py** | A sample Machine Learning front end
**Demo_Matplotlib_Animated_Scatter.py -** Animated Matplotlib scatter graph |**Demo_Matplotlib.py** | Integrating with Matplotlib to create a single graph
**Demo_Media_Player.py** - Non-blocking form with a media player layout. Demonstrates button graphics, Update method |**Demo_Matplotlib_Animated.py** | Animated Matplotlib line graph
**Demo_MIDI_Player.py** - GUI wrapper for Mido MIDI package. Functional MIDI player that controls attached MIDI devices |**Demo_Matplotlib_Animated_Scatter.py** | Animated Matplotlib scatter graph
**Demo_NonBlocking_Form.py** - a basic async form |**Demo_Media_Player.py** | Non-blocking form with a media player layout. Demonstrates button graphics, Update method
**Demo_PDF_Viewer.py** - Submitted by a user! Previews PDF documents. Uses keyboard input & mouse scrollwheel to navigate |**Demo_MIDI_Player.py** | GUI wrapper for Mido MIDI package. Functional MIDI player that controls attached MIDI devices
**Demo_Pi_Robotics.py** - Simulated robot control using realtime buttons |**Demo_NonBlocking_Form.py** | a basic async form
**Demo_PNG_Vierwer.p**y - Uses Image Element to display PNG files |**Demo_PDF_Viewer.py** | Submitted by a user! Previews PDF documents. Uses keyboard input & mouse scrollwheel to navigate
**Demo_Recipes.py** - A collection of various Recipes. Note these are not the same as the Recipes in the Recipe Cookbook (another script is in the works) |**Demo_Pi_Robotics.py** | Simulated robot control using realtime buttons
**Demo_Script_Launcher.py** - Demonstrates one way of adding a front-end onto several command line scripts |**Demo_PNG_Vierwer.py** | Uses Image Element to display PNG files
**Demo_Script_Parameters.py** - Add a 1-line GUI to the front of your previously command-line only scripts |**Demo_Recipes.py** | A collection of various Recipes. Note these are not the same as the Recipes in the Recipe Cookbook (another script is in the works)
**Demo_Tabbed_Form.py** - Using the Tab feature |**Demo_Script_Launcher.py** | Demonstrates one way of adding a front-end onto several command line scripts
|**Demo_Script_Parameters.py** | Add a 1-line GUI to the front of your previously command-line only scripts
|**Demo_Tabbed_Form.py** | Using the Tab feature
## Packages Used In Demos
## Packages Used In Demos
While the core PySimpleGUI code does not utilize any 3rd party packages, some of the demos do. They add a GUI to a few popular packages. These packages include: While the core PySimpleGUI code does not utilize any 3rd party packages, some of the demos do. They add a GUI to a few popular packages. These packages include:
* [Chatterbot](https://github.com/gunthercox/ChatterBot) * [Chatterbot](https://github.com/gunthercox/ChatterBot)
* [Mido](https://github.com/olemb/mido) * [Mido](https://github.com/olemb/mido)

View File

@ -1736,39 +1736,44 @@ Use realtime keyboard capture by calling
## Sample Applications ## Sample Applications
Use the example programs as a starting basis for your GUI. Copy, paste, modify and run! The demo files are: Use the example programs as a starting basis for your GUI. Copy, paste, modify and run! The demo files are:
**Demo_All_Widgets.py** - Nearly all of the Elements shown in a single form | Source File| Description |
**Demo_Canvas.py** - Form with a Canvas Element that is updated outside of the form |--|--|
**Demo_Chat.py** - A chat window with scrollable history |**Demo_All_Widgets.py**| Nearly all of the Elements shown in a single form
**Demo_Chatterbot.py** - Front-end to Chatterbot Machine Learning project |**Demo_Canvas.py** | Form with a Canvas Element that is updated outside of the form
**Demo_Color.py** - How to interact with color using RGB hex values and named colors |**Demo_Chat.py** | A chat window with scrollable history
**Demo_Columns.py** - Using the Column Element to create more complex forms |**Demo_Chatterbot.py** | Front-end to Chatterbot Machine Learning project
**Demo_Compare_Files.py** - Using a simple GUI front-end to create a compare 2-files utility |**Demo_Color.py** | How to interact with color using RGB hex values and named colors
**Demo_Dictionary.py** - Specifying and using return values in dictionary format |**Demo_Columns.py** | Using the Column Element to create more complex forms
**Demo_DisplayHash1and256.py** - Using high level API and custom form to implement a simple display hash code utility |**Demo_Compare_Files.py** | Using a simple GUI front-end to create a compare 2-files utility
**Demo_DuplicateFileFinder.py** - High level API used to get a folder that is used by utility that finds duplicate files. Uses progress meter to show progress. 2 lines of code required to add GUI and meter. |**Demo_Dictionary.py** | Specifying and using return values in dictionary format
**Demo_Func_Callback_Simulator.py** - For the Raspberry Pi crowd. Event loop that simulates traditional GUI callback functions should you already have an architecture that uses them. |**Demo_DisplayHash1and256.py** | Using high level API and custom form to implement a simple display hash code utility
**Demo_GoodColors.py** - Using some of the pre-defined PySimpleGUI individual colors |**Demo_DuplicateFileFinder.py** | High level API used to get a folder that is used by utility that finds duplicate files. Uses progress meter to show progress. 2 lines of code required to add GUI and meter
**Demo_HowDoI.py** - This is a utility to be experienced! It will change how you code. |**Demo_Func_Callback_Simulator.py** | For the Raspberry Pi crowd. Event loop that simulates traditional GUI callback functions should you already have an architecture that uses them
**Demo_Keyboard.py** - Using blocking keyboard events |**Demo_GoodColors.py** | Using some of the pre-defined PySimpleGUI individual colors
**Demo_Keyboard_Realtime.py** - Using non-blocking / realtime keyboard events |**Demo_HowDoI.py** | This is a utility to be experienced! It will change how you code
**Demo_Machine_Learning.py** - A sample Machine Learning front end |**Demo_Keyboard.py** | Using blocking keyboard events
**Demo_Matplotlib.py** - Integrating with Matplotlib to create a single graph |**Demo_Keyboard_Realtime.py** | Using non-blocking / realtime keyboard events
**Demo_Matplotlib_Animated.py** - Animated Matplotlib line graph |**Demo_Machine_Learning.py** | A sample Machine Learning front end
**Demo_Matplotlib_Animated_Scatter.py -** Animated Matplotlib scatter graph |**Demo_Matplotlib.py** | Integrating with Matplotlib to create a single graph
**Demo_Media_Player.py** - Non-blocking form with a media player layout. Demonstrates button graphics, Update method |**Demo_Matplotlib_Animated.py** | Animated Matplotlib line graph
**Demo_MIDI_Player.py** - GUI wrapper for Mido MIDI package. Functional MIDI player that controls attached MIDI devices |**Demo_Matplotlib_Animated_Scatter.py** | Animated Matplotlib scatter graph
**Demo_NonBlocking_Form.py** - a basic async form |**Demo_Media_Player.py** | Non-blocking form with a media player layout. Demonstrates button graphics, Update method
**Demo_PDF_Viewer.py** - Submitted by a user! Previews PDF documents. Uses keyboard input & mouse scrollwheel to navigate |**Demo_MIDI_Player.py** | GUI wrapper for Mido MIDI package. Functional MIDI player that controls attached MIDI devices
**Demo_Pi_Robotics.py** - Simulated robot control using realtime buttons |**Demo_NonBlocking_Form.py** | a basic async form
**Demo_PNG_Vierwer.p**y - Uses Image Element to display PNG files |**Demo_PDF_Viewer.py** | Submitted by a user! Previews PDF documents. Uses keyboard input & mouse scrollwheel to navigate
**Demo_Recipes.py** - A collection of various Recipes. Note these are not the same as the Recipes in the Recipe Cookbook (another script is in the works) |**Demo_Pi_Robotics.py** | Simulated robot control using realtime buttons
**Demo_Script_Launcher.py** - Demonstrates one way of adding a front-end onto several command line scripts |**Demo_PNG_Vierwer.py** | Uses Image Element to display PNG files
**Demo_Script_Parameters.py** - Add a 1-line GUI to the front of your previously command-line only scripts |**Demo_Recipes.py** | A collection of various Recipes. Note these are not the same as the Recipes in the Recipe Cookbook (another script is in the works)
**Demo_Tabbed_Form.py** - Using the Tab feature |**Demo_Script_Launcher.py** | Demonstrates one way of adding a front-end onto several command line scripts
|**Demo_Script_Parameters.py** | Add a 1-line GUI to the front of your previously command-line only scripts
|**Demo_Tabbed_Form.py** | Using the Tab feature
## Packages Used In Demos
## Packages Used In Demos
While the core PySimpleGUI code does not utilize any 3rd party packages, some of the demos do. They add a GUI to a few popular packages. These packages include: While the core PySimpleGUI code does not utilize any 3rd party packages, some of the demos do. They add a GUI to a few popular packages. These packages include:
* [Chatterbot](https://github.com/gunthercox/ChatterBot) * [Chatterbot](https://github.com/gunthercox/ChatterBot)
* [Mido](https://github.com/olemb/mido) * [Mido](https://github.com/olemb/mido)