Reputation: 170
Quick to learn is pretty important, but I need just some basic GUI tools, for Ubuntu OS but would be nice to have multi-OS compatibility. Any suggestions?
The basic dynamics of the intended game just include a text input and some set reaction
frames.
Thanks in advance.
Upvotes: 1
Views: 1908
Reputation: 798706
You can give the game a little more flavor if you use Ren'Py rather than doing it all yourself.
Upvotes: 3
Reputation: 309
Do you mean with text-based menus and graphics as well?
curses is included in the standard Python distribution.
http://en.wikipedia.org/wiki/Ncurses http://docs.python.org/library/curses.html
But perhaps that is too text-based?
Upvotes: 1
Reputation: 11468
For basic toolkit, I think tkinter which comes with python is okay. If you want to have graphical toolkit with more functionality, I would suggest you to take a look at wxpython which is cross-platform compatible.
Upvotes: 0