About 460,000 results
Open links in new tab
  1. 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 …

  2. Convert pyQt UI to python - Stack Overflow

    Aug 25, 2013 · 58 Is there a way to convert a ui formed with qtDesigner to a python version to use without having an extra file? I'm using Maya for this UI, and converting this UI file to a readable …

  3. Python code to automate desktop activities in windows

    Jan 7, 2018 · I want to automate desktop activities in Windows environment using Python. How it can be done? Some examples will also be helpful. By desktop activities, I mean actions such …

  4. Create a directly-executable cross-platform GUI app using Python

    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 …

  5. python - How to convert a .ui file to .py file - Stack Overflow

    Mar 8, 2014 · In pyqt5 you can use: convert to none-executable python file : pyuic5 -o pyfilename.py design.ui convert to executable python file : pyuic5 -x -o pyfilename.py design.ui …

  6. Is it possible to style Python GUI like you would style HTML with …

    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 …

  7. Creating GUI with Python in Linux - Stack Overflow

    Jan 22, 2017 · I would avoid using another language to make a GUI for Python. I've had every good luck with wxwidgets, which is the python binding for WX, a cross-platform development …

  8. 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 …

  9. How do I create an input box with Python? - Stack Overflow

    Jan 1, 2014 · I want to create an on-screen input box that a user can interact with. The user would see a window with an input field they can click with the mouse. The user could type or erase …

  10. python - How to insert a ui.page_navbar () layout using ui.insert ...

    Sep 28, 2024 · I thought maybe the issue was that a ui.page_navbar object couldn't be placed inside a div (where I'm trying to insert it using ui.insert_ui), but in a separate test I was able to …