diff --git a/PySimpleGUI.py b/PySimpleGUI.py index faee680f..8b735d96 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -version = __version__ = "4.56.0.13 Unreleased" +version = __version__ = "4.56.0.14 Unreleased" _change_log = """ Changelog since 4.56.0 released to PyPI on 5-Jan-2022 @@ -34,6 +34,8 @@ _change_log = """ Updated the internal keys to use the -KEY- coding convention. Was using the really old _KEY_ coding convention. 4.56.0.13 Added check for bad Image filename in Image.update. Will show an error popup now like the initial Image element creation error popup + 4.56.0.14 + New coupon """ __version__ = version.split()[0] # For PEP 396 and PEP 345 @@ -23493,7 +23495,7 @@ def main(): # webbrowser.open_new_tab(r'https://udemy.com/PySimpleGUI') webbrowser.open_new_tab(r'https://www.buymeacoffee.com/PySimpleGUI') elif event in ('-EMOJI-HEARTS-', '-HEART-'): - popup_scrolled("Oh look! It's a Udemy discsount coupon!", '5C14671AABA040B06FDC') + popup_scrolled("Oh look! It's a Udemy discsount coupon!", '25506BBB290573A0BCB4') elif event == 'Themes': search_string = popup_get_text('Enter a search term or leave blank for all themes', 'Show Available Themes', keep_on_top=True) diff --git a/docs/call reference.md b/docs/call reference.md index 9e1ba7d3..d8cc7d8c 100644 --- a/docs/call reference.md +++ b/docs/call reference.md @@ -5616,6 +5616,7 @@ Multiline(default_text = "", auto_size_text = None, background_color = None, text_color = None, + horizontal_scroll = False, change_submits = False, enable_events = False, do_not_clear = True, @@ -5656,6 +5657,7 @@ Parameter Descriptions: | bool | auto_size_text | if True will size the element to match the length of the text | | str | background_color | color of background | | str | text_color | color of the text | +| bool | horizontal_scroll | Controls if a horizontal scrollbar should be shown. If True a horizontal scrollbar will be shown in addition to vertical | | bool | change_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead | | bool | enable_events | Turns on the element specific events. Spin events happen when an item changes | | bool | do_not_clear | if False the element will be cleared any time the Window.Read call returns | @@ -5673,7 +5675,7 @@ Parameter Descriptions: | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) or int | p | Same as pad parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, pad will be used | | str | tooltip | text, that will appear when mouse hovers over the element | | str | justification | text justification. left, right, center. Can use single characters l, r, c. | -| bool | no_scrollbar | If False then a scrollbar will be shown (the default) | +| bool | no_scrollbar | If False then a vertical scrollbar will be shown (the default) | | bool | expand_x | If True the element will automatically expand in the X direction to fill available space | | bool | expand_y | If True the element will automatically expand in the Y direction to fill available space | | bool | rstrip | If True the value returned in will have whitespace stripped from the right side | diff --git a/docs/cookbook.md b/docs/cookbook.md index d16e133a..f1397c1e 100644 --- a/docs/cookbook.md +++ b/docs/cookbook.md @@ -25,9 +25,9 @@ apply coupon for discount: - 5C14671AABA040B06FDC + 25506BBB290573A0BCB4 - diff --git a/docs/index.md b/docs/index.md index 49c01ece..a69355db 100644 --- a/docs/index.md +++ b/docs/index.md @@ -25,9 +25,9 @@ apply coupon for discount: - 5C14671AABA040B06FDC + 25506BBB290573A0BCB4 - diff --git a/docs/readme.md b/docs/readme.md index 7ff593aa..a029165a 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -9,8 +9,8 @@ PySimpleGUI Udemy Course -
apply coupon for discount:
5C14671AABA040B06FDC
- click here to visit course page +
apply coupon for discount:
25506BBB290573A0BCB4
+ click here to visit course page diff --git a/docs/screenshots_demos.md b/docs/screenshots_demos.md index cedbd4ce..271ddee1 100644 --- a/docs/screenshots_demos.md +++ b/docs/screenshots_demos.md @@ -1,219 +1,219 @@ -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_All_Widgets.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_All_Widgets.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Animated_GIFs.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Animated_GIFs.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Bar_Chart.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Bar_Chart.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Base64_Image_Encoder.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Base64_Image_Encoder.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Base64_Single_Image_Encoder.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Base64_Single_Image_Encoder.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Borderless_Window.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Borderless_Window.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Buttons_Base64_Shaded.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Buttons_Base64_Shaded.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Buttons_Base64_Simple.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Buttons_Base64_Simple.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Buttons_Base64_User_Settings.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Buttons_Base64_User_Settings.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Buttons_Mac.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Buttons_Mac.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Buttons_Nice_Graphics.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Buttons_Nice_Graphics.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Button_Click.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Button_Click.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Button_Events_From_Browse.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Button_Events_From_Browse.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Button_Func_Calls.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Button_Func_Calls.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Button_States.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Button_States.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Button_Toggle.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Button_Toggle.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Calendar.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Calendar.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Canvas.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Canvas.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Change_Submits_InputText.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Change_Submits_InputText.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Chat.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Chat.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Chatterbot.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Chatterbot.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Chatterbot_With_TTS.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Chatterbot_With_TTS.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Chat_With_History.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Chat_With_History.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Color.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Color.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Color_Chooser_Custom.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Color_Chooser_Custom.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Color_Names.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Color_Names.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Color_Names_Smaller_List.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Color_Names_Smaller_List.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Color_Swatches.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Color_Swatches.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Columns.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Columns.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Column_And_Frames.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Column_And_Frames.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Column_Collapsible_Sections.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Column_Collapsible_Sections.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Column_Elem_Swap_Entire_Window.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Column_Elem_Swap_Entire_Window.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Compact_Layouts_Element_Renaming.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Compact_Layouts_Element_Renaming.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Compare_Files.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Compare_Files.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Control_Panel_Button_Grid.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Control_Panel_Button_Grid.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Conways_Game_of_Life.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Conways_Game_of_Life.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Crossword_Puzzle.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Crossword_Puzzle.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Cursor_Changed_To_Hand.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Cursor_Changed_To_Hand.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Dashboard.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Dashboard.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Date_Chooser.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Date_Chooser.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Debugger_Built_Into_PSG.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Debugger_Built_Into_PSG.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Debugger_ImWatchingYou.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Debugger_ImWatchingYou.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Patterns.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Design_Patterns.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Design_Pattern_Multiple_Windows.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows1.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Design_Pattern_Multiple_Windows1.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows2.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Design_Pattern_Multiple_Windows2.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows3.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Design_Pattern_Multiple_Windows3.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows_Both_Visible.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Design_Pattern_Multiple_Windows_Both_Visible.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows_OLD METHOD.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Design_Pattern_Multiple_Windows_OLD METHOD.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Persistent_Window.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Design_Pattern_Persistent_Window.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Save_Theme.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Design_Pattern_Save_Theme.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Floating_Toolbar.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Floating_Toolbar.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Dashboard.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_CPU_Dashboard.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Gauge.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_CPU_Gauge.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Graph.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_CPU_Graph.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Grid_Of_Gauges.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_CPU_Grid_Of_Gauges.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Square.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_CPU_Square.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Top_Processes.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_CPU_Top_Processes.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Utilization_Simple.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_CPU_Utilization_Simple.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_Drive_Usage.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_Drive_Usage.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_Email_Notification.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_Email_Notification.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_psutil_Dashboard.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_psutil_Dashboard.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_RAM_Gauge.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_RAM_Gauge.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_RAM_Square.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_RAM_Square.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_RAM_Used.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_RAM_Used.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_Timer.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_Timer.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_Weather.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Desktop_Widget_Weather.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Disable_Elements.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Disable_Elements.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_DuplicateFileFinder.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_DuplicateFileFinder.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Email_Send.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Email_Send.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Event_Binding.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Event_Binding.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Event_Callback_Simulation.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Event_Callback_Simulation.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_EXE_Maker.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_EXE_Maker.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Fill_Form.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Fill_Form.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Floating_Toolbar.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Floating_Toolbar.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Font_Previewer.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Font_Previewer.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Font_Sizer.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Font_Sizer.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Font_String.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Font_String.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Game_Frontend_Battleship.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Game_Frontend_Battleship.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Game_Frontend_Battleship_No_List_Comprehensions.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Game_Frontend_Battleship_No_List_Comprehensions.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Game_Frontend_Battleship_Single_List_Comprehension.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Game_Frontend_Battleship_Single_List_Comprehension.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_GitHub_File_Copier.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_GitHub_File_Copier.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_GoodColors.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_GoodColors.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_GoodColors_2.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_GoodColors_2.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Google_TTS.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Google_TTS.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Ball_Game.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_Ball_Game.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Drawing.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_Drawing.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Drawing_And_Dragging_Figures.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_Drawing_And_Dragging_Figures.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Drawing_And_Dragging_Figures_2_Windows.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_Drawing_And_Dragging_Figures_2_Windows.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Element.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_Element.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Element_Sine_Wave.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_Element_Sine_Wave.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Elem_Image_Album.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_Elem_Image_Album.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_FourierTransform.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_FourierTransform.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Noise.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_Noise.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_pymunk_2D_Graphics.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_pymunk_2D_Graphics.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_pymunk_Desktop_Balls.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Graph_pymunk_Desktop_Balls.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Hello_World.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Hello_World.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_HowDoI.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_HowDoI.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Image_Elem_Image_Viewer_PIL_Based.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Image_Elem_Image_Viewer_PIL_Based.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Image_Elem_Splash_Screen.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Image_Elem_Splash_Screen.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Img_Viewer.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Img_Viewer.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Input_Auto_Complete.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Input_Auto_Complete.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Input_Validation.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Input_Validation.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Invisible_Elements.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Invisible_Elements.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Invisible_Elements_Pinning.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Invisible_Elements_Pinning.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_IP_Address_Entry.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_IP_Address_Entry.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Keyboard.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Keyboard.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Keyboard_ENTER_Presses_Button.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Keyboard_ENTER_Presses_Button.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Keyboard_Realtime.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Keyboard_Realtime.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Keypad.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Keypad.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Layout_Extend.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Layout_Extend.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Layout_Generation.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Layout_Generation.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Layout_Vertical.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Layout_Vertical.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Layout_Vertical_Centered.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Layout_Vertical_Centered.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_LED_Clock_Weather.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_LED_Clock_Weather.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_LED_Indicators.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_LED_Indicators.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_LED_Indicators_Text_Based.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_LED_Indicators_Text_Based.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Listbox_Search_Filter.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Listbox_Search_Filter.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Look_And_Feel_Theme_Browser.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Look_And_Feel_Theme_Browser.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Look_And_Feel_Theme_Dump.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Look_And_Feel_Theme_Dump.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Machine_Learning.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Machine_Learning.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Main_Control_Test_Panel.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Main_Control_Test_Panel.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Animated.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib_Animated.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Animated_Scatter.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib_Animated_Scatter.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Browser.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib_Browser.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Browser_Paned.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib_Browser_Paned.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Embedded_TEMPLATE.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib_Embedded_TEMPLATE.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Embedded_Toolbar.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib_Embedded_Toolbar.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Grid_of_Graphs_Using_PIL.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib_Grid_of_Graphs_Using_PIL.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_PyLab.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib_PyLab.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Styles.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib_Styles.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Two_Windows.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Matplotlib_Two_Windows.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Media_Player.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Media_Player.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Media_Player_VLC_Based.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Media_Player_VLC_Based.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Menus.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Menus.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Menu_With_Toolbar.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Menu_With_Toolbar.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multiline_cprint_Printing.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multiline_cprint_Printing.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multiline_Multicolored_Text.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multiline_Multicolored_Text.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multiple_Windows_Experimental.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multiple_Windows_Experimental.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Animated_Shell_Command.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multithreaded_Animated_Shell_Command.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Different_Threads.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multithreaded_Different_Threads.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Logging.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multithreaded_Logging.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Long_Shell_Operation_Animated.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multithreaded_Long_Shell_Operation_Animated.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Long_Tasks.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multithreaded_Long_Tasks.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Long_Task_Simple.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multithreaded_Long_Task_Simple.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Multiple_Threads.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multithreaded_Multiple_Threads.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Write_Event_Value.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multithreaded_Write_Event_Value.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Write_Event_Value_MultiWindow.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Multithreaded_Write_Event_Value_MultiWindow.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Nice_Buttons.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Nice_Buttons.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_NonBlocking_Form.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_NonBlocking_Form.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Notification_Window_Alpha_Channel.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Notification_Window_Alpha_Channel.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Notification_Window_Fade_In_Out.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Notification_Window_Fade_In_Out.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_OpenCV.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_OpenCV.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_OpenCV_Webcam.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_OpenCV_Webcam.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Paned_Window.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Paned_Window.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Password_Login.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Password_Login.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Ping_Line_Graph.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Ping_Line_Graph.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pi_LEDs.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Pi_LEDs.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pi_Robotics.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Pi_Robotics.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_PNG_Thumbnail_Viewer.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_PNG_Thumbnail_Viewer.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_PNG_Viewer.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_PNG_Viewer.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pong.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Pong.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pong_Multiple_Platforms.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Pong_Multiple_Platforms.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Popups.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Popups.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Popup_Custom.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Popup_Custom.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Progress_Meters.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Progress_Meters.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_psutil_Kill_Processes.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_psutil_Kill_Processes.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_psutil_Kill_Python_Processes.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_psutil_Kill_Python_Processes.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_PyCharm_Launcher.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_PyCharm_Launcher.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_PyCharm_Self_Edit.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_PyCharm_Self_Edit.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pyplot_Bar_Chart.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Pyplot_Bar_Chart.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pyplot_Bar_Chart2.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Pyplot_Bar_Chart2.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Radio_Buttons_Simulated.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Radio_Buttons_Simulated.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Reddit_Search.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Reddit_Search.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Save_Window_As_Image.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Save_Window_As_Image.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Script_Launcher_ANSI_Color_Output.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Script_Launcher_ANSI_Color_Output.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Script_Launcher_Realtime_Output.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Script_Launcher_Realtime_Output.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Script_Parameters.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Script_Parameters.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Separator_Elements.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Separator_Elements.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Settings_Save_Load.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Settings_Save_Load.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Sort_Visualizer.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Sort_Visualizer.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Spinner_Compound_Element.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Spinner_Compound_Element.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Status_Bar.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Status_Bar.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Stdout.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Stdout.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Sudoku.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Sudoku.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Super_Simple_Form.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Super_Simple_Form.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_System_Tray_GUI_Window_Design_Pattern.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_System_Tray_GUI_Window_Design_Pattern.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_System_Tray_Icon.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_System_Tray_Icon.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_System_Tray_Reminder.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_System_Tray_Reminder.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Table_Element.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Table_Element.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Table_Simulation.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Table_Simulation.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Table_Simulation_Arrow_Keys.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Table_Simulation_Arrow_Keys.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Tabs.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Tabs.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Tabs_Nested.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Tabs_Nested.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Tabs_Simple.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Tabs_Simple.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Theme_Browser.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Theme_Browser.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Theme_Color_Swatches.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Theme_Color_Swatches.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Theme_Previewer_Dark.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Theme_Previewer_Dark.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Timer.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Timer.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Titlebar_Custom_Async.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Titlebar_Custom_Async.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Titlebar_Custom_Dark_Theme.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Titlebar_Custom_Dark_Theme.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Titlebar_Custom_Multiple_Combinations.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Titlebar_Custom_Multiple_Combinations.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Touch_Keyboard.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Touch_Keyboard.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Tree_Element.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Tree_Element.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Turtle.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Turtle.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Unicode_Characters.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Unicode_Characters.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Uno_Card_Game.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Uno_Card_Game.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_User_Settings.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_User_Settings.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_User_Settings_Browse_File_Folder.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_User_Settings_Browse_File_Folder.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_User_Settings_Class_Remember_Input_and_Combo.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_User_Settings_Class_Remember_Input_and_Combo.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_User_Settings_Remember_Input_and_Combo.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_User_Settings_Remember_Input_and_Combo.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Window_Background_Image.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Window_Background_Image.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Window_Disappear.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Window_Disappear.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Window_Open_Multiple_Times.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Window_Open_Multiple_Times.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Youtube-dl_Frontend.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_Youtube-dl_Frontend.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_YouTube_Intro.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/Demo_YouTube_Intro.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/ping.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/ping.png) -![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/READM.py](https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_demo_screenshots/READM.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_All_Widgets.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_All_Widgets.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Animated_GIFs.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Animated_GIFs.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Bar_Chart.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Bar_Chart.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Base64_Image_Encoder.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Base64_Image_Encoder.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Base64_Single_Image_Encoder.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Base64_Single_Image_Encoder.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Borderless_Window.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Borderless_Window.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Buttons_Base64_Shaded.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Buttons_Base64_Shaded.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Buttons_Base64_Simple.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Buttons_Base64_Simple.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Buttons_Base64_User_Settings.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Buttons_Base64_User_Settings.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Buttons_Mac.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Buttons_Mac.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Buttons_Nice_Graphics.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Buttons_Nice_Graphics.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Button_Click.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Button_Click.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Button_Events_From_Browse.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Button_Events_From_Browse.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Button_Func_Calls.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Button_Func_Calls.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Button_States.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Button_States.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Button_Toggle.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Button_Toggle.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Calendar.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Calendar.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Canvas.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Canvas.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Change_Submits_InputText.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Change_Submits_InputText.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Chat.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Chat.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Chatterbot.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Chatterbot.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Chatterbot_With_TTS.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Chatterbot_With_TTS.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Chat_With_History.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Chat_With_History.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Color.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Color.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Color_Chooser_Custom.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Color_Chooser_Custom.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Color_Names.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Color_Names.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Color_Names_Smaller_List.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Color_Names_Smaller_List.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Color_Swatches.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Color_Swatches.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Columns.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Columns.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Column_And_Frames.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Column_And_Frames.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Column_Collapsible_Sections.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Column_Collapsible_Sections.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Column_Elem_Swap_Entire_Window.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Column_Elem_Swap_Entire_Window.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Compact_Layouts_Element_Renaming.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Compact_Layouts_Element_Renaming.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Compare_Files.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Compare_Files.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Control_Panel_Button_Grid.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Control_Panel_Button_Grid.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Conways_Game_of_Life.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Conways_Game_of_Life.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Crossword_Puzzle.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Crossword_Puzzle.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Cursor_Changed_To_Hand.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Cursor_Changed_To_Hand.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Dashboard.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Dashboard.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Date_Chooser.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Date_Chooser.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Debugger_Built_Into_PSG.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Debugger_Built_Into_PSG.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Debugger_ImWatchingYou.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Debugger_ImWatchingYou.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Patterns.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Design_Patterns.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Design_Pattern_Multiple_Windows.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows1.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Design_Pattern_Multiple_Windows1.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows2.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Design_Pattern_Multiple_Windows2.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows3.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Design_Pattern_Multiple_Windows3.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows_Both_Visible.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Design_Pattern_Multiple_Windows_Both_Visible.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Multiple_Windows_OLD METHOD.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Design_Pattern_Multiple_Windows_OLD METHOD.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Persistent_Window.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Design_Pattern_Persistent_Window.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Design_Pattern_Save_Theme.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Design_Pattern_Save_Theme.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Floating_Toolbar.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Floating_Toolbar.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Dashboard.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_CPU_Dashboard.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Gauge.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_CPU_Gauge.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Graph.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_CPU_Graph.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Grid_Of_Gauges.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_CPU_Grid_Of_Gauges.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Square.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_CPU_Square.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Top_Processes.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_CPU_Top_Processes.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_CPU_Utilization_Simple.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_CPU_Utilization_Simple.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_Drive_Usage.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_Drive_Usage.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_Email_Notification.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_Email_Notification.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_psutil_Dashboard.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_psutil_Dashboard.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_RAM_Gauge.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_RAM_Gauge.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_RAM_Square.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_RAM_Square.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_RAM_Used.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_RAM_Used.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_Timer.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_Timer.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Desktop_Widget_Weather.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Desktop_Widget_Weather.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Disable_Elements.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Disable_Elements.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_DuplicateFileFinder.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_DuplicateFileFinder.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Email_Send.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Email_Send.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Event_Binding.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Event_Binding.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Event_Callback_Simulation.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Event_Callback_Simulation.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_EXE_Maker.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_EXE_Maker.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Fill_Form.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Fill_Form.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Floating_Toolbar.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Floating_Toolbar.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Font_Previewer.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Font_Previewer.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Font_Sizer.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Font_Sizer.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Font_String.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Font_String.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Game_Frontend_Battleship.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Game_Frontend_Battleship.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Game_Frontend_Battleship_No_List_Comprehensions.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Game_Frontend_Battleship_No_List_Comprehensions.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Game_Frontend_Battleship_Single_List_Comprehension.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Game_Frontend_Battleship_Single_List_Comprehension.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_GitHub_File_Copier.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_GitHub_File_Copier.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_GoodColors.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_GoodColors.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_GoodColors_2.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_GoodColors_2.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Google_TTS.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Google_TTS.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Ball_Game.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_Ball_Game.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Drawing.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_Drawing.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Drawing_And_Dragging_Figures.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_Drawing_And_Dragging_Figures.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Drawing_And_Dragging_Figures_2_Windows.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_Drawing_And_Dragging_Figures_2_Windows.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Element.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_Element.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Element_Sine_Wave.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_Element_Sine_Wave.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Elem_Image_Album.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_Elem_Image_Album.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_FourierTransform.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_FourierTransform.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_Noise.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_Noise.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_pymunk_2D_Graphics.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_pymunk_2D_Graphics.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Graph_pymunk_Desktop_Balls.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Graph_pymunk_Desktop_Balls.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Hello_World.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Hello_World.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_HowDoI.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_HowDoI.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Image_Elem_Image_Viewer_PIL_Based.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Image_Elem_Image_Viewer_PIL_Based.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Image_Elem_Splash_Screen.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Image_Elem_Splash_Screen.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Img_Viewer.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Img_Viewer.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Input_Auto_Complete.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Input_Auto_Complete.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Input_Validation.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Input_Validation.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Invisible_Elements.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Invisible_Elements.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Invisible_Elements_Pinning.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Invisible_Elements_Pinning.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_IP_Address_Entry.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_IP_Address_Entry.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Keyboard.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Keyboard.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Keyboard_ENTER_Presses_Button.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Keyboard_ENTER_Presses_Button.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Keyboard_Realtime.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Keyboard_Realtime.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Keypad.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Keypad.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Layout_Extend.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Layout_Extend.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Layout_Generation.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Layout_Generation.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Layout_Vertical.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Layout_Vertical.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Layout_Vertical_Centered.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Layout_Vertical_Centered.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_LED_Clock_Weather.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_LED_Clock_Weather.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_LED_Indicators.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_LED_Indicators.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_LED_Indicators_Text_Based.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_LED_Indicators_Text_Based.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Listbox_Search_Filter.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Listbox_Search_Filter.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Look_And_Feel_Theme_Browser.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Look_And_Feel_Theme_Browser.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Look_And_Feel_Theme_Dump.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Look_And_Feel_Theme_Dump.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Machine_Learning.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Machine_Learning.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Main_Control_Test_Panel.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Main_Control_Test_Panel.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Animated.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib_Animated.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Animated_Scatter.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib_Animated_Scatter.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Browser.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib_Browser.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Browser_Paned.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib_Browser_Paned.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Embedded_TEMPLATE.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib_Embedded_TEMPLATE.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Embedded_Toolbar.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib_Embedded_Toolbar.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Grid_of_Graphs_Using_PIL.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib_Grid_of_Graphs_Using_PIL.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_PyLab.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib_PyLab.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Styles.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib_Styles.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Matplotlib_Two_Windows.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Matplotlib_Two_Windows.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Media_Player.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Media_Player.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Media_Player_VLC_Based.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Media_Player_VLC_Based.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Menus.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Menus.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Menu_With_Toolbar.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Menu_With_Toolbar.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multiline_cprint_Printing.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multiline_cprint_Printing.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multiline_Multicolored_Text.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multiline_Multicolored_Text.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multiple_Windows_Experimental.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multiple_Windows_Experimental.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Animated_Shell_Command.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multithreaded_Animated_Shell_Command.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Different_Threads.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multithreaded_Different_Threads.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Logging.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multithreaded_Logging.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Long_Shell_Operation_Animated.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multithreaded_Long_Shell_Operation_Animated.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Long_Tasks.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multithreaded_Long_Tasks.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Long_Task_Simple.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multithreaded_Long_Task_Simple.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Multiple_Threads.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multithreaded_Multiple_Threads.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Write_Event_Value.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multithreaded_Write_Event_Value.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Multithreaded_Write_Event_Value_MultiWindow.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Multithreaded_Write_Event_Value_MultiWindow.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Nice_Buttons.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Nice_Buttons.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_NonBlocking_Form.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_NonBlocking_Form.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Notification_Window_Alpha_Channel.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Notification_Window_Alpha_Channel.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Notification_Window_Fade_In_Out.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Notification_Window_Fade_In_Out.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_OpenCV.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_OpenCV.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_OpenCV_Webcam.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_OpenCV_Webcam.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Paned_Window.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Paned_Window.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Password_Login.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Password_Login.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Ping_Line_Graph.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Ping_Line_Graph.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pi_LEDs.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Pi_LEDs.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pi_Robotics.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Pi_Robotics.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_PNG_Thumbnail_Viewer.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_PNG_Thumbnail_Viewer.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_PNG_Viewer.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_PNG_Viewer.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pong.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Pong.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pong_Multiple_Platforms.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Pong_Multiple_Platforms.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Popups.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Popups.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Popup_Custom.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Popup_Custom.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Progress_Meters.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Progress_Meters.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_psutil_Kill_Processes.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_psutil_Kill_Processes.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_psutil_Kill_Python_Processes.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_psutil_Kill_Python_Processes.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_PyCharm_Launcher.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_PyCharm_Launcher.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_PyCharm_Self_Edit.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_PyCharm_Self_Edit.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pyplot_Bar_Chart.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Pyplot_Bar_Chart.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Pyplot_Bar_Chart2.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Pyplot_Bar_Chart2.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Radio_Buttons_Simulated.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Radio_Buttons_Simulated.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Reddit_Search.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Reddit_Search.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Save_Window_As_Image.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Save_Window_As_Image.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Script_Launcher_ANSI_Color_Output.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Script_Launcher_ANSI_Color_Output.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Script_Launcher_Realtime_Output.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Script_Launcher_Realtime_Output.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Script_Parameters.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Script_Parameters.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Separator_Elements.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Separator_Elements.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Settings_Save_Load.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Settings_Save_Load.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Sort_Visualizer.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Sort_Visualizer.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Spinner_Compound_Element.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Spinner_Compound_Element.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Status_Bar.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Status_Bar.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Stdout.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Stdout.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Sudoku.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Sudoku.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Super_Simple_Form.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Super_Simple_Form.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_System_Tray_GUI_Window_Design_Pattern.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_System_Tray_GUI_Window_Design_Pattern.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_System_Tray_Icon.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_System_Tray_Icon.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_System_Tray_Reminder.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_System_Tray_Reminder.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Table_Element.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Table_Element.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Table_Simulation.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Table_Simulation.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Table_Simulation_Arrow_Keys.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Table_Simulation_Arrow_Keys.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Tabs.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Tabs.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Tabs_Nested.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Tabs_Nested.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Tabs_Simple.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Tabs_Simple.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Theme_Browser.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Theme_Browser.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Theme_Color_Swatches.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Theme_Color_Swatches.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Theme_Previewer_Dark.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Theme_Previewer_Dark.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Timer.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Timer.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Titlebar_Custom_Async.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Titlebar_Custom_Async.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Titlebar_Custom_Dark_Theme.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Titlebar_Custom_Dark_Theme.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Titlebar_Custom_Multiple_Combinations.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Titlebar_Custom_Multiple_Combinations.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Touch_Keyboard.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Touch_Keyboard.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Tree_Element.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Tree_Element.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Turtle.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Turtle.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Unicode_Characters.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Unicode_Characters.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Uno_Card_Game.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Uno_Card_Game.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_User_Settings.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_User_Settings.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_User_Settings_Browse_File_Folder.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_User_Settings_Browse_File_Folder.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_User_Settings_Class_Remember_Input_and_Combo.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_User_Settings_Class_Remember_Input_and_Combo.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_User_Settings_Remember_Input_and_Combo.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_User_Settings_Remember_Input_and_Combo.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Window_Background_Image.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Window_Background_Image.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Window_Disappear.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Window_Disappear.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Window_Open_Multiple_Times.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Window_Open_Multiple_Times.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_Youtube-dl_Frontend.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_Youtube-dl_Frontend.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/Demo_YouTube_Intro.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/Demo_YouTube_Intro.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/ping.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/ping.png) +![https://github.com/PySimpleGUI/PySimpleGUI/blob/master/DemoPrograms/READM.py](https://raw.githubusercontent.com/Chr0nicT/PySimpleGUI/master/DemoPrograms/Markdown_Project/READM.png) diff --git a/readme.md b/readme.md index 7ff593aa..a029165a 100644 --- a/readme.md +++ b/readme.md @@ -9,8 +9,8 @@ PySimpleGUI Udemy Course -
apply coupon for discount:
5C14671AABA040B06FDC
- click here to visit course page +
apply coupon for discount:
25506BBB290573A0BCB4
+ click here to visit course page diff --git a/readme_creator/markdown input files/1_HEADER_top_part.md b/readme_creator/markdown input files/1_HEADER_top_part.md index 032b449b..d586f75c 100644 --- a/readme_creator/markdown input files/1_HEADER_top_part.md +++ b/readme_creator/markdown input files/1_HEADER_top_part.md @@ -52,9 +52,9 @@ HOW DO I INSERT IMAGES ??? apply coupon for discount: - 5C14671AABA040B06FDC + 25506BBB290573A0BCB4 - diff --git a/readme_creator/output/call reference.md b/readme_creator/output/call reference.md index 9e1ba7d3..d8cc7d8c 100644 --- a/readme_creator/output/call reference.md +++ b/readme_creator/output/call reference.md @@ -5616,6 +5616,7 @@ Multiline(default_text = "", auto_size_text = None, background_color = None, text_color = None, + horizontal_scroll = False, change_submits = False, enable_events = False, do_not_clear = True, @@ -5656,6 +5657,7 @@ Parameter Descriptions: | bool | auto_size_text | if True will size the element to match the length of the text | | str | background_color | color of background | | str | text_color | color of the text | +| bool | horizontal_scroll | Controls if a horizontal scrollbar should be shown. If True a horizontal scrollbar will be shown in addition to vertical | | bool | change_submits | DO NOT USE. Only listed for backwards compat - Use enable_events instead | | bool | enable_events | Turns on the element specific events. Spin events happen when an item changes | | bool | do_not_clear | if False the element will be cleared any time the Window.Read call returns | @@ -5673,7 +5675,7 @@ Parameter Descriptions: | (int, int or (int, int),(int,int) or int,(int,int)) or ((int, int),int) or int | p | Same as pad parameter. It's an alias. If EITHER of them are set, then the one that's set will be used. If BOTH are set, pad will be used | | str | tooltip | text, that will appear when mouse hovers over the element | | str | justification | text justification. left, right, center. Can use single characters l, r, c. | -| bool | no_scrollbar | If False then a scrollbar will be shown (the default) | +| bool | no_scrollbar | If False then a vertical scrollbar will be shown (the default) | | bool | expand_x | If True the element will automatically expand in the X direction to fill available space | | bool | expand_y | If True the element will automatically expand in the Y direction to fill available space | | bool | rstrip | If True the value returned in will have whitespace stripped from the right side | diff --git a/readme_creator/output/index.md b/readme_creator/output/index.md index 49c01ece..a69355db 100644 --- a/readme_creator/output/index.md +++ b/readme_creator/output/index.md @@ -25,9 +25,9 @@ apply coupon for discount: - 5C14671AABA040B06FDC + 25506BBB290573A0BCB4 -