Arger
Arger

Reputation: 170

Python GUI Toolkit for Text-Based Game?

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

Answers (3)

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 798706

You can give the game a little more flavor if you use Ren'Py rather than doing it all yourself.

Upvotes: 3

Suboptimus
Suboptimus

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

Jack_of_All_Trades
Jack_of_All_Trades

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

Related Questions