Python UI builder | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Python UI builder

If you've ever used Blend for Visual Studio, you would know how easy it is to build UI(disclaimer: i don't know if it works with other languages other than c#) Is there such thing for python or do i manually have to create each button and put it in place by changing some code? If there is, does it work with any IDE or is it itself a IDE? I don't really want to change my IDE just for UI building.

25th Jul 2018, 12:46 PM
Timothy Joseph
Timothy Joseph - avatar
3 Answers
+ 11
For Python3's Tkinter module, you use import tkinter and/or from tkinter import * For Python2's Tkinter module, you use import Tkinter and/or from Tkinter import *
18th Aug 2018, 5:07 AM
Fox
Fox - avatar
+ 2
in python use import tkinter for ui
25th Jul 2018, 4:44 PM
🅿️®️⭕️_e✖️e
🅿️®️⭕️_e✖️e - avatar
0
i found this, it's used to more easily generate tkinter code for ui building. http://page.sourceforge.net/ I also found PyQt5, it acts kind of like PAGE. i don't really know if ui building is that important at the stage that i am at, i think i should firstly learn the basics before jumping into ui building
31st Jul 2018, 9:31 AM
Timothy Joseph
Timothy Joseph - avatar