Sinisterly
Add GUI to your Python code - Guizero - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: Python (https://sinister.ly/Forum-Python)
+--- Thread: Add GUI to your Python code - Guizero (/Thread-Add-GUI-to-your-Python-code-Guizero)



Add GUI to your Python code - Guizero - Troubilshow - 09-04-2022

If you are scripting in Python, but still haven't taken the step of user interfaces, here is an easy way to do it.

Based on the famous Tkinter lib that allows to make GUIs, the Guizero lib allows beginners to easily design their graphical interfaces in Python.

Once installed with :

pip3 install guizero

It is then quite simple to design your GUI by integrating all the necessary widgets. It goes from the check button to the list, including the image import or the input field.

Go and have a look at the documentation. You'll see that it's super easy and it will allow your users to have easier interactions with your command line tools, without spending too much time on it.

To see here : https://lawsie.github.io/guizero/


RE: Add GUI to your Python code - Guizero - asfdw - 12-10-2022

isnt this similar to pygautoui? or no


RE: Add GUI to your Python code - Guizero - macomaco - 04-27-2024

this is awesome! really cool.


RE: Add GUI to your Python code - Guizero - _halalbojo - 05-18-2024

GUIs are clutch. I still havent delved in building many but it is sooooo ideal to make one for your tools. Thank you for this information for myself n others, that are on the Python journey!


RE: Add GUI to your Python code - Guizero - Bubu2001 - 06-20-2024

Thank you for your sharing.


RE: Add GUI to your Python code - Guizero - adambaylin21 - 07-13-2024

This is the first time I see it.
Is it Better than tkinter ?