user1417933
user1417933

Reputation: 835

IDE for Tkinter

I'm searching for a decent IDE or form designer for Tkinter. So far, I have only come across Rapyd-Tk which I tried, but is very outdated and is quite buggy.

Unfortunately that's all I found, and other questions asking for this are also rather old, so is there any recent, working designers for Tkinter?

Upvotes: 1

Views: 4359

Answers (1)

pycoder112358
pycoder112358

Reputation: 875

Here's one.

http://page.sourceforge.net/ - website http://page.sourceforge.net/html/intro.html - documentation

Works on linux. Haven't tried working on any sort of project with it yet, I just made sure it worked before posting. Keep in mind that tkinter is sufficiently easy to use that you don't save much time with drag-and-drop. It would be almost easier to just write the code in the first place.

Works with python2.6 and 3.x. Requires ttk package in addition to tkinter (included with most python distributions, I know python2.6 or 3.x on windows does have it).

Upvotes: 3

Related Questions