Metadata-Version: 2.1 Name: PySimpleGUI Version: 5.0.3 Summary: Python GUIs for Humans! PySimpleGUI is the top-rated Python application development environment. Launched in 2018 and actively developed, maintained, and supported in 2024. Transforms tkinter, Qt, WxPython, and Remi into a simple, intuitive, and fun experience for both hobbyists and expert users. Home-page: https://www.PySimpleGUI.com Author: PySimpleSoft Inc. Author-email: License: Proprietary Keywords: GUI UI tkinter Qt WxPython Remi wrapper simple easy beginner novice student graphics Classifier: Intended Audience :: Developers Classifier: License :: Other/Proprietary License Classifier: Operating System :: OS Independent Classifier: Framework :: PySimpleGUI Classifier: Framework :: PySimpleGUI :: 5 Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: 3.11 Classifier: Programming Language :: Python :: 3.12 Classifier: Programming Language :: Python :: 3.13 Classifier: Topic :: Multimedia :: Graphics Requires-Python: >=3.6 Description-Content-Type: text/markdown License-File: LICENSE.txt Requires-Dist: rsa
For more information visit PySimpleGUI.com
[Subscribe Now](https://pricing.PySimpleGUI.com) and help support the PySimpleGUI community. ## Examples PySmipleGUI users have created thousands of amazing desktop applications. Here are a few screen shots. For more examples, see the [PySimpleGUI gallery](https://gallery.PySimpleGUI.com/).
## Get Started at No Cost Whether you are a Hobbyist User or Commercial User, you can start using PySimpleGUI at no cost. To get started with a 30-day trial period, first install Python and then python -m pip install pysimplegui and run some code, like import PySimpleGUI as sg layout = [ [sg.Text('Hello, world!')] ] window = sg.Window('Hello Example', layout) while True: event, values = window.read() if event == sg.WIN_CLOSED: break window.close() (You might need to use `python3` instead of `python`.) You can try PySimpleGUI for 30 days, after which you will need to Sign Up. Hobbyist users sign up at no cost, and Commercial Users subscribe at $99/year. For more details, see [PySimpleGUI.com/pricing](https://pricing.PySimpleGUI.com). ## Documentation PySimpleGUI provides extensive documentation. Here are some starting points, depending on your needs and expertise: * [Documentation](https://docs.pysimplegui.com/) - Extensive PySimpleGUI documenation * [Cookbook](https://cookbook.pysimplegui.com/) - Step-by-step cookbook of PySimpleGUI basics. Find a recipe that is close to what you want to build and use it as a starting point. * [Examples](https://examples.pysimplegui.com/) - Hundreds of sample PySimpeGUI applications. * [SDK Reference](https://sdk.pysimplegui.com/) - details for each PySimpleGUI element