About 52 results
Open links in new tab
  1. Create a directly-executable cross-platform GUI app using Python

    318 First you will need some GUI library with Python bindings and then (if you want) some program that will convert your python scripts into standalone executables. Cross-platform GUI libraries with Python …

  2. How to create beautiful UI's with Python - Stack Overflow

    Mar 21, 2022 · I wonder if it's possible to create good looking desktop UI's with python? Could I use JS frameworks like Electron with python? Or are there any python libraries which provide modern …

  3. Is there any Visual Studio-like tool for creating GUIs for Python?

    Jul 12, 2013 · Python (x,y) includes an installation of Eclipse with PyDev and QT Designer integrated. If you configure PyUIC to run from Eclipse (see this brief HOWTO) then, once the GUI has been …

  4. Is it possible to style Python GUI like you would style HTML with CSS ...

    Dec 7, 2020 · Inside of python your options are quite less, but never none. You have options starting from ttk from tkinter, which uses your OS native widgets and with ttkthemes you can get more …

  5. python - Show matplotlib plots (and other GUI) in Ubuntu (WSL1

    Maybe this is better done through a Jupyter notebook or something, but it's nice to have basic command-line python matplotlib functionality in Ubuntu for Windows on Subsystem for Linux, and …

  6. Choosing a file in Python with simple Dialog - Stack Overflow

    Sep 12, 2017 · I would like to get file path as input in my Python console application. Currently I can only ask for full path as an input in the console. Is there a way to trigger a simple user interface where...

  7. How to create indicator lights (danger, warning, safe ) using python GUI

    Aug 3, 2020 · How to create indicator lights (danger, warning, safe ) using python GUI Asked 5 years, 6 months ago Modified 5 years, 6 months ago Viewed 12k times

  8. Should I Use Tkinter, C or C# to Make a GUI in Python?

    Aug 10, 2013 · You'd be right back where you started -- having to learn how to use some library. Instead, Python has several great GUI libraries that you can use. Tkinter is bundled by default within …

  9. How do I unit testing my GUI program with Python and PyQt?

    Jul 27, 2017 · I heard Unit Testing is a great method to keep code working correctly. The unit testing usually puts a simple input to a function, and check its simple output. But how do I test a UI? My …

  10. user interface - How to write GUI in Python? - Stack Overflow

    I would like to try to write a GUI application in Python. I found out that there are a lot of ways to do it (different toolkits). And, in this context, I have several basic (and I think simple) que...