About 5,060,000 results
Open links in new tab
  1. ImportError: No module named PySimpleGUI - Stack Overflow

    Nov 16, 2021 · Next, open up PowerShell and do pip install PySimpleGUI If PySimpleGUI is already installed, usually PS will provide you with the absolute path of PySimpleGUI. Once you …

  2. Files or Folder Browse in PySimpleGUI - Stack Overflow

    Is there a way to either choose one file in a folder or multiple files in a folder or just a folder (and then process all the files inside it) with PySimpleGUI? So far I've made something like this:

  3. PySimpleGUI now closed-source : r/Python - Reddit

    Feb 13, 2024 · PySimpleGUI, a popular Python GUI library with 13k GitHub stars went closed source / commercial today. Previously it had been licensed under LGPL. I've got no issue with …

  4. PSA: PySimpleGUI has deleted [almost] all old LGPL versions

    Months ago, PySimpleGUI relicensed from LGPL3 to a proprietary license/subscription model with the release of version 5 and nuked the source code and history from GitHub. Up until recently, …

  5. PySimpleGUI: How to select an image from file browser and save …

    Sep 15, 2021 · Is there a simple way to select an image from the file browser, view it, and then move it to another folder using PySimpleGUI? I have the code for selecting an image but I …

  6. AttributeError: module 'PySimpleGUI' has no attribute 'Window'

    Apr 8, 2020 · That older version of PySimpleGUI isn't fully functional now, as it's missing things like Window, theme, etc. I installed the latest using pip. But, I have still been running test code …

  7. PySimpleGui: Displaying console output in GUI - Stack Overflow

    Nov 4, 2020 · The Demo Programs on the PySimpleGUI GitHub has several programs that show you exactly how to do this. Demo_Script_Launcher_Realtime_Output.py will launch a program …

  8. PySimpleGUI Table element. How to read a selected row?

    Jun 17, 2021 · The PySimpleGUI documentation has a section on support that begins by explaining that sites such as SO are not recommended. The recommendation is that these be …

  9. How do I change background color in pysimplegui? - Stack Overflow

    Sep 12, 2021 · How do I change background color in pysimplegui? Asked 4 years ago Modified 2 years, 10 months ago Viewed 19k times

  10. 7 lines of Python code to show your webcam in a GUI window

    import cv2, PySimpleGUI as sg window = sg.Window ('Demo Application - OpenCV Integration', [ [sg.Image (filename='', key='image')],], location= (800,400)) cap = cv2.VideoCapture (0) # …